Organizing posts

James Peret 9 years ago
parent
commit
b9df2a440b

+ 11 - 3
_posts/2015-05-07-hello-world.markdown

@@ -1,11 +1,19 @@
1 1
 ---
2 2
 layout: post
3
-title:  "Hello World"
3
+title:  "Hello World v2"
4 4
 date:   2015-05-07 20:34:46
5 5
 categories: jekyll update
6 6
 ---
7
-Just testing out my new blog plattaform. It took me about 2 hours to get this blog up and running a one of my current droplets in [Digital Ocean](http://digitalocean.com). It was a fun process.
7
+Just testing out my new [Jekyll](http://jekyllrb.com/) blog app. It took me about 2 hours to get this blog up and running on one of my current droplets in [Digital Ocean](http://digitalocean.com). It was a fun process. I can write in my text editor using *markdown* and then push my changes to the server with *git*. The server then compiles and creates a static version of the website.
8 8
 
9
-Now comes the fun part of actually creating my new blog. The ideia with this is to create a place where i can actually write down my notes about programming and startups.
9
+Now comes the fun part of actually creating my new blog. The ideia with this is to have a place to write down my notes and adventures about programming, design and startups.
10 10
 
11 11
 Currently i'm working on [Avalanche Network](http://avalanche.network), a plataform for crowdsourcing task lists.
12
+
13
+I have been doing a lot of cool experiments for __Avalanche__ that need to be shared with the world. 
14
+
15
+In the past few weeks I played around with some realy cool javscript frameworks like [Famo.us](http://famo.us), [Ionic](http://ionicframework.com) and [AngularJS](https://angularjs.org/). On the server side, I have been experimenting with realtime messaging with web sockets using [Faye](http://faye.jcoglan.com/) and I'm also creating a  API with [Ruby on Rails](http://rubyonrails.org/).
16
+
17
+Besides programming, i have some other cool jobs going on like the project for the new [Endossa](http://endossa.com) store's front facade and the __Flux 324__ opening and closing credits animation.
18
+
19
+

+ 13 - 0
_posts/2015-05-07-managing-ssh-keys.markdown

@@ -0,0 +1,13 @@
1
+---
2
+layout: post
3
+title:  "Managing SSH Keys"
4
+date:   2015-05-07 20:34:46
5
+categories: jekyll update
6
+---
7
+
8
+Managing **SSH Keys** can be a pain. So i found a way to organize my keys and send them to servers whenever need.
9
+
10
+To copy a **SSH Key** from your local machine to the remote machine (server), run the following command:
11
+
12
+	 cat ~/.ssh/id_rsa.pub | ssh <user>@<hostname> 'cat >> .ssh/authorized_keys && echo "Key copied"'
13
+

+ 0 - 25
_posts/2015-05-07-welcome-to-jekyll.markdown

@@ -1,25 +0,0 @@
1
----
2
-layout: post
3
-title:  "Welcome to Jekyll!"
4
-date:   2015-05-07 20:34:46
5
-categories: jekyll update
6
----
7
-You’ll find this post in your `_posts` directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run `jekyll serve`, which launches a web server and auto-regenerates your site when a file is updated.
8
-
9
-To add new posts, simply add a file in the `_posts` directory that follows the convention `YYYY-MM-DD-name-of-post.ext` and includes the necessary front matter. Take a look at the source for this post to get an idea about how it works.
10
-
11
-Jekyll also offers powerful support for code snippets:
12
-
13
-{% highlight ruby %}
14
-def print_hi(name)
15
-  puts "Hi, #{name}"
16
-end
17
-print_hi('Tom')
18
-#=> prints 'Hi, Tom' to STDOUT.
19
-{% endhighlight %}
20
-
21
-Check out the [Jekyll docs][jekyll] for more info on how to get the most out of Jekyll. File all bugs/feature requests at [Jekyll’s GitHub repo][jekyll-gh]. If you have questions, you can ask them on [Jekyll’s dedicated Help repository][jekyll-help].
22
-
23
-[jekyll]:      http://jekyllrb.com
24
-[jekyll-gh]:   https://github.com/jekyll/jekyll
25
-[jekyll-help]: https://github.com/jekyll/jekyll-help