CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Nathan D

Search: Search took 0.03 seconds.

  1. Choosing the Right Programming Language for Cross-Platform Mobile App Development

    I'm planning to develop a mobile app that works on both iOS and Android platforms, and I'm wondering which programming language or framework would be the best choice for cross-platform development....
  2. HTML Form Validation: Ensuring Data Accuracy

    I'm working on a data science project where I have a dataset of customer transactions and I need to analyze customer purchase patterns using Python. The dataset includes the following columns:...
  3. JavaScript String Transformation: Converting Text to Uppercase

    I'm working on a JavaScript project where I need to manipulate text strings, and I came across the toUpperCase() method. While I understand its basic functionality of converting text to uppercase, I...
  4. Python List Comprehension Error: Unexpected Output

    I'm encountering an unexpected output while using list comprehension in Python. I'm trying to create a list of squared values for even numbers in a given range, but the result is not what I...
  5. Replies
    2
    Views
    2,910

    StringBuffer with a fixed length in Java

    Which is the best way to keep a stringbuffer length constant in Java? That is, if the fixed value is 10 and the stringbuffer contains ABCDEFGHIJ, appending K will clear A, resulting in BCDEFGHIJK....
  6. When polling in Java, use Thread.sleep or yield.

    In Java, I'm developing a blocking file lock, and while attempting to acquire a lock, I have a code block that looks like this:

    while(!fileLockIsAcquired())
    {
    Thread.sleep(100); //is this...
  7. Replies
    0
    Views
    1,966

    Python function Object() copying?

    Is there a copy function Object() in Python? If not, what would I do to accomplish something similar?
    The scenario is that I am using a library and have modified one of the classes there with new...
  8. Replies
    2
    Views
    2,187

    Java equals() selection

    In Java, if I try to do.equals() on a null string, a null pointer error is issued. I’m wondering whether I can perform the following if I’m attempting to compare if a string is equal to a...
  9. In Java, how do you return control to a switch statement?

    I have a client-server console program in which I utilize switch statements to pick choices such as upload/download/change password, among others. When a user inputs a single number for example,

    ...
  10. Replies
    1
    Views
    1,264

    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...
  11. Replies
    5
    Views
    4,492

    Re: Best book to learn Visual C++ from scratch?

    You can go through below mention books, it will help you to understand.

    1. Programming Applications for Microsoft Windows (Microsoft Programming Series): Jeffrey Richter...
  12. PRIMARY KEY vs. UNIQUE restrictions in MySQL

    The distinction between a PRIMARY KEY constraint and a UNIQUE constraint, according to the MySQL documentation, is that a PK constraint does not permit NULL values whereas a UQ constraint does. One...
  13. In C, bubble sorting causes a garbage value error.

    So I've lately started learning data structures in C. Let's get back to my issue.

    Here is the code for my Bubble Sort Algorithm (Taken from Scaler Academy)


    #include <conio.h>
    #include...
  14. Replies
    1
    Views
    3,289

    Life cycle of a GWAN servlet

    To store a database, I'm using C servlets and Kyoto cabinet.

    My question is, how does G-wan communicate with servlets?

    In comparison to java servlets, they have an init and service destruct...
  15. 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, HTML, and am actively learning CSS and Python. I am highly interested in programming, which is why...
Results 1 to 15 of 18





Click Here to Expand Forum to Full Width

Featured