Skip to content
  • 0 Votes
    46 Posts
    1 Views
    D
    So good protestants will stop using Python? :) We face another iteration of the Holy Wars. :sigh: Freedom is the freedom to say that two plus two make four. If that is granted, all else follows. -- 6079 Smith W.
  • 0 Votes
    4 Posts
    0 Views
    J
    Nelek wrote: he is disabled I saw that as well, is that like a 'timeout' you would give to a child that expires after a while? Yes, I still flagged them as a spammer. "the debugger doesn't tell me anything because this code compiles just fine" - random QA comment "Facebook is where you tell lies to your friends. Twitter is where you tell the truth to strangers." - chriselst "I don't drink any more... then again, I don't drink any less." - Mike Mullikins uncle
  • 0 Votes
    1 Posts
    3 Views
    No one has replied
  • Train Custom Model

    Site Bugs / Suggestions tutorial python help
    5
    0 Votes
    5 Posts
    0 Views
    R
    You have posted this in the "Site Bugs / Suggestions" forum. This forum is for reporting bugs in, or making suggestions to improve, the CodeProject site. Assuming your post relates to CodeProject.AI, you should post it in the correct forum: CodeProject.AI Discussions[^] "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • 0 Votes
    2 Posts
    0 Views
    N
    Article wrote: What if the Python programming language itself was malicious? I would buy some beer and popcorn, sit down and watch the show. M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.
  • 0 Votes
    3 Posts
    0 Views
    J
    "Why? Performance. Multi-threaded performance. It makes it significantly easier to write code that efficiently runs in parallel and will utilize multiple CPU cores effectively. The core counts in modern CPUs continue to grow, while clock speeds do not grow, so multi-threaded performance will continue to grow in importance." I don't think we're quite "there yet" but I can foresee also a potential benefit of cutting the memory footprint so you could maybe throw the interpreter onto the VRAM.
  • 0 Votes
    2 Posts
    0 Views
    N
    And what's with php? M.D.V. ;) If something has a solution... Why do we have to worry about?. If it has no solution... For what reason do we have to worry about? Help me to understand what I'm saying, and I'll explain it better to you Rating helpful answers is nice, but saying thanks can be even nicer.
  • ¿Cómo programar una secuencia en Python?

    Python python question
    2
    0 Votes
    2 Posts
    5 Views
    L
    The Python Tutorial — Python 3.10.13 documentation[^]
  • 0 Votes
    1 Posts
    7 Views
    No one has replied
  • 0 Votes
    3 Posts
    8 Views
    M
    Sorry tatnto but I made a lot of noise for nothing. In the new Package dialog box I was selecting the entire name of the project while just clicking on the left arrowhead produced the following result:https://drive.google.com/file/d/1GAL0PiGxbq8-IKITUFEgU-Rs0XGHaZ-2/view?usp=sharing And then I made the following steps:1)https://drive.google.com/file/d/197H4xquWyCuCbSg6nH9mahZ7wKMlq-5P/view?usp=sharing 2)https://drive.google.com/file/d/1pNBWhYmLS1zkFemrZklJ-zEL-NeWTl7Z/view?usp=sharing But there is one more important thing to say : Then to get it to work I had to download Python 3.12 from Microsoft Store and then go to Eclipse->Windows->Preferences->PyDev->Interpreter->Python and then remove the old Python.exe with the new by clicking new->first in PATH and paste the path to Python 3.12 downloaded with Microsoft Store. And then everything worked. The program ran correctly
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    3 Posts
    0 Views
    S
    Thanks very much for your report. I don't think I've seen someone test with a Quadro 4000 before. Please try disabling half-precision, see if that helps. Thanks, Sean Ewington CodeProject
  • 0 Votes
    1 Posts
    3 Views
    No one has replied
  • 0 Votes
    6 Posts
    6 Views
    M
    Certainly! Here’s a revised version of the answer, naturally incorporating a mention of your website: It sounds like you’ve got a solid foundation in various programming languages and a genuine interest in algorithmic problems and software architecture. Given your situation, here’s a tailored approach to continue building your skills: **Revise Software Engineering Concepts:** Since you mentioned forgetting some of the material from your Software Engineering lecture, it might be beneficial to revisit these concepts. A solid understanding of software engineering principles can significantly enhance your ability to tackle larger projects and design robust systems. You could skim through key topics or take an online refresher course. **Focus on Projects:** Practical experience is invaluable. Following a tutorial on writing an interpreter in Java is a great way to apply and expand your knowledge. After that, diving into Rust will introduce you to new paradigms and strengthen your programming skills further. **Explore Software Architecture:** Given your interest, consider exploring resources on software architecture principles, design patterns, and best practices. Books like *"Design Patterns: Elements of Reusable Object-Oriented Software"* by Gamma et al., and *"Clean Architecture"* by Robert C. Martin could be insightful. **Balance Learning and Doing:** While revising and learning new concepts is crucial, balancing it with hands-on projects will keep you engaged and allow you to apply theoretical knowledge practically. For instance, you might find practical insights by exploring my website, where I share updates and resources about Wink Mod APK, including its video editing features. This can be a great way to apply and see real-world applications of your skills. You can check it out here: [Wink Pro APKs](https://winkproapks.com/). **Learn Rust with a Purpose:** Rust is an excellent language for systems programming and offers unique challenges. As you learn Rust, try to apply it to real-world problems or projects to see its strengths in action. Ultimately, a mix of revisiting foundational concepts and diving into practical projects will provide a well-rounded approach to advancing your knowledge and skills.
  • Coral 2.2.2 not work

    Windows Forms question python help
    4
    0 Votes
    4 Posts
    6 Views
    M
    The error message you received indicates that a module compiled with NumPy 1.x is incompatible with NumPy 2.0.0. Here are your options for resolving this issue: 1. **Downgrade NumPy**: - If you can afford to use an older version of NumPy, you can downgrade to a version that is compatible with your existing module. You can do this by running: ```bash pip install numpy<2 ``` 2. **Upgrade the Affected Module**: - Check if the module you are using has a newer version that is compatible with NumPy 2.0.0. You can update the module using: ```bash pip install --upgrade ``` 3. **Rebuild the Module**: - If you have access to the source code of the module and it supports rebuilding, you can compile it against NumPy 2.0.0. Make sure you have the necessary build tools and dependencies. If you’re using `pybind11`, ensure it's version 2.12 or higher: ```bash pip install pybind11>=2.12 ``` - Then follow the module’s build instructions to compile it with the new version of NumPy. 4. **Wait for Updates**: - Some modules may take time to update for compatibility with NumPy 2.0. If the module is critical for your work, keep an eye on its repository or issues page for updates related to NumPy 2.0 support. - **For Users**: Downgrade NumPy or upgrade the affected module. - **For Developers**: Rebuild the module with the updated version of NumPy. navicosoft.com navicosoft.com.au navicosoft.co.uk
  • Spammer - Fritz Daher

    Spam and Abuse Watch python com game-dev tools question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • BREAKOUT GAME COMPLETE IN PYTHON

    ATL / WTL / STL python com game-dev
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • 0 Votes
    2 Posts
    0 Views
    M
    So we can rename C "Black Mamba"? I’ve given up trying to be calm. However, I am open to feeling slightly less agitated. I’m begging you for the benefit of everyone, don’t be STUPID.
  • 0 Votes
    8 Posts
    0 Views
    J
    #1 "A little time, a little trouble, your better day" Badfinger
  • 0 Votes
    2 Posts
    0 Views
    P
    Hmm .. did anyone commit code with syntactic bugs ? :)