This file contains 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 | |
error_log(__METHOD__ . ':' . __LINE__); // debug | |
error_log(__METHOD__ . ':' . __LINE__ . ': message'); // debug | |
error_log(__METHOD__ . ':' . __LINE__ . ': gettype($value) = ' . gettype($value)); // debug | |
error_log(__METHOD__ . ':' . __LINE__ . ': get_class($object) = ' . get_class($object)); // debug |
This file contains 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
/.idea/ |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
</head> | |
<body> | |
<script type="text/javascript" src="oxcow.js"></script> | |
<script> | |
var game = new Game(); | |
game.init(); |
This file contains 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
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
</head> | |
<body> | |
<textarea id="input"></textarea> | |
<label>Offset (ms): <input id="offset"/></label> | |
<label>Factor: <input id="factor"/></label> | |
<button id="resize">resize</button> | |
<textarea id="output"></textarea> |
This file contains 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
* text eol=lf |
This file contains 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
/data/ |
This file contains 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
# | |
# git aliases | |
# | |
# USAGE: | |
# | |
# $ mkdir ~/github | |
# $ cd ~/github | |
# $ git clone [email protected]:5ad1168a4839d9bb9f4ec99c7d0ea949.git gitaliases | |
# | |
# Then add these lines to your .bashrc: |
This file contains 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 | |
# USAGE: | |
# - clone to ~/GitHub/screensaver-layout | |
# - edit ~/.config/lxsession/LXDE/autoload | |
# - add line: @~/GitHub/screensaver-layout/screensaver-layout.sh | |
# - save and exit | |
# - relogin to desktop environment | |
SYS_LAYOUTS=$(setxkbmap -query | grep 'layout' | awk '{ print $2 }') |
This file contains 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 | |
# Your wallpapers folder | |
picturesPath=/home/ivan/Wallpapers | |
# needed to be run from cron | |
export DISPLAY=:0 | |
# change `username` with your user name | |
export XAUTHORITY=/home/ivan/.Xauthority |
OlderNewer