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 sh | |
touch -t 202001010000 /tmp/timestamp && \ | |
find . ! -newer /tmp/timestamp -delete |
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
- name: key | |
apt_key: | |
keyserver: keyserver.ubuntu.com | |
id: 5072E1F5 | |
- name: repository | |
copy: | |
content: deb http://repo.mysql.com/apt/debian stretch mysql-5.7 mysql-tools | |
dest: /etc/apt/sources.list.d/mysql.list |
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
! to match gnome-terminal "Linux console" scheme | |
! foreground/background | |
URxvt*background: #000000 | |
URxvt*foreground: #FFFFFF | |
! black | |
URxvt.color0 : #2E3436 | |
URxvt.color8 : #555753 | |
! red | |
URxvt.color1 : #CC0000 | |
URxvt.color9 : #EF2929 |
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 | |
$type = 'SHA512'; | |
$hashes = [ | |
'MD5' => 128, | |
'SHA1' => 160, | |
'SHA256' => 256, | |
'SHA512' => 512, | |
]; |
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
alias xs="xscreensaver-command --lock" | |
alias date-to-identifier="date +'%Y%m%d%H%M%S'" |
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
network={ | |
ssid="Name of the Wireless Network" | |
psk="password" | |
} |
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
" colors | |
syntax on | |
colorscheme wombat256mod | |
" mouse | |
set mouse=a | |
" search | |
set incsearch hlsearch ignorecase | |
" spaces | |
set list listchars=eol:$,tab:>-,trail:~,extends:>,precedes:< | |
" lines |
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
#!/bin/bash | |
startx -- -nolisten tcp :0 vt7 |
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 | |
chdir(__DIR__); | |
require 'vendor/autoload.php'; | |
$suiteA = new PHPUnit_Framework_TestSuite(); | |
$suiteA->addTestFiles([ | |
'./module/PackageA/test/DumbTest.php', |
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 | |
namespace One | |
{ | |
class Foo | |
{ | |
} | |
} | |
namespace Two |