Dev Miscellaneous – Telegram
Dev Miscellaneous
342 subscribers
884 photos
6 videos
5 files
917 links
A channel where you can find developer tips, tools, APIs, resources, memes and interesting contents.

Join our comments chat for more.

Comments chat (friendly :D)
https://news.1rj.ru/str/+r_fUfa1bx1g0MGRk
Download Telegram
Reading the web offline and distraction-free

This article describes the wiring of a tool to turn a webpage into a self-sufficient epub (for reading offline).

https://blog.owulveryck.info/2021/10/07/reading-from-the-web-offline-and-distraction-free.html

@DevMisv
#golang #epub
Bashcrawl

Learn Linux commands by playing a simple text adventure.

https://gitlab.com/slackermedia/bashcrawl

@DevMisc
#learn #linux #fun #misc
What ORMs have taught me: just learn SQL

I
’ve come to the conclusion that, for me, ORMs are more detriment than benefit.

https://wozniak.ca/blog/2014/08/03/1/index.html

@DevMisc
#orm #sql #meta
Harden and secure browsers in containers, with GUI

I made a few Podman / Docker images for different browsers and OS-es, so I can safely run different browsers in a secure sandbox.

https://crlf.link/log/entries/211008-1/

@DevMisc
#docker #web #misc
Parsing JSON is a Minefield 💣

JSON is the de facto standard when it comes to exchanging data in web programming. But how well do you really know JSON? We'll read the specifications and write test cases together.

http://seriot.ch/projects/parsing_json.html

@DevMisc
#json #parser #learn
Memcached vs. Redis – More Different Than You Would Expect

From how they use memory to how they expire items, the differences are not as subtle as you would expect.

https://engineering.kablamo.com.au/posts/2021/memcached-vs-redis-whats-the-difference/

@DevMisc
#redis #memcached #overview
Hacking YouTube with a MP4

Keyboard Warrior, Breaking software is just finding unintended features, right?

https://realkeyboardwarrior.github.io/security/2021/10/11/hacking-youtube.html

@DevMisc
#youtube #security #web #mp4
Making the whole web better, one canvas at a time

One can have an entire career on the web and never write a single canvas.getContext('2d'), so "Why should I care about this new OffscreenCanvas thing?" is a decent question for many.

https://bkardell.com/blog/OffscreenCanvas.html

@DevMisc
#canvas #web #webdev
Getting to the bottom of web map performance

Raster maps, vector maps, gaming like it's 1993.

https://bdon.org/blog/web-map-performance/

@DevMisc
#geo #web #overview
Highschool student hacks entire districts IoT network for Rickroll senior prank

This is the story of how I created a botnet of IPTVs to rickroll 10,000+ students for my senior prank.

https://whitehoodhacker.net/posts/2021-10-04-the-big-rick

@DevMisc
#meme #security #iot
SHA-1 'Fully and Practically Broken' by New Collision

A chosen prefix collision in SHA-1 has demonstrated a new issue with the venerable hash function developed by the NSA.

https://duo.com/decipher/sha-1-fully-and-practically-broken-by-new-collision

@DevMisc
#sha1 #cryptography #security
Algebraic data types: things I wish someone had explained about FP

Algebraic data types and algebraic data structures sound similar. It’s like they ought to be the same thing. But they’re not.

https://jrsinclair.com/articles/2019/algebraic/

@DevMisc
#fp #data #learn
Sending Emails to Myself

In April, I wrote operatornotify.py, a module which allows my programs to notify me of important information or errors. I was immediately very proud of it.

https://voussoir.net/writing/emailing_myself

@DevMisc
#python #tools #misc
Mechanical sympathy for QR codes: making NSW check-in better

QR codes are now critical infrastructure here in NSW, Australia. Let's learn how to make them better.

https://huonw.github.io/blog/2021/10/nsw-covid-qr/

@DevMisc
#qrcode #optimization #misc
The Problem with Macros

So we’re supposed to be writing a game, right? But in order to make progress, we have to fix a bug.

https://ianthehenry.com/posts/janet-game/the-problem-with-macros/

@DevMisc
#macros #metaprogramming #overview
GTFOBins

GTFOBins is a curated list of Unix binaries that can be used to bypass local security restrictions in misconfigured systems.

https://gtfobins.github.io/

@DevMisc
#security #extra
How apt renders its fancy progress bar?

It uses good ol' VT100 instructions.

https://mdk.fr/blog/how-apt-does-its-fancy-progress-bar.html

@DevMisc
#apt #learn #misc
Draw to search

Find images from movies based on what you draw

https://huggingface.co/spaces/osanseviero/draw_to_search

@DevMisc
#ai #ml #tools #misc
Using ASCII waveforms to test real-time audio code

I draw sound wave ASCII art in Q2Q’s source code. These ASCII art waveforms ensure that the real-time audio engine at the heart of Q2Q stays bug-free.

https://goq2q.net/blog/tech/using-ascii-waveforms-to-test-real-time-audio-code

@DevMisc
#audio #ascii #extra
Fast character case conversion

...or how to compress sparse arrays.

https://github.com/apankrat/notes/tree/master/fast-case-conversion

@DevMisc
#algorithm #optimization #misc