Couldn't find the text of this for a while...
This file has been truncated, but you can view the full file.
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
=>> Building lang/pocl | |
build started at Fri Dec 15 15:33:31 CET 2017 | |
port directory: /usr/ports/lang/pocl | |
package name: pocl-0.14 | |
building for: FreeBSD build 11.1-RELEASE-p5 FreeBSD 11.1-RELEASE-p5 amd64 | |
maintained by: [email protected] | |
Makefile ident: $FreeBSD: head/lang/pocl/Makefile 440691 2017-05-12 17:08:26Z rezny $ | |
Poudriere version: 3.2.99.20171204_1 | |
Host OSVERSION: 1101001 | |
Jail OSVERSION: 1101001 |
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
aptitude remove vim vim-runtime gvim | |
aptitude build-dep vim | |
git clone https://github.com/vim/vim.git | |
cd vim/src | |
./configure --with-features=huge \ | |
--enable-multibyte \ | |
--enable-rubyinterp \ | |
--enable-pythoninterp \ | |
--with-python-config-dir=/usr/lib/python2.7/config \ | |
--enable-perlinterp \ |
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
server { | |
listen 80 default_server; | |
listen [::]:80 default_server; | |
server_name _; | |
return 410; | |
log_not_found off; | |
} |
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
on run {input, parameters} | |
if (count of input) > 0 then | |
tell application "System Events" | |
set runs to false | |
try | |
set p to application process "iTerm" | |
set runs to true | |
end try | |
end tell | |
tell application "iTerm" |
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
sudo lsof -i :80 |
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
brew install macvim --HEAD --with-cscope --with-lua --override-system-vim --with-luajit --with-python |
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
imap <expr> <tab> emmet#expandAbbrIntelligent("\<tab>") |
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
sed -n '1h;1!H;${g;s/search/replace/;p;}' |
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 | |
function genhash ($url) { | |
$hash = "Mining PageRank is AGAINST GOOGLE'S TERMS OF SERVICE. Yes, I'm talking to you, scammer."; | |
$c = 16909125; | |
$length = strlen($url); | |
$hashpieces = str_split($hash); | |
$urlpieces = str_split($url); | |
for ($d = 0; $d < $length; $d++) { | |
$c = $c ^ (ord($hashpieces[$d]) ^ ord($urlpieces[$d])); |
NewerOlder