Skip to content

Instantly share code, notes, and snippets.

@atulcj
atulcj / .htaccess
Created May 1, 2020 08:19 — forked from ScottPhillips/.htaccess
Common .htaccess Redirects
#301 Redirects for .htaccess
#Redirect a single page:
Redirect 301 /pagename.php http://www.domain.com/pagename.html
#Redirect an entire site:
Redirect 301 / http://www.domain.com/
#Redirect an entire site to a sub folder
Redirect 301 / http://www.domain.com/subfolder/
@atulcj
atulcj / InkscapeBatchConvert.bat
Created April 23, 2019 09:28 — forked from JohannesDeml/README.md
Batch converter for windows using inkscape and the command line
@Echo off
set "inkscapePath=C:\Program Files\Inkscape\inkscape.exe"
set /a count=0
set validInput1=svg
set validInput2=pdf
set validInput3=eps
set validOutput1=eps
set validOutput2=pdf
set validOutput3=png
@atulcj
atulcj / arduino_fastest_finger.ino
Last active November 29, 2018 01:01 — forked from jrmedd/awkward_arduino_fastest_finger.ino
Code for Awkward Arduino workshop – fastest finger.
/*
AWKWARD ARDUINO – FASTEST FINGER
*/
/*
We're going to connect LEDs to pins 3, 4, and 5.
These will act as winning lightts for the green
and blue team, and the red light that tells you
when to press!
*/