Site uses cookies to provide basic functionality.
Javascript rendering is set to off by default when visiting the site via .onion and .i2p domains. It can be enabled back again in user's settings section. Javascript rendering set to off means, that you can disable javascript in your browser now and the site will remain functional.
There is also IRC server now available via native IRC clients or non javascript web based one.
Fonts can be adjusted in user's settings section as well.
Check FAQ for more.

OK

In the technology world today, the term Open is most commonly associated with Open Source . Open Source refers to software released under a license that gives other software developers access to modify the original Source code that was used to create the software. This, in turn allows other software developers worldwide to quickly identify and fix bugs and security loopholes, as well as make feature improvements to the software. Co..

UPDATE: I'm no longer using these steps. See Emacs plus –with-native-comp for an easier alternative. Below are the instructions I use to build Andrea Corallo's gccemacs on macOS. It is based on Allen Dang 's handy instructions plus some changes of my own. Install gcc and libgccjit via homebrew brew install gcc libgccjit Save configure script Create configure-gccemacs.sh #!/bin/bash set -o nounset set -o errexit # Configures Em....

In this post we'll write a Python to C compiler in Python. This is especially easy to do since Python has a builtin parser library and because a number of CPython internals are exposed for extension writers . By the end of this post, in a few hundred lines of Python, we'll be able to compile and run the following program: $ cat tests / recursive_fib . py def fib ( n ): if n == 0 or n == 1 : retu....

How playing the game Factorio reminds me of software engineering, from managing complexity to teamwork and automation

Use the dependency injection of Symfony to configure super-easily a strategy pattern with your services.

While benchmarking a custom concurrent functor queue against standard library containers, I noticed something that I didn’t expect. The common concern about the standard containers, especially ones such as std::list,...

The August 4th explosions in Beirut were very jarring to me due to the loss of human life, and the numerous , direct videos that looked like something out my 80s youth nightmares. Hearing that it was caused by 2,750 tonnes of ammonium nitrate , I started working on my phone to quantify my fear by figuring out how easy it would be to ship that much, and how much it would cost. According to wikipedia, there were at least 171 deaths;....

Not long after I found an old piece on attribution from Thinkst Applied Research , Cisco’s Talos Intelligence group posted an article on the same topic . Attribution is fraught, as both pieces explain. IP geolocation is woefully inaccurate, many of the tactics, techniques, and procedures tied to specific actors are either so common that they apply to several groups or so general that they might as well, and the proliferation of viable too..

Do you want to distribute your Python applications to other users who don't have or even use Python? Maybe you're interested in seeing your Python application run on iOS or Android mobile devices. This week on the show we have Russell Keith-Magee, the founder and maintainer of the BeeWare project. Russell talks about Briefcase, a tool that converts a Python application into native installers on macOS, Windows, Linux, and mobile devices.

Recently I have been learning about remote procedural calls (RPCs) in * Golang and realized I was unable to find an easy example on how to write a unit test for RPCs. In this post, I’ll explain how I figured out a solution.

There are a *lot* of React Component libraries to choose from. This guide attempts to put them all on one page.



If you’re like me, most of the mail you get anymore is junk mail. One common type of junk mail is “scratch-off promotions” from car dealerships. You know, those lottery-looking pieces that seem to award everyone the top prize?


Note : Updated on 2022-06-04 to reflect experience with actually maintaining these gems. This blog post talks about my experiences converting a handful of Ruby class libraries to gems. As do a lot of software engineers, I have a series of routines that I bring into almost every Ruby project I tackle that deal with what I consider core stuff you always need: url handling, database stuff, time parsing and so on. Normally I just copy th....

mdfind is an OSX executable which taps into the underlying spotlight index to find files quickly. However if you want to quickly sort results you need to pipe its output (the symbol i.e. shift key + forward slash) into another program. The program we are going to send its results to is xargs which then handles integrating the results from mdfind with another command and organizing the results. Note : I regard xargs as "Unix Dark Mag..

Like a lot of engineers, I have a handful of personal projects I keep around for various reasons. Some are useful and some are just for fun, but none of them get the same sort of investment as a funded commercial effort. The consequence of this is that it's all the more important to keep things as simple as possible, to focus the investment where it counts. Part of the way I achieve that is that I've spent some initial time putting together....

