This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import time | |
path = "U:\\Downloads" | |
now = int(time.time()) | |
dirList = os.listdir(path) | |
for fileName in dirList: | |
filePath = path + "\\" + fileName |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
## Require root privileges | |
if [[ "$(whoami)" != "root" ]]; then | |
echo "ERROR: You must be root to run this script" | |
exit 1 | |
fi | |
## Install python-pip if missing | |
if [[ ! $(dpkg -l python-pip) ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"variables": { | |
"ssh_user": "root", | |
"ssh_pass": "T@c0_Bu3n0" | |
}, | |
"builders": [ | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
adb reboot recovery | |
adb wait-for-device | |
adb shell twrp backup SDBO | |
adb reboot |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// -------------------------------------------------------------------------- // | |
// -----| INTERFACE AND INPUT |---------------------------------------------- // | |
// -------------------------------------------------------------------------- // | |
cl_showloadout 1 | |
cl_teamid_overhead_mode 1 | |
engine_no_focus_sleep 0 | |
r_show_build_info 1 | |
m_rawinput 1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
unset($foo); | |
var_dump($foo ?? 'bar'); // 'bar' | |
var_dump($foo ?: 'bar'); // 'bar' (PHP Notice: Undefined variable: foo ...) | |
$foo = 'foo'; | |
var_dump($foo ?? 'bar'); // 'foo' | |
var_dump($foo ?: 'bar'); // 'foo' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$finder = PhpCsFixer\Finder::create() | |
->exclude('vendor') | |
->in(__DIR__); | |
return PhpCsFixer\Config::create() | |
->setRules([ | |
'@PSR1' => true, | |
'@PSR2' => true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2' | |
services: | |
transmission-vpn: | |
container_name: transmission-vpn | |
image: phlak/openvpn | |
ports: | |
- '9091:9091' | |
- '6771:6771' | |
volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<ruleset | |
name="My first PHPMD rule set" | |
xmlns="http://pmd.sf.net/ruleset/1.0.0" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0 http://pmd.sf.net/ruleset_xml_schema.xsd" | |
xsi:noNamespaceSchemaLocation="http://pmd.sf.net/ruleset_xml_schema.xsd" | |
> | |
<description> | |
<rule ref="rulesets/cleancode.xml"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.switcher-box-layout { | |
background-color: #323030; | |
border-radius: 4px; | |
box-shadow: 0 2px 8px rgba(24, 28, 32, .8); | |
color: #AAA; | |
font-family: Ubuntu, sans-serif; | |
margin-top: 100px; | |
overflow: hidden; | |
} |