My gosh. It's shared intellectual property! Don't abuse it. I feel abused. You did so without permission. You owned part of it. I have to protect the property I partially own. Although you did modified it, what you did was include it. Inclusion. Yes. If I took a photo of you and added a backdrop of offensive material you will feel abused. It's not remixing, you added onto the entire thing. This shared property is owned by both of us. I still own part of it. I could share an idea with you, and use that idea inappropriately, making you feel abused. You own part of it. I should respect what you and I own. So should you.
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
clear | |
echo "" | |
echo " ---- CHECKING MD5 ---- " | |
echo "" | |
echo "" | |
SUM=$(openssl md5 "$2") | |
BFO="MD5($2)= " | |
echo "MD5 TO CHECK WITH" | |
echo "----------------------------------" | |
echo "" |
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
++++++++++[>+++++++>++++++++++>+++<<<-]>-----.>+++++++++.-----------.-+++++++++++++++++.---.++++.--------------.>++.<<++.>+++.+++++++++++++.--------------------.>.<---------------------------------.++++++++++++++++++++++++++++++++++++++++++++++++++++.------------.---.---.+++++++++++++++++++.-------..-----.----.++++++++++++++.----------.+++++.-----------. |
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
// | |
// Run | |
// node server.js > server.log | |
// OR | |
// forever -o server.log -e server.log start server.js | |
// OR | |
// node forever.js > server.log | |
// | |
/* | |
forever.js: |
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
,[>,]<[.<] |
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 | |
// set_time_limit(3600); | |
$url = $_GET["url"]; | |
if ($url) { | |
$width = $_GET["w"]; | |
$allowed = array('jpg','gif','png'); | |
$pos = strrpos($url, "."); | |
$str = substr($url,($pos + 1)); | |
$ch = curl_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
// Bug fixes for current versions. | |
// | |
// This server will start a bash shell and expose it | |
// over socket.io to a browser. See ./term.html for the | |
// client side. | |
// | |
// You should probably: | |
// | |
// npm install socket.io |
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/sh | |
# fortune.sh 10 print <- prints 10 fortunes on paper. | |
# fortune.sh 12 <- prints 12 fortunes to cat. | |
printf "" > tmp.txt | |
for i in $(eval echo {0..$1 }) | |
do | |
printf "\n" >> tmp.txt | |
fortune >> tmp.txt |
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
@import url(//fonts.googleapis.com/css?family=Lato:400,700,900,400italic,700italic,900italic); | |
/* Reset.css */ html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0} | |
/* Stuff under public domain: */ | |
*, *:before, *:after { | |
box-sizing: border-box; | |
} | |
*:focus { |
OlderNewer