Cargo actually provides a way to cleanly rename tables without any “downtime,” but it’s not obvious or documented how to do this.

Cargo actually provides a way to cleanly rename tables without any “downtime,” but it’s not obvious or documented how to do this.

Cargo actually provides a way to cleanly rename tables without any “downtime,” but it’s not obvious or documented how to do this.

Cargo actually provides a way to cleanly rename tables without any “downtime,” but it’s not obvious or documented how to do this.

Code refactoring is an essential part of the job of software developers. As time goes on, technology evolves, product requirements change…

Series Index Python and Go: Part I - gRPC Python and Go: Part II - Extending Python With Go Python and Go: Part III - Packaging Python Code Python and Go: Part IV - Using Python in Memory Introduction In the previous post we compiled Go code to a shared library and used it from the Python interactive shell. In this post we’re going to finish the development process by writing a Python module that hides the low level detai..


Do you want more traffic, but don’t know where to start? Are you on Quora? Did you know you can use Quora to get traffic to your blog?

Code refactoring is an essential part of the job of software developers. As time goes on, technology evolves, product requirements change…

Using SVG icons instead of PNG or JPG has a few performance benefits, but they're not always straightforward to use. Here's how you do it.

Previously, we have shared our AngularJS Security Fundamentals cheatsheet. This time around, we dive straight into the modern Angular security best practices.

This structure of this blog is almost completely maintained by hand: I manually add entries to the index page, often going back to edit existing posts, and several entries are perennial -- such as my Book list, as well as the syntopical collections on different sets of books. That makes it fairly tricky to automate an RSS feed: at the same time, enough (4) people have directly reached out to request one. Instead of spending a lo....


listmonk v0.7.0-alpha - nadh.in - 5 years ago - eng
Repository: @knadh/listmonk GitHub release page: v0.7.0-alpha This is a major breaking release with a completely rewritten frontend and numerous fixes and improvements. Some of the updates: New frontend and UI. Snappier and responsive.

When you sigh, where all that extra air come from? Have you ever realized you’re holding your breath unconsciously only for it to end with a deep exhale? Happened to me a couple weeks ago. I was driving and I noticed that from time to time I would be thinking about the other cars and the more I thought the shallower I breathed. Then, the driving situation would simplify and I would switch to “autopilot” cruising and release a single sigh an....

Politicians on the Left and Right are betting on new theories about money to bring about the change they seek, but both are neglecting ideas from classical economics that could help us prepare for economic disruptions ranging from the current pandemic to the coming AI revolution. .

Go currently lacks any sort of heredoc or similar syntax, and it's backtick syntax cannot contain backticks. This can make correctly encoded creating go strings, particularly for large strings that contain many backticks, a bit of a challenge. Here's a tool to safely encode any given input to Go string. It's written in Go using Go's own string encoder and compiled with WASM. The code as well as a CLI version of it are available on G..

Go currently lacks any sort of heredoc or similar syntax, and it's backtick syntax cannot contain backticks. This can make correctly encoded creating go strings, particularly for large strings that contain many backticks, a bit of a challenge. Here's a tool to safely encode any given input to Go string. It's written in Go using Go's own string encoder and compiled with WASM. The code as well as a CLI version of it are available on G..


I made a mistake: I bought an electric car. EV articles I have read on Hacker News and Reddit didn’t prepare me for a dozen EV infrastructure problems in my part of the EU. Anecdotes below explain lessons I learned … Continue reading →

Do you want to learn the how and when of implementing K-means clustering in Python? Would you like to practice your pandas skills with a real-world project? This week on the show, David Amos is back with another batch of PyCoder’s Weekly articles and projects.





Leo Babauta, in Showing Up Even When You’re Not Feeling It : “Most of us have an expectation that we should feel in the mood to do something. We should be excited, rested, focused. And when we do it, it should be easy, comfortable, fun, pleasurable. Something like that. That results, predictably, in running from the things that feel hard, overwhelming, uncomfortable.” You will not always feel like taking the hard road, but achiev..

4 visitors online