User Profile

Collapse

Profile Sidebar

Collapse
BarryA
BarryA
Last Activity: Apr 8 '24, 05:37 AM
Joined: Jun 28 '22
Location: Urbana, Illinios
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Navigating the Data Structures and Algorithms (DSA)

    What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress in their careers within the dynamic field of data science?
    See more | Go to post

  • Creating a CSV File in Python: Need Guidance and Code Example

    I'm relatively new to Python and I'm trying to create a CSV file from data within my program. I've read a bit about the csv module, but I'm not entirely sure about the best approach to create a CSV file and populate it with data. Could someone guide me through the process and provide a code example?

    Let's say I have a list of dictionaries containing data about products, like so:

    Code:
    products = [
        {"ProductID":
    ...
    See more | Go to post

  • Issue with Asynchronous Data Fetching in Full Stack JavaScript Application

    I'm facing an issue while developing a full-stack JavaScript application that involves asynchronous data fetching. I'm using technologies like Node.js for the backend and React for the front end. The problem arises when I try to fetch data from the backend API asynchronously and update the UI using React components. The data seems to be returning from the API correctly, but it's not rendering as expected in the React components. I have been trying...
    See more | Go to post

  • How Can I Optimize My Python Flask API for Better Performance?

    I'm presently working on a backend development project to build a RESTful API using Python and Flask. Although I've had assistance with this site (Illegal link removed), I've seen a drop in performance as the amount of API queries rises. Especially during times of high usage, the response times are slower than I would want them to be.

    Here's a simplified version of my Flask API code:
    Code:
    from flask import Flask, jsonify
    ...
    See more | Go to post
    Last edited by NeoPa; Aug 2 '23, 12:56 PM. Reason: Illegal link removed.

  • Help with Sentiment Analysis code is required - unexpected outcome!

    Hello everyone,

    I'm hoping you can help me with a difficulty I'm having with my Sentiment Analysis project. I've been attempting to apply a simple sentiment analysis model to a dataset of movie reviews, but I'm getting some surprising results. Here's the pertinent section of my code:
    Code:
    import pandas as pd
    from sklearn.model_selection import train_test_split
    from sklearn.feature_extraction.text import CountVectorizer
    ...
    See more | Go to post

  • BarryA
    started a topic ROLLBACK in SQL in a Spring Transaction

    ROLLBACK in SQL in a Spring Transaction

    I need to execute a SQL Server stored procedure from Java/Spring, and the SP has a try/catch block that logs errors to a table. The logging is required because the SP is also called manually or from a database task, however in my case, it creates an issue because the call from Spring is transactional (see https://stackoverflow.com/a/15984867/302151).

    Is a ROLLBACK in the catch block sufficient to address my problem, and if so, is it...
    See more | Go to post

  • BarryA
    started a topic Final Keyword In Java

    Final Keyword In Java

    Using a final keyword in the main method parameter solves the problem. Why is there no compiler error or exception since I modified Java's standard main method?

    Code:
    public class bytes {
    
        public static void main(final String... args) {
            System.out.println("Hi");
    
        }
    }
    Now let's see if I can code:

    Code:
    public class bytes {
    
        public
    ...
    See more | Go to post

  • BarryA
    started a topic Data Scientist salary

    Data Scientist salary

    Greetings everyone,

    I am writing to seek advice on behalf of my younger brother, who has recently received a job offer from Facebook as a Data scientist in the Austin location. While he is excited about the opportunity, he also has another option to choose India as his preferred location, and he is currently confused about which location would offer a higher salary.

    As a resident of India myself, I have a good understanding...
    See more | Go to post

  • BarryA
    started a topic Why is Java's String class designated final?
    in Java

    Why is Java's String class designated final?

    I was curious why the class java.lang.Strin g is defined as final in Java when I first learned about it. I couldn't find an answer back then, but check out this post: How to Create a Java String Class Replica. It reminded me of my question.

    Sure, String gives all the functionality I've ever required, and I've never considered any action that would necessitate an extension of class String, but you never know what someone could demand!...
    See more | Go to post

  • Adding many Python files and directories to a single dmg file

    How can I make a single dmg file out of many Python files in different folders? I know that's doable for a single file, but how can I do it for several?
    I can make a dmg for a 1.py file but not for numerous files in several directories.
    See more | Go to post

  • BarryA
    replied to Python string find() examples
    Hey, thanks for the clarification! It truly cleared my doubt. Also, I need assistance with some coding here. I intended to use a dictionary to construct the switch case pattern in Python, as this tutorial suggested, but here's the problem:
    Code:
      # Type can be either create or update or ..
      message = { 'create':msg(some_data),
                  'update':msg(other_data)
                  # can have more
                }
    ...
    See more | Go to post

    Leave a comment:


  • BarryA
    started a topic Python string find() examples

    Python string find() examples

    I'm looking for examples, but I'm not finding any.
    Are there any examples on the internet? I'd like to know what it returns when it can't find something, as well as how to specify the starting and ending points, which I assume will be 0, -1.
    Code:
    >>> x = "Hello World"
    >>> x.find('World')
    6
    >>> x.find('Aloha');
    -1
    Could you please help me? But I'm not convinced.
    See more | Go to post

  • When deployed to Heroku, python setup.py egg info did not run successfully.

    Hi everybody,
    I joined this group to learn more about web development. I am familiar with Java, C, and HTML, and am actively learning CSS and Python. And I'm facing some issues! Can somebody help me?

    After deploying and hosting my website, I upgraded my pip version. Then I installed the pypaystack package. When I try to push to Heroku, I get the error shown below. In the development stage, the project is running smoothly....
    See more | Go to post

  • BarryA
    started a topic What exactly is thrashing? Why does it happen?

    What exactly is thrashing? Why does it happen?

    Thrashing is linked to memory management in an operating system. What causes thrashing? How can we avoid it?

    I looked on Scaler topics and Wikipedia but I need more info regarding thrashing, Can someone help me out?
    See more | Go to post
    Last edited by BarryA; Jul 14 '22, 07:24 AM. Reason: Update

  • BarryA
    started a topic Web Api for Self-Hosting and Web-Hosting
    in APIs

    Web Api for Self-Hosting and Web-Hosting

    Is there a recommended practice for supporting self-hosting and web-hosting simultaneously?

    I had a lot of issues to work through. Because of HttpContext.Cur rent is not set and The GlobalConfigura tion is not accessible in self-hosting, autofac does not work properly.

    Are there any other issues to be aware of?
    See more | Go to post

  • BarryA
    replied to How Do I Compare Two Strings in C++?
    in C
    You can compare two C++ String using == operator
    See more | Go to post

    Leave a comment:


  • BarryA
    replied to Why Use Python?
    Thank you for this post! Like, It's very helpful and insightful for those who're new to python programming or want to learn it.
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...