Live data from Hacker News

Viewing profile — jennasys

jennasys

HN member
Joined
Thu, May 28, 2020, 6:05 PM UTC
HN karma
53
Public activity
41 items

About jennasys

Independent software developer in SoCal with business and manufacturing experience, specializing in knowing a little bit about a lot of different things.

Recent public activity

  1. comment
    Comment #40903201

    KivyMD has a good selection of Material Design compliant widgets for Kivy. It does for Kivy what MUI does for React.

  2. comment
    Comment #40903165

    Kivy gives you a pretty good separation of logic and UI with its declarative yaml-like kv files. For me, it conceptually feels a lot like developing in React.

  3. comment
    Comment #39804751

    I've made React applications using Python via Transcrypt, but wrap component functions in a Python decorator that make direct calls to React.createElement() instead of using JSX (e…

  4. comment
    Comment #34509132

    This is the only live one I manage to tune into on a regular basis.

  5. comment
    Comment #34432558

    That's been my experience too. I wish the MicroPython plugin for PyCharm was as good as what Thonny offers.

  6. comment
    Comment #34432503

    I've had the best experience with Thonny working with MicroPython. I'm amazed at how seamless updating files and even flashing MicroPython on devices like the ESP8266 and Pico is. …

  7. comment
    Comment #33936325

    Is this related to the IDOM project? It seems similar in concept. https://idom-docs.herokuapp.com/docs/index.html

  8. comment
    Comment #33936297

    I used GWT a long time ago and it was great for being able to write a complex algorithm that had to run on the server as well as in the browser. It saved a lot of time and trouble,…

  9. comment
    Comment #33936035

    The ugliness is something I struggled with a bit when I was first using Transcrypt to create React applications with Python. Even though that approach is more of a 1-to-1 Python-to…

  10. comment
    Comment #33770408

    Same thing happened to me. I got to a point where I had to conclude that the issues with the CEO was not something I could fix and I had to walk away knowing that I'd likely lose e…

  11. comment
    Comment #31844695

    I agree. I've been using Transcrypt to create React applications using Python. It allows you to take advantage of existing JS libraries and bundlers but still code in Python. I hav…

  12. comment
    Comment #27512154

    It sounded like the purchase of the 5 Pi400s ended up being covered by the library system, but the guy teaching still provided his time and curriculum. I'd imagine getting budget a…

  13. comment
    Comment #27285933

    For a lucky few, there are a some Micro Center brick & mortar stores around that have a surprisingly up-to-date and diverse selection of electronic components and tools stocked. Th…

  14. comment
    Comment #27230914

    I know CP has it's own internal way of handling interrupts for specific libraries, but I find it odd to think about embedded programming without having direct interrupt support.

  15. comment
    Comment #26163947

    This just reminded me of the Horrorstör book I've had on my reading list for a while now: https://www.amazon.com/gp/product/1594745269

  16. comment
    Comment #25181764

    I started buying from Sweetwater decades ago. Their customer focus is beyond any other retailer I've bought from. My in person GC experience OTOH was always the opposite of that.

  17. comment
    Comment #24693497

    People with NPD almost never undergo any therapy for it. They literally don't see anything wrong with themselves. Quite the opposite actually, they are forever the victim of everyo…

  18. comment
    Comment #24690013

    There are CEOs that are narcissistic, and there are CEOs that have NPD. The first will be awful to work with, and the latter will destroy your life if you hang around long enough. …

  19. comment
    Comment #24262719

    I agree with the premise here in general. There have certainly been times when I've wanted to accomplish something, but then I see someone else being exceptional at that task and I…

  20. comment
    Comment #24253377

    Maintenance burns getting out of control has happened several times in the past. That's the reason they changed what they called them from "controlled burns" to "prescribed burns".…

  21. comment
    Comment #24253064

    You can already script OpenSCAD with Python using SolidPython https://github.com/SolidCode/SolidPython .

  22. comment
    Comment #24184317

    Some Python IDEs like Thonny and PyCharm can seamlessly do file transfers for you over serial. Thonny has actually been a great tool for that on ESP boards. This was one of the rea…

  23. comment
    Comment #24181459

    You have to find the version of MicroPython that has specifically been ported to your board. In addition to the PyBoard (STM32), there is ESP8266, ESP32, BBC Micro Bit (ARM Cortex-…

  24. comment
    Comment #24181109

    Adafruit's fork was for business reasons as they wanted control over implementation for the hardware they sell, and to focus development efforts on making it more accessible to new…

  25. comment
    Comment #24180871

    On the boards it has been ported to, I2C and SPI are directly supported ( https://docs.micropython.org/en/latest/library/machine.SPI.h... ). No C coding necessary. It's not a repla…