Skip to content

Instantly share code, notes, and snippets.

View 5a494d's full-sized avatar
🌴
On vacation

5a494d 5a494d

🌴
On vacation
View GitHub Profile
@5a494d
5a494d / .bowerrc
Created December 24, 2014 03:10
.bowerrc
{
"directory": "www/vendor/"
}
@5a494d
5a494d / Preferences.sublime-settings
Last active August 29, 2015 14:12
sublime-text-3_settings
{
"color_scheme": "Packages/Theme - Spacegray/base16-eighties.dark.tmTheme",
"ignored_packages":
[
"Vintage"
],
"tab_size" : 2,
"translate_tabs_to_spaces" : true,
"highlight_line" : true,
"line_padding_top": 5,
@5a494d
5a494d / eclipse.ini
Last active August 29, 2015 14:12
eclipse.ini
-vm /opt/java/jre/lib/amd64/server/libjvm.so
-startup
plugins/org.eclipse.equinox.launcher_1.3.0.v20140415-2008.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.gtk.linux.x86_64_1.1.200.v20140603-1326
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
-showsplash
@5a494d
5a494d / ffmpeg-mp4.sh
Last active August 29, 2015 14:12
ffmpeg tools
#!/bin/bash
# Video are resized to 640x360 with a bitrate of 345k.
ffmpeg -i input.mov -acodec libfaac -ab 96k -vcodec libx264 -vpre slower -vpre main -level 21 -refs 2 -b 345k -bt 345k -threads 0 -s 640x360 output.mp4
@5a494d
5a494d / .gitignore
Created December 29, 2014 01:22
.gitignore-play
logs
project/project
project/target
target
tmp
@5a494d
5a494d / npm-proxy.sh
Created March 10, 2015 21:02
npm-proxy.sh
#!/bin/bash
echo "Configurating proxy server"
npm config set proxy http://proxy.company.com:8080
npm config set https-proxy http://proxy.company.com:8080
echo "Done !"
@5a494d
5a494d / User.sublime-keymap
Last active May 11, 2016 16:50
PersonalSublimeConfig
[
{ "keys": ["ctrl+k" ], "command": "toggle_side_bar" },
{ "keys": ["ctrl+b"], "command": "toggle_menu"},
{ "keys": ["ctrl+alt+i"], "command": "increase_font_size" },
{ "keys": ["ctrl+alt+d"], "command": "decrease_font_size" },
]
@5a494d
5a494d / s1.xml
Created October 9, 2015 22:57 — forked from davybrion/s1.xml
code snippet for "Hosting a Node.js site through Apache" post
<VirtualHost 109.74.199.47:80>
ServerAdmin [email protected]
ServerName thatextramile.be
ServerAlias www.thatextramile.be
ProxyRequests off
<Proxy *>
Order deny,allow
Allow from all
@5a494d
5a494d / .gitignore
Created October 20, 2015 21:49
latex
*.aux
*.glo
*.idx
*.log
*.toc
*.ist
*.acn
*.acr
*.alg
*.bbl
@5a494d
5a494d / mount-iso
Created October 27, 2015 06:26
custom command line
#!/bin/bash
#
# To use: mount-iso [source] [target]
#
sudo mount -t iso9660 -o loop $1 $2