Forwarded from Dcode
I built a simple tool for downloading file or some shit from Internet archive
And it have builtin video player too so you can search and watch movies from IA
Try it
https://downloadstuffss.vercel.app/
And it have builtin video player too so you can search and watch movies from IA
Try it
https://downloadstuffss.vercel.app/
❤3
1. Logic / Problem Solving
- How well a developer reasons about problems
2. Architecture/system design
- ability to design scalable systems
3. Tool mastery.
- How will you are familiar with your tech stack
4. Pace/ Excution speed
- How quick a developer goes from idea to correct implementation
5. Correct /reliability.
- how often the code works as intended
6. Creativity
- Original thinking and elegance
7. Testing
- how will a dev validate their code?
8. Resilience.
- how a dev handles pressure failure in complexity
- How well a developer reasons about problems
2. Architecture/system design
- ability to design scalable systems
3. Tool mastery.
- How will you are familiar with your tech stack
4. Pace/ Excution speed
- How quick a developer goes from idea to correct implementation
5. Correct /reliability.
- how often the code works as intended
6. Creativity
- Original thinking and elegance
7. Testing
- how will a dev validate their code?
8. Resilience.
- how a dev handles pressure failure in complexity
😭1
soy devs
1. Logic / Problem Solving - How well a developer reasons about problems 2. Architecture/system design - ability to design scalable systems 3. Tool mastery. - How will you are familiar with your tech stack 4. Pace/ Excution speed - How quick a developer…
I was thinking of ways on how to rate a developer skills and this are the importance stats I came up with. A FIFA type rating system, but for stats like logic, architecture, tool mastery, pace, correct, creativity, test and resilience. 😭😭😂😂
Forwarded from Jonaz
Main linux commands
## Files & Directories
## Viewing & Editing Files
## Searching & Finding
## Package Management
## System Info & Monitoring
## Permissions & Ownership
## Networking
## Process Control
## Archives & Compression
## Environment & Shell
## Power-user
| pipe output
## Files & Directories
ls list filescd change directorypwd show current directorymkdir create directoryrmdir remove empty directorycp copy files/directoriesmv move or renamerm delete files## Viewing & Editing Files
cat print file contentsless view file head first lines of filetail last lines of filevim editor## Searching & Finding
find find filesgrep search text inside files## Package Management
apt update refresh package listapt upgrade upgrade installed packagesapt install install packageapt remove remove packageapt autoremove clean unused deps## System Info & Monitoring
top running processeshtop better top (if installed)ps process statusdf -h disk usagedu -sh folder sizefree -h memory usageuptime system running time## Permissions & Ownership
chmod change permissionschown change ownerwhoami current userid user info## Networking
ip a network interfacesping check connectivitycurl fetch data from URLswget download filesssh remote loginscp copy over ssh## Process Control
kill stop processkillall stop by namebg resume job in backgroundfg bring job to foregroundjobs list background jobs## Archives & Compression
tar archive files gzip compressgunzip decompress zip zip files unzip unzip files## Environment & Shell
env environment variables export set env var alias create shortcut history command history clear clear terminal## Power-user
| pipe output
> redirect output >> append output && run next if success || run next if failure