Skip Navigation
FastAPI keeps generating local index.html*
  • This is a FastAPI feature - Autogenerated documentation using Swagger.

    You can turn it off by setting docs_url=None

    In your linked main.py:

    app = FastAPI(
        title="IslabTweet",
        description=__doc__,
        docs_url="/", # change this to None to disable the docs
        version=VERSION,
    )
    

    Hope this helps!

  • Help trying to extract some data
  • Dict keys are case sensitive in python. In your code I can see the key you've used has a capital M in Amarok. Maybe that's the issue here

  • Help trying to extract some data
  • This is strange. I tried your snippet with your file and it works for me:

    (env) ➜  testing cat x.py
    from mutagen.id3 import ID3
    tags = ID3("myfile.mp3")
    print(tags["TXXX:FMPS_Rating_Amarok_Score"])                                                                                                                                               
    (env) ➜  testing python x.py
    0.78
    
  • First year CS student currently on vacations looking for programming course to follow.
  • This is the best option. I recommend Nand2Tetris to everyone! It's an incredibly well designed and executed course

  • Blogging with Jupyter Notebooks in Hugo
  • Ooh, I hadn't heard of Quarto before, but it looks really good! Thanks for mentioning it!

  • Bringing the Unix Philosophy to the 21st Century
  • While jc is a great tool, and I'm definitely a fan, I believe the real solution to the overarching problem lies in a paradigm shift: see nushell

  • What are your opinions on in-person conferences?
  • I wanna go to one so bad! But they never happen in my city..

  • To A Man With `jq`, Everything Looks Like JSON
    ishan.page To A Man With `jq`, Everything Looks Like JSON

    Featured Photo by energepic.com I’ve had a love-hate relationship with Bootstrap for a long time. While I love how fast it lets me get going, I absolutely hate the cookie cutter vibe of most of the stuff that I end up making with it. Bootswatch is awesome, and I know that I could customize my theme...

    To A Man With `jq`, Everything Looks Like JSON
    8
    The Ultimate Interactive JQ Guide
  • I agree that from a completeness point of view, the official manual is better (I've linked it at the bottom of my post as well), however I'd love to hear your specific thoughts about why you feel this particular article is not good- I've tried to include fully interactive examples for the most common tasks I find myself doing with jq everyday. This feedback will help me improve my own skills as well, so I would appreciate it very much.

  • The Ultimate Interactive JQ Guide
    ishan.page The Ultimate Interactive JQ Guide

    Learn how to search, query, and modify JSON data with 25 interactive jq examples and explainations

    The Ultimate Interactive JQ Guide

    I wrote a guide about jq which has interactive examples

    4
    what's the highest increase in salary you've had or seen?
  • It is possible to live on that, there are people who live on less than it. Personally all of it went to supplementing my Mom's income so we could survive.

    There are plenty of entry level jobs in India that offer those kinds of wages. There are more that offer less.

    Yes, it's exploitative.

  • what's the highest increase in salary you've had or seen?
  • I'm from India so these numbers might be a bit weird. My yearly comp has basically gone like this from 2017 to 2023

    $0.7k -> $3.6k -> $4.8k -> $20k

  • What would it take for you to move away from Github?
  • Have you seen all the people just stuffing their profile README full of random graphics and stats and badges

  • What programming languages aren't too criticized here?
  • Ohhhh, this site is a great find. Exploring all the articles right now. Thanks!

  • What programming languages aren't too criticized here?
  • Unfortunately, no one can be told what a monad is. You have to see it for yourself (then you won’t be able to explain it to anyone)

  • Programming the Kernel with eBPF
  • eBPF is something that I've been exploring recently for work. I was quite blown away when I realized the true potential. I did find it difficult to get started, and while this article is a good introduction, some example code or hands on would be nice to have

  • Dear past me, use the flags
  • The scenario is not ficticious. It's taken straight from my first job, but I had to leave out specific details. The application being developed had something to do with DRM, so that might explain the weird requirements.

    The lesson is that sometimes business will require you to force users to update their version, and/or enable specific features for specific subsets of users. So you should have such a mechanism in place before it is required, otherwise you will end up doing hacky things like breaking the server to do what needs to be done.

    Systems such as these are actually fairly common in enterprise, but since it was my first job, I had not planned ahead for this because I had no idea.

  • I can't log into pd in jerboa?
  • I had this same problem, after clearing my Jerboa data it worked fine. Hope that helps

  • How often does branchless programming actually matter?
  • How often do a few nanoseconds in the inner loop matter?

    It doesn't matter until you need it. And when you need it, it's the difference between life and death

  • The secret life of .well-known
  • I'll be sure to read it when you do :)

  • Programming "with the grain"
  • OTOH, the more pythonic one will probably perform worse, but I'm not familiar enough with Python internals to make that claim without benchmarks.

    I'll try it out and add the data in the article

  • The secret life of .well-known
  • Haha this is exactly me. That habit of losing the knowledge rapidly post investigation is something I'm trying to break, and that's part of the reason I banged out this blog post immediately after my itch was satisfied.

    The "I have to tell people about this NOW" vibe also carried me through completing my website (just so I could publish this blog post)

  • The secret life of .well-known

    I recently went on quite a rabbit hole regarding the .well-known directory, and wrote about it.

    5
    What's the biggest docker footgun you've experienced?

    I'll start:

    When I was first learning to use Docker, I didn't realize that most tutorials that include a database don't configure the database to persist. Imagine my surprise when I couldn't figure out why the database kept getting wiped!

    17
    ishanpage ishanpage @programming.dev

    Self taught developer

    Previously known as @yourstruly@dataterm.digital

    Come hang out with me on Mastodon

    Check out my blog, where I write about what I have learned

    Posts 13
    Comments 20