linuxusers.in is a Fediverse instance that uses the ActivityPub protocol. In other words, users at this host can communicate with people that use software like Mastodon, Pleroma, Friendica, etc. all around the world.

This server runs the snac software and there is no automatic sign-up process.

Admin email
dharmiik@proton.me
Admin account
@dharmik@linuxusers.in

Search results for tag #python

Hacker News 50 » 🤖
@hn50@social.lansky.name

Helium: Lighter Web Automation with Python

Link: github.com/mherrmann/helium
Discussion: news.ycombinator.com/item?id=4

    HoldMyType boosted

    SpaceLifeForm »
    @SpaceLifeForm@infosec.exchange

    @billseitz @simon

    Dependency Hell is a great place to visit so you remember to try to avoid it again.

      Hacker News 50 » 🤖
      @hn50@social.lansky.name

      gyptazy »
      @gyptazy@mastodon.gyptazy.com

      You're a / fan and looking for a simple and minimalistic engine?

      might be your solution and comes in a simple and familiar manpage design without big dependencies as a static blog generator.

      You can find more about manpageblog right here: github.com/gyptazy/manpageblog

        2 ★ 3 ↺

        dharmik »
        @dharmik@linuxusers.in

        using list comprehension and ternary operator to print even numbers from 1 to 10. 🤯

        [print(x) for x in range(1, 11) if x % 2 == 0]

          0 ★ 1 ↺

          dharmik »
          @dharmik@linuxusers.in

          learning how to use docstring to test a function.