Skip to content

Instantly share code, notes, and snippets.

@ahmed0x0ashraf
ahmed0x0ashraf / OTW_Bandits.md
Created September 16, 2025 12:17 — forked from harjyotbagga/OTW_Bandits.md
Solutions of Bandits - OTW

Over the Wire: Bandit

  • If you know a command, but don’t know how to use it, try the manual (man page) by entering “man ” (without the quotes).
  • If there is no man page, the command might be a shell built-in. In that case use the “help ” command.

Level 0

To ssh onto a server

ssh {user}@{Host} -p {port_no}
@ahmed0x0ashraf
ahmed0x0ashraf / media-queries-samples.css
Created December 18, 2017 15:50 — forked from hs0ucy/media-queries-samples.css
Media Queries for Standard Devices
/*
* From css-tricks.com
* http://css-tricks.com/snippets/css/media-queries-for-standard-devices/
*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/* Styles */
@ahmed0x0ashraf
ahmed0x0ashraf / media-queries-samples.css
Created December 18, 2017 15:50 — forked from hs0ucy/media-queries-samples.css
Media Queries for Standard Devices
/*
* From css-tricks.com
* http://css-tricks.com/snippets/css/media-queries-for-standard-devices/
*/
/* Smartphones (portrait and landscape) ----------- */
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px) {
/* Styles */