I hereby claim:
- I am henrytriplette on github.
- I am henrytriplette (https://keybase.io/henrytriplette) on keybase.
- I have a public key whose fingerprint is 08E3 5739 0B8B 03E3 B8EC C1B2 71AD 1635 110F 0E55
To claim this, I am signing this object:
/* -------------------------------------------------- */ | |
// With Three.js transparent backgound enabled (alpha)// | |
// and model white textures on dark background // | |
// sometimes artifacts pop up on the edges. // | |
// To avoid that, slightly raise the clearcolor // | |
// opacity instead of disabilng antialias. // | |
/* -------------------------------------------------- */ | |
// Standard Renderer | |
renderer = new THREE.WebGLRenderer( { |
// sending to sender-client only | |
socket.emit('message', "this is a test"); | |
// sending to all clients, include sender | |
io.emit('message', "this is a test"); | |
// sending to all clients except sender | |
socket.broadcast.emit('message', "this is a test"); | |
// sending to all clients in 'game' room(channel) except sender |
Replace "C:\Program Files (x86)\" | |
with "C:\Progra~2\" in cmd when launcing check_submission.exe |
I hereby claim:
To claim this, I am signing this object:
for /f "Tokens=*" %f in ('cmd /c "echo %cd%& dir /l/b/ad/s"') do (for /f "Tokens=*" %g in ('dir /l/b/a-d "%f"') do (rename "%f"\"%g" "%g"))
:: Rename all directories to lowecase. Recursive - Cmd
for /F %a in ('dir /L /B') do ren %a %a
sudo apt-get install automake autoconf pkg-config libcurl4-openssl-dev libjansson-dev libssl-dev -y
sudo apt-get update -y
sudo apt-get install git -y
sudo apt-get install -y --force-yes autoconf automake libtool
sudo apt-get install screen -y
sudo apt-get install build-essential -y
mysql.exe -u root -p -s -N -e "SHOW DATABASES" | for /F "usebackq" %D in (`findstr /V "information_schema performance_schema"`) do mysqldump %D -u root -p > D:\Backup\MySQL\%D.sql
First create empty database, then import the dump file into the newly created db.