https://sqlite.org/wasm/doc/trunk/index.md

cross-posted from: https://programming.dev/post/20627406 > via https://news.ycombinator.com/item?id=41851051

4
0
https://sqlite.org/wasm/doc/trunk/index.md

via https://news.ycombinator.com/item?id=41851051

7
0
Python 3.14.0 alpha 1
  • norambna norambna 5d ago 100%

    Python 3.14 Release Schedule: https://peps.python.org/pep-0745/

    3.14.0 final: Wednesday, 2025-10-01

    6
  • www.pythonmorsels.com

    via https://mastodon.social/@treyhunner/113303585943837417 edit: blog post about this snippet here: https://treyhunner.com/2024/10/django-and-the-new-python-3-dot-13-repl/

    7
    0
    django
    Django norambna 1w ago 100%
    UV with Django
    blog.pecar.me

    via https://fosstodon.org/@anze3db/113288415350308341

    3
    0
    blog.miguelgrinberg.com

    via https://mstdn.social/@miguelgrinberg/113266572735273155

    34
    2
    www.youtube.com

    via https://fosstodon.org/@europython/113242551122295216

    12
    1
    www.pythonmorsels.com

    via https://mastodon.social/@treyhunner/113230504133387015

    19
    0
    https://www.youtube.com/watch?v=8UuW8o4bHbw

    via https://mastodon.social/@hynek/113227146595211210

    35
    44
    djangotv.com

    via https://mastodon.social/@webology/113211787119021118

    2
    0
    adamj.eu

    via https://fosstodon.org/@adamchainz/113204288975994511

    3
    0
    Recommendations on casual GB/GBA games?
  • norambna norambna 4w ago 100%

    I have spent a lot of time playing GB/GBA games and Advance Wars is among my favorites. I love the "hot potato" mode for playing with a friend with just one device.

    2
  • https://kodare.net/2024/09/19/iommi-vs-django-tables2.html

    via https://mastodon.social/@boxed/113165528200690027

    5
    0
    adamj.eu

    via https://fosstodon.org/@adamchainz/113158552844057284

    16
    0
    Django Chat: Fall 2024 Podcast Relaunch
  • norambna norambna 1mo ago 100%

    Relaunch? I never listened to it’s old run, anyone have thoughts on it?

    Django Chat is a great podcast!

    3
  • What languages/frameworks for small, very low usage apps on limited hardware?
  • norambna norambna 1mo ago 100%

    Python / FastAPI will be better than Java in your situation and is easy to learn. Go should be even better and is also relatively easy to learn!

    2
  • radiac/nanodjango: Run Django models and views from a single file, and convert it to a full project.
  • norambna norambna 1mo ago 100%

    https://mastodon.cloud/@radiac/113096990972136170

    Nanodjango 0.8 is out, adding async view and ASGI support. Now you can write async single file scripts that look like Flask or FastAPI, but with all #django features like models, auth, admin etc.

    2
  • linux
    Linux 5mo ago
    Jump
    Can You Use Raspberry Pi 5 as a Desktop Computer?
  • norambna norambna 5mo ago 100%

    I own two Raspberries 1, a Raspberry 4 8GB and a Raspberry 5 8GB. I wouldn't recommend the 4 as a full-fledged desktop replacement, but the 5 has been very smooth so far.

    I'm currently using the latest Raspberry Pi OS Lite and installed KDE on top.

    7
  • Cheap, but reliable SSDs?
  • norambna norambna 6mo ago 100%

    I was lucky then with the 4 A400 I'm still using. I also have 3 BX500 that have been very reliable.

    2
  • Cheap, but reliable SSDs?
  • norambna norambna 6mo ago 100%

    Kingston A400s and Crucial BXs have been very good as cheap SSDs in my experience.

    3
  • Communication between Raspberry Pis on different networks
  • norambna norambna 8mo ago 100%

    A VPN would be my first choice. ZeroTier works like a charm on the RPis. I've shared even SQLite databases over Samba over Zerotier among a bunch of RPis daily for a couple of years without a hitch.

    1
  • bsd
    BSD 8mo ago
    Jump
    OS Recommendations for 2014 MacBook Pro
  • norambna norambna 8mo ago 50%

    I haven't used source-based distros, but I've installed Linux on a couple of older Macs. You will probably need to search for proper drivers for the Webcam and Wifi. Other than, you won't have any mayor problems.

    0
  • linux
    Linux 8mo ago
    Jump
    I'm working on a distro recommendation flowchart/ list for newcomers and need your input please! (Post is not only this picture btw and is mainly text)
  • norambna norambna 8mo ago 75%

    My own example. I still have an ancient netbook lying around. It runs on an Intel Atom N270, which is only 32bit / i386. It came with Windows XP and I quickly switched to Mint, when it was still supporting 32bit.

    I think the last Ubuntu release supporting i386 was 18.04 (around 2018) and all other distros started to drop i386 support after that.

    AFAIK Debian is the only major distro still fully supporting i386. And a Debian based distro that still supports i386 is MX Linux. My ancient and crappy netbook is running MX Linux right now.

    My 'weird' example. I have a Raspberry 5! It's ARM and very new. It runs its own distro, Raspberry Pi OS (Debian based), and Ubuntu does also fully support it. Right now if you try some other distro, it probably won't even boot unless you start tinkering a lot with it.

    So Debian is definitively a choice for very old hardware. And the odd ARM SoC has usually at least some custom Ubuntu build that runs with it.

    2
  • Fitting logo for the community
  • norambna norambna 9mo ago 100%

    Perfect!

    3
  • Fitting logo for the community
  • norambna norambna 9mo ago 100%

    Good idea! But the borders don't look good with a darker background. I'm seeing this right now: https://0x0.st/H0JJ.png

    3
  • Cannot open instances
  • norambna norambna 10mo ago 100%

    Same problem here!

    6
  • A TUI interface for running Django Commands
  • norambna norambna 10mo ago 100%

    django-tui 23.9 adds an interactive shell for running django ORM queries: https://fosstodon.org/@anze3db/111608276020943202

    1
  • python
    Python 11mo ago
    Jump
    Is there any way to run a Python GTK3 apps on Windows? [Solved]
  • norambna norambna 11mo ago 100%

    PyQT / PySide are huge, but they have been very good in my experience coding cross platform desktop programs. macOS, Windows and Linux (even on ARM) are very well supported.

    2
  • sqlite
    SQLite 12mo ago
    Jump
    Using WAL mode in SQLite and its interaction with VACUUM
  • norambna norambna 12mo ago 100%

    The error you would get is a timeout. The easiest way to wait longer is increasing the timeout of your connection. I think the default value for a timeout is 5 seconds.

    1