Skip to content

Instantly share code, notes, and snippets.

View pastranastevenaz's full-sized avatar
🎯
Focusing

Steven Antonio pastranastevenaz

🎯
Focusing
View GitHub Profile
@pastranastevenaz
pastranastevenaz / media-query.css
Created January 4, 2019 08:50 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@pastranastevenaz
pastranastevenaz / mysqldump.php
Last active August 5, 2020 15:52 — forked from micc83/mysqldump.php
Simple PHP script to dump a MySql database
<?php
// This script will make a dump of your database more securely
// Instead of the PHP code calling the Mysql dump command, and passing the argument of username and
// Password to the Shell, this script creates a hidden configuration file called 'my.cnf' which the scrit will read from.
// It helps obfuscate the password. This is the recommended way to do this according to docs.
// Firts the script chacks if any leftover logfiles for the script exists, and deletes them.
@pastranastevenaz
pastranastevenaz / AdbCommands
Created September 10, 2018 02:31 — forked from zhengfish/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell