Dev Miscellaneous – Telegram
Dev Miscellaneous
341 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
Set up a Multi-Stage Docker Build for Go Applications

A multi-stage Docker build serves a few purposes. First, the final image size is smaller than traditional images, second, it’s more secure...

https://koenverburg.medium.com/set-up-a-multi-stage-docker-build-for-go-applications

@DevMisc
#docker #devops #security
Should You Listen to Music While Programming?

In this article, I’m going to discuss the pros and cons of listening to music while programming...

https://dev.to/claudiobernasconi/should-you-listen-to-music-while-programming

@DevMisc
#dev #productivity #beginners
Deep Dive Into Classes in Python

If you are familiar with Object-Oriented Programming (OOP), then Class is a concept that you have at least heard of or even use before.

https://medium.com/geekculture/deep-dive-into-classes-in-python

@DevMisc
#python #oop #class
Public APIs

A collective list of free APIs for use in software and web development.

https://github.com/public-apis/public-apis

@DevMisc
#api #github #webdev
Mozilla tests if 'Firefox/100.0' user agent breaks websites

Mozilla has launched an experiment where they change the Firefox browser user agent to a three-digit "Firefox/100.0" version to see if it will break websites.

https://www.bleepingcomputer.com/news/software/mozilla-tests-if-firefox-1000-user-agent-breaks-websites/

@DevMisc
#web #misc #mozilla
Stealing your private YouTube videos, one frame at a time

Rebuilding an entire private YouTube video GIF through Google Ads preview.

https://bugs.xdavidhu.me/google/2021/01/11/stealing-your-private-videos-one-frame-at-a-time

@DevMisc
#security #bugbounty #web
MacOS in Svelte

A painting of macOS Big Sur in HTML, CSS and JS.

https://macos.vercel.app/

@DevMisc
#webdev #svelte #javanoscript #css
Anti-Captcha

SDK set powered by real workers to solve reCAPTCHA v2, v3, hCaptcha and other kinds of captcha.

https://anti-captcha.com/

@DevMisc
#web #captcha #tools
5 Python Tricks That Will Ease Your Life

In this article, we will go over 5 simple Python tricks that I think will make your noscripts more efficient and appealing...

https://towardsdatascience.com/5-python-tricks-that-will-ease-your-life

@DevMisc
#python #beginner #tips
Are you satisfied with current post rate?
Anonymous Poll
75%
Yes, it's alright
25%
No, I want less daily posts (number in comment
How Discord Stores Billions of Messages

Discord continues to grow faster than we expected and so does our user-generated content. This is a lot of data that is ever increasing in size. How do we do it?

https://blog.discord.com/how-discord-stores-billions-of-messages-7fa6ec7ee4c7

@DevMisc
#discord #cassandra #database
Set Up a VPN Server With Docker In 5 Minutes

In this post, we will examine a method for creating your own OpenVPN server with Docker...

https://medium.com/@gurayy/set-up-a-vpn-server-with-docker-in-5-minutes

@DevMisc
#tutorial #docker #openvpn
What is Var, Let, and Const?

The holy trinity of javanoscript variables. Let’s see how different they are and how they can be used in different scenarios...

https://rakshith-bhat.medium.com/what-is-var-let-and-const

@DevMisc
#javanoscript #beginner #webdev
How to SSH Into a Docker Container

SSH is one of the most-used commands in a sysadmin’s toolbox but it’s not commonly seen alongside Docker. Here’s how you can SSH into a running container and why you should think twice before you do.

https://www.cloudsavvyit.com/13937/how-to-ssh-into-a-docker-container/

@DevMisc
#docker #tips
HTML over DNS

Serving Blog Content Over DNS through Cloudflare API.

https://jacobkiers.net/hod

@DevMisc
#web #dns #html
Python Generators - How to use them and the benefits you receive

Python Generators are often considered a somewhat advanced topic, but they are actually very easy to understand once you start using them on a regular basis.

https://www.youtube.com/watch?v=bD05uGo_sVI

@DevMisc
#python #tips #video
“Pack it in, mathematicians, someone owes LLVM a million bucks”

https://twitter.com/jckarter/status/1428093469755527168

@DevMisc
#llvm #clang #meme
SHA-1 is broken

"We have broken SHA-1 in practice, and tools like GIT are affected by this problem"

https://shattered.io/

@DevMisc
#security #cryptography
I hate almost all software

It's unnecessary and complicated at almost every layer. The only thing that matters in software is the experience of the user.

https://tinyclouds.org/rant.html

@DevMisc
#meta #extra
How to prevent email spoofing, using an unholy combination of silly standards

Recently, I encountered a problem. My domain didn't correctly implement SPF, DKIM, or DMARC...

https://simonandrews.ca/articles/how-to-set-up-spf-dkim-dmarc

@DevMisc
#mail #learn #misc
A fast alternative to the modulo reduction

Suppose you want to pick an integer at random in a set of N elements. Your computer has functions to generate random 32-bit integers, how do you transform such numbers into indexes no larger than N?

https://lemire.me/blog/2016/06/27/a-fast-alternative-to-the-modulo-reduction/

@DevMisc
#tips #performance