Skip to content

Instantly share code, notes, and snippets.

View juanmanuelarias's full-sized avatar

Juan Manuel Arias juanmanuelarias

View GitHub Profile
@juanmanuelarias
juanmanuelarias / bootstrap-ec2.sh
Created June 15, 2017 08:21
Bootstrap Script for EC2
#!/bin/bash
yum install httpd -y
yum update -y
service httpd start
chkconfig httpd on
echo "<html><h1>Hello World!</h1></html>" > /var/www/html/index.html
@juanmanuelarias
juanmanuelarias / .sublime-keymap
Created February 20, 2014 00:21
My Sublime Settings
[
{ "keys": ["ctrl+alt+c"], "command": "close_all" },
{ "keys": ["ctrl+7"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+shift+7"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["ctrl+shift+r"], "command": "reindent" , "args": { "single_line": false } }
]
@juanmanuelarias
juanmanuelarias / bold.sublime-snippet
Last active August 11, 2021 05:08
Code snippets for Sublime Text to create a markdown shortcuts.To use it just add the ".sublime-snippet" files inside "Packages/User" or a subfolder "Packages/User/md"
<snippet>
<content><![CDATA[
__$1__$2
]]></content>
<tabTrigger>__</tabTrigger>
<scope>text.html.markdown</scope>
</snippet>