𝐑.𝐎.𝐊 👑
17.5K posts

𝐑.𝐎.𝐊 👑
@r0ktech
Full-stack dev • I write code that works • Web3
Remote Katılım Ağustos 2024
1.9K Takip Edilen10.5K Takipçiler

Websites That Save Developers Hours
1. DevDocs
devdocs.io
All programming documentation in one place with super fast search.
2. Webdev
web.dev
Guides and resources by Google to build fast and modern websites.
3. Readme
readme.so
Create beautiful README files for your GitHub projects easily.
4. Regex101
regex101.com
Test and debug your regex with explanations.
5. CodePen
codepen.io
Write and test HTML, CSS, and JS instantly in the browser.
6. Frontend Practice
frontendpractice.com
Practice frontend development with real website challenges.
7. Roadmaps
roadmap.sh
Developer roadmaps for different tech careers.
8. MetaTags
metatags.io
Preview and generate meta tags for SEO and social sharing.
9. Ray
ray.so
Convert your code snippets into beautiful images.
10. OverAPI
overapi.com
Quick cheat sheets for many programming languages.
English
𝐑.𝐎.𝐊 👑 retweetledi

Evolution of programming languages:
- 1940s → Machine Code (0s 1s)
- 1949 → Assembly
- 1957 → FORTRAN
- 1959 → COBOL
- 1964 → BASIC
- 1970 → Pascal
- 1972 → C
- 1983 → C++
- 1991 → Python
- 1993 → Ruby
- 1995 → Java
- 1995 → JavaScript
- 1995 → PHP
- 2000 → C#
- 2009 → Go
- 2010 → Rust
- 2011 → Kotlin
- 2011 → Elixir
- 2012 → TypeScript
- 2014 → Swift
- 2015 → Solidity
- 2026 → English
English

@r0ktech even. The first condition using modulus will return a value of 1 which is not equal to false. The second condition will also return 1 which is evaluated as true and therefore will print the string.
English

@r0ktech Output: even
In Python, non-zero numbers are truthy
x % 2 returns 1 for odd numbers - treated as True
So this code incorrectly prints "even" for an odd number.
English


















