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 is my first code on github, what a fun! | |
// i found this code on pastebin: http://pastebin.com/F7QYajdu | |
// what do you guess it's doing | |
[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]][([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]]((![]+[])[+!+[]]+(![]+[])[!+[]+!+[]]+(!![]+[])[!+[]+ |
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><head></head><body><pre><?php | |
/* | |
* This is a login-with-google example, you should have credentials for use the api. | |
* This isn't store the access token, just retrieves the user information once for store or just display. | |
*/ | |
require_once 'google-api-php-client/vendor/autoload.php'; | |
$redirect_uri = 'http://127.0.0.1:3000/'; |
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
function log(a){console.log(a);};log("\n\n--- start ---\n"); | |
function printmatrix(m){ | |
var ki=""; | |
if( ( typeof m ) === "number" ){ | |
return m; | |
} | |
ki+="{"; | |
for(var i=0;i<m.length;i++){ | |
ki+=(i==0?" ":", "); | |
if( ( typeof m[i] ) === "number" ){ |
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
<!-- | |
Szempontok: | |
- ne befolyásolja az eredményt, hogy hányan vannak | |
- ha valakinek csak kevés pontja van, az ne húzza le csoportét | |
#mostvizsgázomjele2ből | |
#z-trafó |
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
""" | |
Decode all QR-code images in a directory. | |
Dependencies: | |
sudo pip install pypng | |
sudo apt-get update | |
sudo apt-get install libzbar-dev | |
sudo pip install zbar | |
sudo pip install pillow | |
sudo pip install qrtools | |
""" |
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
https://www.kamatera.com/Products/250/Pricing | |
https://www.ovh.com/us/vps/vps-ssd.xml | |
https://www.interserver.net/ | |
https://www.citycloud.com/pricing-gen-one/ | |
https://azure.microsoft.com/en-us/pricing/details/virtual-machines/linux/ | |
https://cloud.google.com/preemptible-vms/ | |
https://www.linode.com/pricing | |
https://www.exoscale.ch/pricing/#/compute/medium | |
https://zippycloud.com/#1#page-pricing |
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
# acpi=off noapic | |
setterm -blength 0 | |
echo "deb http://archive.debian.org/debian squeeze main" >> /etc/apt/sources.list | |
apt-get install gdm | |
startx |
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 | |
$form = array( | |
array( | |
'question' => 'First section', // title of the following section | |
'type' => 'section-header', | |
'hint' => '', | |
), | |
array( | |
'question' => 'Név', |
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 | |
// kill boolean | |
// dbcolumn keeped | |
if($_SERVER['REQUEST_METHOD']=='POST'){ | |
header('Content-Type: text/plain; charset=utf-8'); | |
$csv = $_POST['csv']; | |
$csv = trim($csv); // cut whitespaces |
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
#include <stdio.h> | |
int main(){ | |
int i,a=0; | |
for( i=0; i<3; i++){ | |
if(i%3) | |
if(i%2) | |
printf("%d\n", (a = a+=2) ); | |
else |
OlderNewer