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
This media is not supported in your browser
VIEW IN TELEGRAM
How to build your own Neural Network from scratch in Python

A beginner’s guide to understanding the inner workings of Deep Learning

https://towardsdatascience.com/how-to-build-your-own-neural-network-from-scratch-in-python

@DevMisc
#neuralnetwork #python #ai
What's bad about Julia?

This post is about all the major disadvantages of Julia. Some of it will just be rants about things I particularly don't like - hopefully they will be informative, too.

https://viralinstruction.com/posts/badjulia/

@DevMisc
#julia #overview
Nim: The good, the OK, and the hard

Nim is a systems and applications programming language. Statically typed and compiled, it provides unparalleled performance in an elegant package.

https://xmonader.github.io/nim/2018/12/06/nim-good-ok-hard.html

@DevMisc
#nim #overview
You should turn off autofill in your password manager

Most password managers have the autofill feature enabled by default, even though it reduces the security of the stored password.

https://marektoth.com/blog/password-managers-autofill/

@DevMisc
#password #security
Dismissing Python Garbage Collection at Instagram

By dismissing the Python garbage collection (GC) mechanism, which reclaims memory by collecting and freeing unused data, Instagram can run…

https://instagram-engineering.com/dismissing-python-garbage-collection-at-instagram-4dca40b29172

@DevMisc
#python #gc #performance
Docker in Production: A History of Failure

My first encounter with docker goes back to early 2015. Docker was experimented with to find out whether it could benefit us. The experiment was quick, Docker was useless and closer to an alpha prototype than a release.

https://thehftguy.com/2016/11/01/docker-in-production-an-history-of-failure/

@DevMisc
#docker #production #devops
Don’t Use If-Else and Switch in JavaScript, Use Object Literals

Write better conditionals in JavaScript with object literals

https://betterprogramming.pub/dont-use-if-else-and-switch-in-javanoscript-use-object-literals-c54578566ba0

@DevMisc
#javanoscript #tips
Developer Links

Collections of useful links for developers.

https://devlinks.pinkjelly.org/general

@DevMisc
#misc
Fast Inverse Square Root — A Quake III Algorithm

In this video we will take an in depth look at the fast inverse square root and see where the mysterious number 0x5f3759df comes from.

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

@DevMisc
#performance #c
An Intuition for Lisp Syntax

Every lisp hacker I ever met, myself included, thought that all those brackets in Lisp were off-putting and weird. At first, of course.

https://devlinks.pinkjelly.org/general

@DevMisc
#lisp #extra
Ipv6 watch

It is August 2021 and the IPv6 adoption at major websites is bad... Most of those websites have the money, time and people to enable IPv6 but still they are only reachable via IPv4...

https://ipv6.watch/

@DevMisc
#network #ipv6 #extra
Compilers as Teachers

We like to stress that Rust takes its commitment to developer friendliness very seriously, and that the Rust compiler considers confusing error messages a bug.

https://ferrous-systems.com/blog/compilers-as-teachers/

@DevMisc
#rust #compiler
Movfuscator - The single instruction C compiler

The Movfuscator compiles programs into "mov" instructions, and only "mov" instructions.

https://github.com/xoreaxeaxeax/movfuscator

@DevMisc
#c #compiler #asm #esoteric
Slate

A completely customizable framework for building rich text editors.

https://github.com/ianstormtaylor/slate

@DevMisc
#ui #framework #web
The Itanic Has Sunk

Intel's once-vaunted Itanium architecture officially died.

https://honeypot.net/post/the-itanic-has-sunk/

@DevMisc
#intel #hardware #cpu
Understanding js `arguments` object

In this thread, we'll learn about arguments, its length property, when to use it, and more!

https://twitter.com/codingyuri/status/1421093145572347909?s=20

@DevMisc
#javanoscript #tips
Documenting our migration to Docker

This is our experience with Docker! If you're migrating to containers, we're sure you'll find some useful tips to avoid possible mistakes.

https://www.artifakt.com/blog/cloud/documenting-our-migration-to-docker/

@DevMisc
#docker #tips
Malicious Input: How Hackers Use Shellcode

Attackers use shellcode to target a vulnerable process running on another machine. Learn how threat actors use it to compromise enterprises.

https://www.sentinelone.com/blog/malicious-input-how-hackers-use-shellcode/

@DevMisc
#security
strcpy: a niche function you don't need

The C strcpy function is a common sight in typical C programs. It’s also a source of buffer overflow defects...

https://nullprogram.com/blog/2021/07/30/

@DevMisc
#c #extra