Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by Risso

  1. R

    [SOLVED] Need Help with IoT Projects

    Hey, I am currently working on an IoT project and could use some help. I found a helpful resource on the blog that provides useful information on IoT projects ideas. Now, I want to take it a step further and add some code implementations to the projects discussed in the article. However, I'm...
  2. R

    Struggling with Data Analyst interview questions

    Hey, I'm currently preparing for a Data Analyst interview, and I stumbled upon this comprehensive collection of interview questions on Data Analyst. While the questions seem valuable for interview preparation, I'm encountering some difficulties and could use some assistance. I've been going...
  3. R

    Coding Error with statistics interview questions

    I'm having a problem with the code for statistics interview questions from here. I am getting an error when I try to run the code. The error message I'm seeing is: "SyntaxError: invalid syntax (line 5, col 4)" Here is a snippet of the code I'm running: def find_mean(arr): sum = 0 for...
  4. R

    How to Create an Online Webpage Based on Slots using HTML5?

    Step-by-Step Guide: 1. Research HTML5 libraries and frameworks that can be used to create an interactive and engaging webpage. 2. Create the basic structure of the page using HTML, CSS, and JavaScript. 3. Design the slot game using HTML5 canvas, SVG, and other technologies. 4. Create game...
  5. R

    60v power regulator for MCU required

    There are a few options for regulating a 60V supply. One option is to use a high voltage buck converter, such as the TI LM5160. This will allow you to adjust the output voltage to whatever you need it to be. You can also use a high voltage linear regulator, such as the Murata LDO-HV. This will...
  6. R

    [SOLVED] Automated testing Vs Manual testing

    Regarding testing, one may ask what the differences are between manual and automated testing methods. They include: What is the basic difference between the two types of testing? What are the elements of challenges involved in both manual and automated testing? What are the different skill...
  7. R

    SQL Hard Question Failing 1 case

    I am having difficulty passing all of the test cases when preparing for a data science interview. My code is only successful in some of the tests. Can someone help explain why my code doesn't work for this question. Here is the code: # total rides by unbanned users by day with total_rides as...
  8. R

    What does the term "batches" refer to in SAP MM?

    I was asked these questions but with a different pattern after searching through resources I got this answer. Hope it helps everyone! [ MODERATOR ACTION ] Removed external link
  9. R

    subprocess.call() in Python

    You can use the subprocess.PIPE to redirect the console output to your program. For example: process = subprocess.Popen(["ffmpeg", "-i", "test.mp4", "test.mp3"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) for line in iter(process.stdout.readline, b'')...

Part and Inventory Search

Back
Top