Skip to content

Instantly share code, notes, and snippets.

View hurricanerainbow's full-sized avatar

Aricana Managwan Pad8gi hurricanerainbow

  • -
  • 22:23 (UTC -04:00)
View GitHub Profile
@DaveMcW
DaveMcW / gist:943cfc499eea5921fd3064ce7a9052aa
Last active May 27, 2021 16:17
Blue Circuits with 8 Beacons
0eNq9fdtuHUeS7a8c6Jka5P3Sj/MbA6MhSzxuYiRKoChjehr+91Nb9GnXtquY6yLyzZatXBlRtSKicq+M+Nebnz9+u/3ycHf/+OZv/3pz9/7z/dc3f/uvf735evfL/buPlz97/OeX2zd/e3P3ePvpzc2b+3efLv/25eHz+9uvX+/uf3n77f7u8c1vN2/u7j/c/s+bv8Xffrp5c3v/ePd4d/u01Pd/+eff7799+vn2Yfsf/r3I7f98edgWefv48O7+65fPD49vf779+LiBfPn8dfvrn+8v8NuSb0sq/1Fv3vxz+8c6w3/UDe3D3cPt+6f/J/128xeQpIBUEiSblkQEpJiWQCBVAUmku5oCkkmQbloCuWuYlkAgUwEJpLtiUFAiixJNWyCHxWTagqEorI+D9ZhC+zhZlGragnmsmbZgKArzY2M9plA/dhZlmrZAHkvBtAVDUbgf6XyvcD+yCT9l0xbMY8W0BUORuM/m/CRxn036qZu2YB4bpi0YisR9Nu9nifts3s/RtAXyWE6mLRiKwv3A5v2scD+weT9X0xbMY820BUNRuB/YvJ8V7gc27+dp2oJ9UQbTFgxF4X5g835RuB/YvF+yaQvmsWLagqFI3GfzfpG4z+b90k1bMI8N0xYMReI+m/erxH0279do2oIdWiXTFgxF4H6ebN6vRUFh836tpi2Yx5ppC4bSFRQ279ehoLB5v07TFshjLZi2YChRQWHzfksKCpv3WzZtwTxWTFswFIn79Bm/xH0277du2oJ5bJi2YCgS99m83yXus3m/R9MWyGM9mbZgKAr3B5v3u8L9web9Xk1bMI810xYMReH+YPN+V7g/2Lzfp2kL9mtlMG3BUBTuDzbvD4X7g837I5u2YB4rpi0YisR9Nu8Pifts3h/dtAXz2DBtwVAk7rN5f0rcZ/P+jKYtmCAimbZgKAr3O5v3p8L9zub9WU1bMI810xYMReF+Z/P+VLjf2bw/p2kLpogIwTQGhFHY3wutVFLo3ysNk01rQKcV0xoQRoo
@hurricanerainbow
hurricanerainbow / gist:3422129
Created August 22, 2012 03:47
PHP Short Tag Removal
replace "<\?=\$(.*)\?>" to "<?php echo \$\1; ?>"
and then "<\?(?!php)" to "<?php"
@joaopizani
joaopizani / .screenrc
Created May 17, 2012 11:55
A killer GNU Screen Config
# the following two lines give a two-line status, with the current window highlighted
hardstatus alwayslastline
hardstatus string '%{= kG}[%{G}%H%? %1`%?%{g}][%= %{= kw}%-w%{+b yk} %n*%t%?(%u)%? %{-}%+w %=%{g}][%{B}%m/%d %{W}%C%A%{g}]'
# huge scrollback buffer
defscrollback 5000
# no welcome message
startup_message off
@przemoc
przemoc / almost-endless-history.sh
Created February 2, 2012 23:47
How not to lose your BASH history (and make it more compact)
# Add following lines to:
# - /etc/bash.bashrc
# - /etc/profile
export HISTSIZE=1000000
export HISTFILESIZE=$HISTSIZE
export HISTCONTROL=ignoredups