evernote_link_extractor 0.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +10 -0
- data/.rspec +2 -0
- data/.travis.yml +4 -0
- data/CODE_OF_CONDUCT.md +13 -0
- data/Gemfile +4 -0
- data/README.md +62 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/evernote_link_extractor +27 -0
- data/bin/setup +7 -0
- data/evernote_link_export_1441461770.csv +218 -0
- data/evernote_link_export_1441462721.csv +218 -0
- data/evernote_link_export_1441463723.csv +2 -0
- data/evernote_link_export_1441463860.csv +2 -0
- data/evernote_link_export_1441464002.csv +2 -0
- data/evernote_link_extractor.gemspec +27 -0
- data/lib/evernote_link_extractor.rb +16 -0
- data/lib/evernote_link_extractor/csv_builder.rb +22 -0
- data/lib/evernote_link_extractor/file_list.rb +59 -0
- data/lib/evernote_link_extractor/helper.rb +19 -0
- data/lib/evernote_link_extractor/link_list.rb +50 -0
- data/lib/evernote_link_extractor/runner.rb +53 -0
- data/lib/evernote_link_extractor/version.rb +3 -0
- metadata +141 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: ffb1a679afeaf006e556a7ad6258c9195e3a60c7
|
4
|
+
data.tar.gz: 1e9357d121fe52cca732dcad23bcb8c57bb2f25a
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 47b35f883ae8c481049a1ec34e588e15a0132fe310da412705277b5ab6a78f6eab11ceba2729954a669177ab3c5af65652190c5d9db7e9754d1b4f2a0ea2a5f7
|
7
|
+
data.tar.gz: cfb5ddf19ad3cf2866dadcb9563ed572cc68902b47b57bad9f153700be3778c5928e1737799c6f19a02eea0358aaf8cd0eaa7557f42ebf379edf5cc49b27c3d5
|
data/.gitignore
ADDED
data/.rspec
ADDED
data/.travis.yml
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Contributor Code of Conduct
|
2
|
+
|
3
|
+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
|
4
|
+
|
5
|
+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
|
6
|
+
|
7
|
+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
|
8
|
+
|
9
|
+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
|
10
|
+
|
11
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
|
12
|
+
|
13
|
+
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
|
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
# EvernoteLinkExtractor
|
2
|
+
|
3
|
+
If you are planning to remove Evernote from your system due to any reason, you might want to keep the links you collected
|
4
|
+
in your notes. This little gem will create a CSV file with a title and link of your collected URL's. It assumes you
|
5
|
+
have exported your notes as html files. You can easily do this by following these instructions (also shown
|
6
|
+
when you run the program):
|
7
|
+
|
8
|
+
* Open the Evernote programm
|
9
|
+
* click Notes in the navigation (on the left)
|
10
|
+
* klick ctrl+a to mark all Notes
|
11
|
+
* klick File > Export Notes... in the top navigation
|
12
|
+
* choose HTML as Format:
|
13
|
+
* choose a directory on a hard drive and click save
|
14
|
+
|
15
|
+
A folder with the extension .enex is being created. All your Notes are stored there as HTML files.
|
16
|
+
|
17
|
+
## This is Alpha software
|
18
|
+
|
19
|
+
I created this little gem out of the need to somehow extract the Evernote URL's from my notes. Please be aware, that this is Alpha software and may produce bugs. Use it at your onw risk ;-).
|
20
|
+
|
21
|
+
## Installation
|
22
|
+
|
23
|
+
Add this line to your application's Gemfile:
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
gem 'evernote_link_extractor'
|
27
|
+
```
|
28
|
+
|
29
|
+
And then execute:
|
30
|
+
|
31
|
+
$ bundle
|
32
|
+
|
33
|
+
Or install it yourself as:
|
34
|
+
|
35
|
+
$ gem install evernote_link_extractor
|
36
|
+
|
37
|
+
## Usage
|
38
|
+
|
39
|
+
When you have installed the gem, you can simply run it on the command line by typing
|
40
|
+
|
41
|
+
evernote_link_extractor
|
42
|
+
|
43
|
+
You will be asked where the folder with your exported notes html files is. After that, a CSV file will be created
|
44
|
+
in the directory wher you run the program. And that's it.
|
45
|
+
|
46
|
+
## Bugs
|
47
|
+
|
48
|
+
Please see and report any bugs to [Issues section of the Github repository](https://github.com/andywenk/evernote_link_extractor/issues)
|
49
|
+
|
50
|
+
## Wishlist
|
51
|
+
|
52
|
+
* configurable
|
53
|
+
|
54
|
+
## Development
|
55
|
+
|
56
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
57
|
+
|
58
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
59
|
+
|
60
|
+
## Contributing
|
61
|
+
|
62
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/andywenk/evernote_link_extractor. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "evernote_link_extractor"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start
|
@@ -0,0 +1,27 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'evernote_link_extractor'
|
4
|
+
|
5
|
+
info = <<INFO
|
6
|
+
|
7
|
+
+++ Export Evernote links +++
|
8
|
+
|
9
|
+
This script is going to create a CSV file from all the URL's with title from your exported HTML files creted
|
10
|
+
with Evernote. Please note that this is tested with Evernote Version 6.1 on Mac OS X.
|
11
|
+
|
12
|
+
You need to export your Evernote notes first to HTML. To do so, follow these steps:
|
13
|
+
|
14
|
+
* Open the Evernote programm
|
15
|
+
* click Notes in the navigation (on the left)
|
16
|
+
* klick ctrl+a to mark all Notes
|
17
|
+
* klick File > Export Notes... in the top navigation
|
18
|
+
* choose HTML as Format:
|
19
|
+
* choose a directory on a hard drive and click save
|
20
|
+
|
21
|
+
A folder with the extension .enex is being created. All your Notes are stored there as HTML files.
|
22
|
+
|
23
|
+
INFO
|
24
|
+
|
25
|
+
print info
|
26
|
+
|
27
|
+
EvernoteLinkExtractor.run
|
data/bin/setup
ADDED
@@ -0,0 +1,218 @@
|
|
1
|
+
title,link
|
2
|
+
#279 Understanding the Asset Pipeline - RailsCasts,http://railscasts.com/episodes/279-understanding-the-asset-pipeline
|
3
|
+
$ cheat rvm,http://cheat.errtheblog.com/s/rvm/
|
4
|
+
14 Customer Feedback Tools for Small Business | Practical eCommerce,http://www.practicalecommerce.com/articles/2827-14-Customer-Feedback-Tools-for-Small-Business
|
5
|
+
30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X,http://www.cyberciti.biz/tips/bash-aliases-mac-centos-linux-unix.html
|
6
|
+
30 Shredders In One Solo Lesson,http://www.guitarmasterclass.net/ls/30-Shredders-In-One-Solo/
|
7
|
+
30 Shredders In One Solo! - YouTube,https://www.youtube.com/watch?NR=1&v=iaAkWy55V3A
|
8
|
+
500 - Internal Server Error | Flickr - Photo Sharing!,http://www.flickr.com/photos/girliemac/6509400855/in/set-72157628409467125/
|
9
|
+
7 Ways to Decompose Fat ActiveRecord Models - Code Climate Blog,http://blog.codeclimate.com/blog/2012/10/17/7-ways-to-decompose-fat-activerecord-models/
|
10
|
+
A programmer’s guide to JavaScript by Dr. Axel Rauschmayer,http://jsguide.org/
|
11
|
+
,http://www.csee.umbc.edu/about/
|
12
|
+
Acorn: yet another JavaScript parser,http://marijnhaverbeke.nl/blog/acorn.html
|
13
|
+
acorn/acorn.js at master · marijnh/acorn · GitHub,https://github.com/marijnh/acorn/blob/master/acorn.js
|
14
|
+
afterRender() callback in Backbone.js Views,http://fahad19.tumblr.com/post/28158699664/afterrender-callback-in-backbone-js-views
|
15
|
+
All you need to know about CSS Transitions | Alex MacCaw,http://blog.alexmaccaw.com/css-transitions?utm_source=html5weekly&utm_medium=email
|
16
|
+
,http://rethinkdb.com/docs/install
|
17
|
+
AngularJS: Tutorial,http://docs.angularjs.org/tutorial/
|
18
|
+
,https://id.apache.org/
|
19
|
+
,https://translate.apache.org/de/CouchDB/
|
20
|
+
,https://blogs.apache.org/roller-ui/login.rol
|
21
|
+
,http://wilderness.apache.org/archives/
|
22
|
+
aziz/PlainTasks · GitHub,https://github.com/aziz/PlainTasks
|
23
|
+
Backbone.js Tutorials,http://backbonetutorials.com/
|
24
|
+
Backbone.js,http://backbonejs.org/
|
25
|
+
Backbone.js: Getting The Model For A Clicked Element | ThoughtStream.new :derick_bailey,http://lostechies.com/derickbailey/2011/10/11/backbone-js-getting-the-model-for-a-clicked-element/
|
26
|
+
backbonetutorials/examples/modular-backbone at gh-pages · thomasdavis/backbonetutorials,https://github.com/thomasdavis/backbonetutorials/tree/gh-pages/examples/modular-backbone
|
27
|
+
BASH Programming - Introduction HOW-TO,http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html
|
28
|
+
Beginning Ember.js on Rails: Part 1 :: Cerebris,http://www.cerebris.com/blog/2012/01/24/beginning-ember-js-on-rails-part-1/
|
29
|
+
Beginning Ember.js on Rails: Part 2 :: Cerebris,http://www.cerebris.com/blog/2012/01/26/beginning-ember-js-on-rails-part-2/
|
30
|
+
Beginning Ember.js on Rails: Part 3 :: Cerebris,http://www.cerebris.com/blog/2012/01/31/beginning-ember-js-on-rails-part-3/
|
31
|
+
Beginning Ember.js on Rails: Part 3 :: Cerebris,http://www.cerebris.com/blog/2012/01/31/beginning-ember-js-on-rails-part-3/
|
32
|
+
BELBIN®: The home of Belbin Team Roles,http://www.belbin.com/
|
33
|
+
bestiejs/lodash,https://github.com/bestiejs/lodash
|
34
|
+
Border-radius: create rounded corners with CSS! - CSS3 . Info,http://www.css3.info/preview/rounded-border/
|
35
|
+
Bottle: Python Web Framework — Bottle 0.12-dev documentation,http://bottlepy.org/docs/dev/
|
36
|
+
BSON - Binary JSON,http://bsonspec.org/#/specification
|
37
|
+
Bundesgesetzblatt online,http://www.bgbl.de/Xaver/start.xav?startbk=Bundesanzeiger_BGBl
|
38
|
+
"Camping, a Microframework",http://camping.io/
|
39
|
+
Capistrano recipes: deploy,http://capitate.rubyforge.org/recipes/deploy.html
|
40
|
+
Check_MK - The Official Documentation,http://mathias-kettner.de/checkmk.html
|
41
|
+
Chrome 26 Beta: Verbesserte Rechtschreibkorrektur und Template-Unterstützung - Golem.de,http://www.golem.de/news/chrome-26-beta-verbesserte-rechtschreibkorrektur-und-template-unterstuetzung-1302-97855.html
|
42
|
+
CodeKata: Code Kata,http://codekata.pragprog.com/2007/01/code_kata_backg.html#more
|
43
|
+
CoffeeScript Cookbook » Home,http://coffeescriptcookbook.com/
|
44
|
+
CoffeeScript Cookbook » Testing Every Element,http://coffeescriptcookbook.com/chapters/arrays/testing-every-element
|
45
|
+
CoffeeScript Love: Testing CoffeeScript in Rails,http://www.coffeescriptlove.com/2012/03/testing-coffeescript-in-rails.html?utm_source=rubyweekly&utm_medium=email
|
46
|
+
Color Output on Bash Scripts | Linux Tidbits,http://linuxtidbits.wordpress.com/2008/08/11/output-color-on-bash-scripts/
|
47
|
+
,http://people.apache.org/foaf/foafamatic.html
|
48
|
+
,https://blogs.apache.org/couchdb/
|
49
|
+
create node.js web-services in one line - — blog.nodejitsu.com,https://blog.nodejitsu.com/create-nodejs-web-services-in-one-line
|
50
|
+
CSS Architecture | Appfolio Engineering,http://engineering.appfolio.com/2012/11/16/css-architecture/
|
51
|
+
CSS Button Generator - Imageless css buttons simplified,http://www.cssbuttongenerator.com/
|
52
|
+
Cuba,http://cuba.is/
|
53
|
+
DailyJS: Backbone.js Tutorial: Build Environment,http://dailyjs.com/2012/11/29/backbone-tutorial-1/
|
54
|
+
,http://ci.couchdb.org:8888/
|
55
|
+
DataFart,http://datafart.com/
|
56
|
+
DataMapper - Documentation,http://datamapper.org/docs/
|
57
|
+
Deploying a Rails app on Nginx/Puma with Capistrano | Tommy Chheng : Shortest Path Programming,http://tommy.chheng.com/2013/01/23/deploying-a-rails-app-on-nginxpuma-with-capistrano/?utm_source=rubyweekly&utm_medium=email
|
58
|
+
Designing Better JavaScript APIs | Smashing Coding,http://coding.smashingmagazine.com/2012/10/09/designing-javascript-apis-usability/?utm_source=javascriptweekly&utm_medium=email
|
59
|
+
DevDocs/DOM Events/fullscreenchange,http://devdocs.io/dom_events/fullscreenchange
|
60
|
+
Developing Backbone.js Applications -,http://addyosmani.github.com/backbone-fundamentals/
|
61
|
+
DOM Enlightenment - Exploring the relationship between JavaScript and the modern HTML DOM,http://domenlightenment.com/
|
62
|
+
draft-ietf-httpbis-http2-02 - Hypertext Transfer Protocol version 2.0,http://tools.ietf.org/html/draft-ietf-httpbis-http2-02
|
63
|
+
"Einstein, Albert. 1920. Relativity: The Special and General Theory",http://www.bartleby.com/173/
|
64
|
+
Elastic tire demo,http://www.slideshare.net/greeneggs614/elastic-tire-demo
|
65
|
+
ElasticSearch with Tire,http://www.slideshare.net/abookyun/elasticsearch-with-tire
|
66
|
+
,https://www.eff.org/
|
67
|
+
Eloquent JavaScript: A Modern Introduction to Programming,http://eloquentjavascript.net/
|
68
|
+
Ember.js - About,http://emberjs.com/
|
69
|
+
erlang-bookmarks/ErlangBookmarks.md at master · 0xAX/erlang-bookmarks,https://github.com/0xAX/erlang-bookmarks/blob/master/ErlangBookmarks.md
|
70
|
+
erlang-bookmarks/ErlangBookmarks.md at master · 0xAX/erlang-bookmarks,https://github.com/0xAX/erlang-bookmarks/blob/master/ErlangBookmarks.md
|
71
|
+
,http://www.petekeen.net/essential-tools-for-starting-a-rails-app-in-2013
|
72
|
+
Evan Hahn,http://evanhahn.com/
|
73
|
+
,https://speakerdeck.com/bartoszopka/everything-you-never-wanted-to-know-about-javascript-numbers
|
74
|
+
,https://speakerdeck.com/bartoszopka/everything-you-never-wanted-to-know-about-javascript-numbers
|
75
|
+
,https://speakerdeck.com/bartoszopka/everything-you-never-wanted-to-know-about-javascript-numbers
|
76
|
+
Faster Websites: Crash Course on Web Performance - igvita.com,http://www.igvita.com/2013/01/15/faster-websites-crash-course-on-web-performance/
|
77
|
+
,http://travis-ci.org/rspec/rspec-expectations
|
78
|
+
File: SASS_REFERENCE,http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html
|
79
|
+
Getting Started With Express Checkout | X.commerce,https://www.x.com/developers/paypal/documentation-tools/express-checkout/integration-guide/ECGettingStarted
|
80
|
+
,http://gavinmiller.io/categories/activerecord/
|
81
|
+
GIN – Just A Kind Of Index › Cybertec - The PostgreSQL Database Company,http://www.cybertec.at/gin-just-an-index-type/
|
82
|
+
GitHub does dotfiles - dotfiles.github.com,http://dotfiles.github.com/
|
83
|
+
"good coders code, great reuse",http://www.catonmat.net/
|
84
|
+
"Gutmann method - Wikipedia, the free encyclopedia",http://en.wikipedia.org/wiki/Gutmann_method
|
85
|
+
Harmony of Dreams Come True | Brendan Eich,https://brendaneich.com/2012/10/harmony-of-dreams-come-true/?utm_source=javascriptweekly&utm_medium=email
|
86
|
+
Headius: Finding Leaks in Ruby Apps with Eclipse Memory Analyzer,http://blog.headius.com/2010/07/finding-leaks-in-ruby-apps-with-eclipse.html
|
87
|
+
Hello Backbone.js Tutorial,http://arturadib.com/hello-backbonejs/
|
88
|
+
High Performance Networking in Google Chrome - igvita.com,http://www.igvita.com/posa/high-performance-networking-in-google-chrome/
|
89
|
+
Home page of Evan Miller,http://www.evanmiller.org/
|
90
|
+
How to Create One-Time Payments Using Express Checkout | X.commerce,https://www.x.com/developers/paypal/documentation-tools/express-checkout/how-to/ht_ec-singleItemPayment-curl-etc
|
91
|
+
How to make Chrome understand the SASS/SCSS in your rails app | fonicmonkey,http://fonicmonkey.net/2013/03/25/native-sass-scss-source-map-support-in-chrome-and-rails/?utm_source=rubyweekly&utm_medium=email
|
92
|
+
How to play Zopfli with Nginx - Google Drive,https://docs.google.com/document/d/1kpfGrYda1BNhWUx-cGfc6Sv3dFaw8DgKnRIE8yHpqIY/edit
|
93
|
+
,http://www.rubymotion.com/
|
94
|
+
How to secure an Ubuntu 12.04 LTS server - Part 1 The Basics | How To | The Fan Club | dynamic design solutions,http://www.thefanclub.co.za/how-to/how-secure-ubuntu-1204-lts-server-part-1-basics
|
95
|
+
How to send email from the Linux command line - Simple Help,http://www.simplehelp.net/2008/12/01/how-to-send-email-from-the-linux-command-line/
|
96
|
+
How to take Automatic SQL Database Backup using pgAgent | PostgreSQL,http://technobytz.com/automatic-sql-database-backup-postgres.html
|
97
|
+
HTML5 Pyramid,http://helgri.github.com/HTML5-Pyramid/
|
98
|
+
HTML_CodeSniffer,http://squizlabs.github.com/HTML_CodeSniffer/?utm_source=html5weekly&utm_medium=email
|
99
|
+
igrigorik/em-synchrony,https://github.com/igrigorik/em-synchrony
|
100
|
+
7th March,http://mwholt.blogspot.com/2013/03/install-nginxphpmysql-on-os-x-mountain.html
|
101
|
+
Interactive Smooth CoffeeScript,http://autotelicum.github.com/Smooth-CoffeeScript/interactive/interactive-coffeescript.html
|
102
|
+
Interface testing: Creating a Diablo 3 bot using jRuby and Sikuli UI - Rodrigo Franco - Ruby Conference 2012,http://www.confreaks.com/videos/1309-rubyconf2012-interface-testing-creating-a-diablo-3-bot-using-jruby-and-sikuli-ui
|
103
|
+
Internet Census 2012,http://internetcensus2012.bitbucket.org/paper.html
|
104
|
+
"Internet protocol suite - Wikipedia, the free encyclopedia",http://en.wikipedia.org/wiki/Internet_protocol_suite
|
105
|
+
Introducing the Rails API Project - Literate Programming,http://blog.steveklabnik.com/posts/2012-11-22-introducing-the-rails-api-project?utm_source=hackernewsletter&utm_medium=email
|
106
|
+
Jade - Template Engine,http://jade-lang.com/
|
107
|
+
jamiew/heroku-static-site,https://github.com/jamiew/heroku-static-site
|
108
|
+
javascript - How do I get started with Node.js - Stack Overflow,http://stackoverflow.com/questions/2353818/how-do-i-get-started-with-node-js
|
109
|
+
jedtoolkit,https://github.com/jedtoolkit
|
110
|
+
jimweirich/rspec-given,https://github.com/jimweirich/rspec-given?utm_source=rubyweekly&utm_medium=email
|
111
|
+
"JSConf EU: A novel, efficient approach to JavaScript loading - Google Drive",https://docs.google.com/presentation/d/1Q44eWLI2qvZnmCF5oD2jCw-FFql9dYg36FE5CpbMlw4/preview#slide=id.p19
|
112
|
+
JW Player: Overview | LongTail Video | Home of the JW Player,http://www.longtailvideo.com/players/
|
113
|
+
Knockout : Home,http://knockoutjs.com/
|
114
|
+
KnockoutJS Validations Screencast - Art Of Programming,http://approache.com/blog/knockoutjs-validations-video/
|
115
|
+
Labrador,http://chrismccord.github.com/labrador/?utm_source=rubyweekly&utm_medium=email
|
116
|
+
LaTeX Editor ShareLaTeX - ShareLaTeX.com,https://www.sharelatex.com/
|
117
|
+
Learning JavaScript Design Patterns,http://addyosmani.com/resources/essentialjsdesignpatterns/book/
|
118
|
+
Let's Write a Gem: Part 2 - Rake Routes,http://rakeroutes.com/blog/lets-write-a-gem-part-two/
|
119
|
+
Linux: HowTo Encrypt And Decrypt Files With A Password,http://www.cyberciti.biz/tips/linux-how-to-encrypt-and-decrypt-files-with-a-password.html
|
120
|
+
List of Chromium Command Line Switches « Peter Beverloo,http://peter.sh/experiments/chromium-command-line-switches/?utm_source=html5weekly&utm_medium=email
|
121
|
+
M101_MongoDB/ruby at master · samnang/M101_MongoDB · GitHub,https://github.com/samnang/M101_MongoDB/tree/master/ruby
|
122
|
+
Man-Computer Symbiosis,http://groups.csail.mit.edu/medg/people/psz/Licklider.html
|
123
|
+
mary rose cook,http://maryrosecook.com/
|
124
|
+
"Memory footprint of objects in Ruby 1.8, EE, 1.9, and OCaml",http://web.archive.org/web/20100918225809/http://eigenclass.org/R2/writings/object-size-ruby-ocaml
|
125
|
+
Metaprogramming in Ruby: It’s All About the Self « Katz Got Your Tongue?,http://yehudakatz.com/2009/11/15/metaprogramming-in-ruby-its-all-about-the-self/
|
126
|
+
Michal Budzynski: JavaScript: The less known parts. Bitwise Operators.,http://michalbe.blogspot.de/2013/03/javascript-less-known-parts-bitwise.html
|
127
|
+
Modern Garbage Collectors under the Hood - General Programming - Articles - Articles - GameDev.net,http://www.gamedev.net/page/resources/_/technical/general-programming/modern-garbage-collectors-under-the-hood-r2995?utm_source=statuscode&utm_medium=email
|
128
|
+
MongoDB Manual Contents — MongoDB Manual,http://docs.mongodb.org/manual/contents/
|
129
|
+
MongoDB,http://www.mongodb.org/
|
130
|
+
Mongoid: Home,http://mongoid.org/en/mongoid/index.html
|
131
|
+
mozilla-b2g/gaia · GitHub,https://github.com/mozilla-b2g/gaia
|
132
|
+
Multicast in Ruby: Building a Peer-to-Peer Chat System :: tx.pignata.com,http://tx.pignata.com/2012/11/multicast-in-ruby-building-a-peer-to-peer-chat-system.html
|
133
|
+
"My First 5 Minutes On A Server; Or, Essential Security for Linux Servers | Bryan Kennedy",http://plusbryan.com/my-first-5-minutes-on-a-server-or-essential-security-for-linux-servers
|
134
|
+
My first SSL Web Server - Google Drive,https://docs.google.com/document/d/1ej91CoXwtq6cuPoWQa1X6bVXsbkKoLZhY-37X3k5JRg/edit
|
135
|
+
MYO - The Gesture Control Armband,https://getmyo.com/
|
136
|
+
,http://www.sitepoint.com/author/jthacker/
|
137
|
+
ndbroadbent/turbo-sprockets-rails3,https://github.com/ndbroadbent/turbo-sprockets-rails3?utm_source=rubyweekly&utm_medium=email
|
138
|
+
NVD3.js :: re-usable charts for d3.js,http://nvd3.org/
|
139
|
+
Object.hasOwnProperty.com || Find My Property,http://object.hasownproperty.com/
|
140
|
+
Olark | Live chat with your customers for sales and support,http://www.olark.com/
|
141
|
+
"One Div Zero: A Brief, Incomplete, and Mostly Wrong History of Programming Languages",http://james-iry.blogspot.com.br/2009/05/brief-incomplete-and-mostly-wrong.html
|
142
|
+
Opal: Ruby to Javascript compiler,http://opalrb.org/?utm_source=hackernewsletter&utm_medium=email
|
143
|
+
Our First Node.js App: Backbone on the Client and Server - Airbnb Engineering,http://nerds.airbnb.com/weve-launched-our-first-nodejs-app-to-product?utm_source=javascriptweekly&utm_medium=email
|
144
|
+
Parleys.com - Faster Websites: Crash Course on Frontend Performance (Part 1/2),http://parleys.com/#st=5&id=3648&sl=8
|
145
|
+
Pass Command Line Arguments To a Bash Alias Command,http://www.cyberciti.biz/faq/linux-unix-pass-argument-to-alias-command/
|
146
|
+
,http://www.paterva.com/web6/
|
147
|
+
Performance Calendar » 2012,http://calendar.perfplanet.com/2012/
|
148
|
+
Performance Calendar » Moving beyond window.onload(),http://calendar.perfplanet.com/2012/moving-beyond-window-onload/
|
149
|
+
"Phusion Passenger users guide, Nginx version",http://www.modrails.com/documentation/Users%20guide%20Nginx.html#rubygems_generic_install
|
150
|
+
Powerful Command Line Tools For Developers | Smashing Coding,http://coding.smashingmagazine.com/2012/10/29/powerful-command-line-tools-developers/?utm_source=statuscode&utm_medium=email
|
151
|
+
Probability | Khan Academy,http://www.khanacademy.org/math/probability
|
152
|
+
Pub: Getting Started | Dart: Structured web apps,http://www.dartlang.org/docs/pub-package-manager/
|
153
|
+
Punch Reloaded | LakTEK,http://laktek.com/2012/09/18/punch-reloaded/?utm_source=rubyweekly&utm_medium=email
|
154
|
+
Ratgeber: Verschlüsselung unter OS X 10.8 Mountain Lion - Interne Laufwerke mit Filevault verschlüsseln - Mac-OS X - MACWELT,http://www.macwelt.de/ratgeber/Ratgeber-Verschluesselung-unter-OS-X-10-8-Mountain-Lion-Interne-Laufwerke-mit-Filevault-verschluesseln-6703357.html
|
155
|
+
"REST-Webservices mit Node.js, Teil 1: Connect als Fundament | heise Developer",http://www.heise.de/developer/artikel/REST-Webservices-mit-Node-js-Teil-1-Connect-als-Fundament-1802258.html
|
156
|
+
"REST-Webservices mit Node.js, Teil 2: Express als Anwendungsserver | heise Developer",http://www.heise.de/developer/artikel/REST-Webservices-mit-Node-js-Teil-2-Express-als-Anwendungsserver-1803626.html
|
157
|
+
Ruby and Rails Special Topics - Jumpstart Lab Curriculum,http://tutorials.jumpstartlab.com/topics/
|
158
|
+
Ruby on Rails Screencasts - RailsCasts,http://railscasts.com/episodes?utf8=%E2%9C%93&search=paypal
|
159
|
+
Ruby on Rails Tutorial: Learn Rails by Example book and screencasts by Michael Hartl,http://ruby.railstutorial.org/ruby-on-rails-tutorial-book?version=3.2
|
160
|
+
"Ruby Programming/Syntax/Classes - Wikibooks, open books for an open world",https://en.wikibooks.org/wiki/Ruby_Programming/Syntax/Classes#Mixing_in_Modules
|
161
|
+
,https://gist.github.com/mattdipasquale/571405
|
162
|
+
Ruby Trick Shots: A Video of 24 Ruby Tips and Tricks,http://rubyreloaded.com/trickshots/
|
163
|
+
Ruby Under a Microscope - Pat Shaughnessy,http://patshaughnessy.net/ruby-under-a-microscope
|
164
|
+
RubyJS | Home,http://rubyjs.org/
|
165
|
+
"Comment on Design Patterns in Ruby: Observer, Singleton",http://rubysource.com/design-patterns-in-ruby-observer-singleton/#comments
|
166
|
+
View all posts in Outside Ruby,http://rubysource.com/category/outside-ruby/
|
167
|
+
,http://api.rubyonrails.org/classes/ActionController/Caching/Pages.html
|
168
|
+
RubySource | Simple Background Jobs with Sucker PunchRubySource,http://rubysource.com/simple-background-jobs-with-sucker-punch/?utm_medium=email&utm_campaign=Rubysource%2020120528&utm_content=Rubysource%2020120528+CID_93079a7cbc8a9c4b538c87e6d0983d28&utm_source=Newsletter&utm_term=More
|
169
|
+
Comment on State Machines in Ruby,http://rubysource.com/state-machines-in-ruby/#comments
|
170
|
+
RubySource | Working with RefineryRubySource,http://rubysource.com/working-with-refinery/?utm_medium=email&utm_campaign=Rubysource+Newsletter+20121002&utm_content=Rubysource+Newsletter+20121002+CID_4ef1fdb2d08c027e3dff17884118bcc0&utm_source=Newsletter&utm_term=CMS%20Spotlight%20Refinery
|
171
|
+
Running Bash Commands From Ruby | Ruby For System Administrators,http://ruby.elevatedintel.com/blog/running-bash-commands-from-ruby/?utm_source=rubyweekly&utm_medium=email
|
172
|
+
Sam Dutton,http://www.samdutton.com/
|
173
|
+
Secrets of Awesome JavaScript API Design - Web Standards Sherpa,http://webstandardssherpa.com/reviews/secrets-of-awesome-javascript-api-design/
|
174
|
+
Self-publish your in-progress book for great royalties on Leanpub,https://leanpub.com/
|
175
|
+
Setting up a PHP development environment with Nginx on Ubuntu 11.04,http://www.zalas.eu/setting-up-a-php-development-environment-with-nginx-on-ubuntu-1104
|
176
|
+
,http://conqueringthecommandline.com/book/frontmatter#foreword
|
177
|
+
SPDY and the Road Towards HTTP 2.0 - YouTube,http://www.youtube.com/watch?v=SWQdSEferz8
|
178
|
+
SSH/OpenSSH/Keys - Community Ubuntu Documentation,https://help.ubuntu.com/community/SSH/OpenSSH/Keys
|
179
|
+
stps - create and share awesome step by step guides,http://stps.co/
|
180
|
+
Streak - CRM in your Inbox,http://www.streak.com/
|
181
|
+
Stuart Memo,http://stuartmemo.com/
|
182
|
+
Sublimewebinspector,http://sokolovstas.github.com/SublimeWebInspector/
|
183
|
+
Subtle Patterns | Free textures for your next web project,http://subtlepatterns.com/
|
184
|
+
Telefon-Hacking: Das bewegte Leben des Captain Crunch - Golem.de,http://www.golem.de/news/telefon-hacking-das-bewegte-leben-des-captain-crunch-1210-94815.html
|
185
|
+
Ten Things You Didn't Know You Could Do by James Edward Gray II - YouTube,http://www.youtube.com/watch?v=aBgnlBoIkVM
|
186
|
+
,http://theory.so/pg/2013/10/23/testing-nested-hstore/
|
187
|
+
TexPaste - Pastebin for Mathematicians using LaTeX,http://www.texpaste.com/
|
188
|
+
"The MongoDB NoSQL Database Blog, MongoDB Text Search: Experimental Feature in MongoDB 2.4",http://blog.mongodb.org/post/40513621310/mongodb-text-search-experimental-feature-in-mongodb
|
189
|
+
The Myers & Briggs Foundation,http://myersbriggs.org/
|
190
|
+
The Twelve-Factor App,http://12factor.net/
|
191
|
+
"The Ultimate Guide to Learning Ruby for Free: Resources, Tools and Tips - Lesson in Programming",http://lurnq.com/lesson/The-Ultimate-Guide-to-Learning-Ruby-for-Free-Resources-Tools-and-Tips/
|
192
|
+
Thomas Davis,http://thomasdavis.github.com/2011/02/01/backbone-introduction.html
|
193
|
+
TodoMVC,http://todomvc.com/
|
194
|
+
Try mruby TodayRubySource,http://rubysource.com/try-mruby-today/?utm_medium=email&utm_campaign=RubySource+Newsletter+20121030&utm_content=RubySource+Newsletter+20121030+Version+A+CID_279679335def9cd340cb088738729cd8&utm_source=Newsletter&utm_term=MRuby%20Small%20Implementation%20Big%20Results
|
195
|
+
,http://lists.nyphp.org/pipermail/talk/2004-April/009170.html
|
196
|
+
Tuts+ Premium Course: Perfect Workflow in Sublime Text 2,https://tutsplus.com/course/improve-workflow-in-sublime-text-2/
|
197
|
+
UFW - Community Ubuntu Documentation,https://help.ubuntu.com/community/UFW
|
198
|
+
Ultimate CSS Gradient Generator - ColorZilla.com,http://www.colorzilla.com/gradient-editor/
|
199
|
+
Understanding C by learning assembly - Blog - Hacker School,https://www.hackerschool.com/blog/7-understanding-c-by-learning-assembly?utm_source=statuscode&utm_medium=email
|
200
|
+
Understanding method lookup in Ruby 2.0 - Tech.Pro,http://tech.pro/tutorial/1149/understanding-method-lookup-in-ruby-20?utm_source=rubyweekly&utm_medium=email
|
201
|
+
Unobtrusive JavaScript,http://blog.socialcast.com/unobtrusive-javascript-2/?utm_source=javascriptweekly&utm_medium=email
|
202
|
+
,https://people.apache.org/keys/committer/andywenk.asc
|
203
|
+
Upton: A Web Scraping Framework - ProPublica,http://www.propublica.org/nerds/item/upton-a-web-scraping-framework?utm_source=rubyweekly&utm_medium=email
|
204
|
+
URI.js - URLs in Javascript,http://medialize.github.com/URI.js/
|
205
|
+
UseResponse | Customer Feedback Software & Support System,http://www.useresponse.com/
|
206
|
+
Using Pandoc to Build Your ePub eBook - Story Hack,http://www.storyhack.com/2012/07/10/using-pandoc-to-build-your-epub-ebook/
|
207
|
+
Using Ruby's gsub with a block - (think),http://batsov.com/articles/2013/08/30/using-gsub-with-a-block/?utm_source=rubyweekly&utm_medium=email
|
208
|
+
visionmedia/jade · GitHub,https://github.com/visionmedia/jade#a6-2
|
209
|
+
"Wait, DevTools could do THAT?",http://www.igvita.com/slides/2012/devtools-tips-and-tricks/?utm_source=html5weekly&utm_medium=email#1
|
210
|
+
Watch movies online for free movie download at movie2k.to,http://www.movie2k.to/index.php?lang=us
|
211
|
+
Why Google Went Offline Today and a Bit about How the Internet Works - CloudFlare blog,http://blog.cloudflare.com/why-google-went-offline-today-and-a-bit-about?utm_source=hackernewsletter&utm_medium=email
|
212
|
+
Working with Local Applications in VisualVM — Java.net,http://visualvm.java.net/applications_local.html
|
213
|
+
www.ietf.org/rfc/rfc2616.txt,http://www.ietf.org/rfc/rfc2616.txt
|
214
|
+
www.ietf.org/rfc/rfc791.txt,http://www.ietf.org/rfc/rfc791.txt
|
215
|
+
www.ietf.org/rfc/rfc792.txt,http://www.ietf.org/rfc/rfc792.txt
|
216
|
+
www.ietf.org/rfc/rfc793.txt,http://www.ietf.org/rfc/rfc793.txt
|
217
|
+
Yeti Media,http://yetimedia.tumblr.com/post/33320732456/moving-forward-with-the-rails-asset-pipeline?utm_source=rubyweekly&utm_medium=email
|
218
|
+
Łukasz Lipiński Portfolio,http://www.uzza.pl/home.html
|
@@ -0,0 +1,218 @@
|
|
1
|
+
title,link
|
2
|
+
#279 Understanding the Asset Pipeline - RailsCasts,http://railscasts.com/episodes/279-understanding-the-asset-pipeline
|
3
|
+
$ cheat rvm,http://cheat.errtheblog.com/s/rvm/
|
4
|
+
14 Customer Feedback Tools for Small Business | Practical eCommerce,http://www.practicalecommerce.com/articles/2827-14-Customer-Feedback-Tools-for-Small-Business
|
5
|
+
30 Handy Bash Shell Aliases For Linux / Unix / Mac OS X,http://www.cyberciti.biz/tips/bash-aliases-mac-centos-linux-unix.html
|
6
|
+
30 Shredders In One Solo Lesson,http://www.guitarmasterclass.net/ls/30-Shredders-In-One-Solo/
|
7
|
+
30 Shredders In One Solo! - YouTube,https://www.youtube.com/watch?NR=1&v=iaAkWy55V3A
|
8
|
+
500 - Internal Server Error | Flickr - Photo Sharing!,http://www.flickr.com/photos/girliemac/6509400855/in/set-72157628409467125/
|
9
|
+
7 Ways to Decompose Fat ActiveRecord Models - Code Climate Blog,http://blog.codeclimate.com/blog/2012/10/17/7-ways-to-decompose-fat-activerecord-models/
|
10
|
+
A programmer’s guide to JavaScript by Dr. Axel Rauschmayer,http://jsguide.org/
|
11
|
+
,http://www.csee.umbc.edu/about/
|
12
|
+
Acorn: yet another JavaScript parser,http://marijnhaverbeke.nl/blog/acorn.html
|
13
|
+
acorn/acorn.js at master · marijnh/acorn · GitHub,https://github.com/marijnh/acorn/blob/master/acorn.js
|
14
|
+
afterRender() callback in Backbone.js Views,http://fahad19.tumblr.com/post/28158699664/afterrender-callback-in-backbone-js-views
|
15
|
+
All you need to know about CSS Transitions | Alex MacCaw,http://blog.alexmaccaw.com/css-transitions?utm_source=html5weekly&utm_medium=email
|
16
|
+
,http://rethinkdb.com/docs/install
|
17
|
+
AngularJS: Tutorial,http://docs.angularjs.org/tutorial/
|
18
|
+
,https://id.apache.org/
|
19
|
+
,https://translate.apache.org/de/CouchDB/
|
20
|
+
,https://blogs.apache.org/roller-ui/login.rol
|
21
|
+
,http://wilderness.apache.org/archives/
|
22
|
+
aziz/PlainTasks · GitHub,https://github.com/aziz/PlainTasks
|
23
|
+
Backbone.js Tutorials,http://backbonetutorials.com/
|
24
|
+
Backbone.js,http://backbonejs.org/
|
25
|
+
Backbone.js: Getting The Model For A Clicked Element | ThoughtStream.new :derick_bailey,http://lostechies.com/derickbailey/2011/10/11/backbone-js-getting-the-model-for-a-clicked-element/
|
26
|
+
backbonetutorials/examples/modular-backbone at gh-pages · thomasdavis/backbonetutorials,https://github.com/thomasdavis/backbonetutorials/tree/gh-pages/examples/modular-backbone
|
27
|
+
BASH Programming - Introduction HOW-TO,http://tldp.org/HOWTO/Bash-Prog-Intro-HOWTO.html
|
28
|
+
Beginning Ember.js on Rails: Part 1 :: Cerebris,http://www.cerebris.com/blog/2012/01/24/beginning-ember-js-on-rails-part-1/
|
29
|
+
Beginning Ember.js on Rails: Part 2 :: Cerebris,http://www.cerebris.com/blog/2012/01/26/beginning-ember-js-on-rails-part-2/
|
30
|
+
Beginning Ember.js on Rails: Part 3 :: Cerebris,http://www.cerebris.com/blog/2012/01/31/beginning-ember-js-on-rails-part-3/
|
31
|
+
Beginning Ember.js on Rails: Part 3 :: Cerebris,http://www.cerebris.com/blog/2012/01/31/beginning-ember-js-on-rails-part-3/
|
32
|
+
BELBIN®: The home of Belbin Team Roles,http://www.belbin.com/
|
33
|
+
bestiejs/lodash,https://github.com/bestiejs/lodash
|
34
|
+
Border-radius: create rounded corners with CSS! - CSS3 . Info,http://www.css3.info/preview/rounded-border/
|
35
|
+
Bottle: Python Web Framework — Bottle 0.12-dev documentation,http://bottlepy.org/docs/dev/
|
36
|
+
BSON - Binary JSON,http://bsonspec.org/#/specification
|
37
|
+
Bundesgesetzblatt online,http://www.bgbl.de/Xaver/start.xav?startbk=Bundesanzeiger_BGBl
|
38
|
+
"Camping, a Microframework",http://camping.io/
|
39
|
+
Capistrano recipes: deploy,http://capitate.rubyforge.org/recipes/deploy.html
|
40
|
+
Check_MK - The Official Documentation,http://mathias-kettner.de/checkmk.html
|
41
|
+
Chrome 26 Beta: Verbesserte Rechtschreibkorrektur und Template-Unterstützung - Golem.de,http://www.golem.de/news/chrome-26-beta-verbesserte-rechtschreibkorrektur-und-template-unterstuetzung-1302-97855.html
|
42
|
+
CodeKata: Code Kata,http://codekata.pragprog.com/2007/01/code_kata_backg.html#more
|
43
|
+
CoffeeScript Cookbook » Home,http://coffeescriptcookbook.com/
|
44
|
+
CoffeeScript Cookbook » Testing Every Element,http://coffeescriptcookbook.com/chapters/arrays/testing-every-element
|
45
|
+
CoffeeScript Love: Testing CoffeeScript in Rails,http://www.coffeescriptlove.com/2012/03/testing-coffeescript-in-rails.html?utm_source=rubyweekly&utm_medium=email
|
46
|
+
Color Output on Bash Scripts | Linux Tidbits,http://linuxtidbits.wordpress.com/2008/08/11/output-color-on-bash-scripts/
|
47
|
+
,http://people.apache.org/foaf/foafamatic.html
|
48
|
+
,https://blogs.apache.org/couchdb/
|
49
|
+
create node.js web-services in one line - — blog.nodejitsu.com,https://blog.nodejitsu.com/create-nodejs-web-services-in-one-line
|
50
|
+
CSS Architecture | Appfolio Engineering,http://engineering.appfolio.com/2012/11/16/css-architecture/
|
51
|
+
CSS Button Generator - Imageless css buttons simplified,http://www.cssbuttongenerator.com/
|
52
|
+
Cuba,http://cuba.is/
|
53
|
+
DailyJS: Backbone.js Tutorial: Build Environment,http://dailyjs.com/2012/11/29/backbone-tutorial-1/
|
54
|
+
,http://ci.couchdb.org:8888/
|
55
|
+
DataFart,http://datafart.com/
|
56
|
+
DataMapper - Documentation,http://datamapper.org/docs/
|
57
|
+
Deploying a Rails app on Nginx/Puma with Capistrano | Tommy Chheng : Shortest Path Programming,http://tommy.chheng.com/2013/01/23/deploying-a-rails-app-on-nginxpuma-with-capistrano/?utm_source=rubyweekly&utm_medium=email
|
58
|
+
Designing Better JavaScript APIs | Smashing Coding,http://coding.smashingmagazine.com/2012/10/09/designing-javascript-apis-usability/?utm_source=javascriptweekly&utm_medium=email
|
59
|
+
DevDocs/DOM Events/fullscreenchange,http://devdocs.io/dom_events/fullscreenchange
|
60
|
+
Developing Backbone.js Applications -,http://addyosmani.github.com/backbone-fundamentals/
|
61
|
+
DOM Enlightenment - Exploring the relationship between JavaScript and the modern HTML DOM,http://domenlightenment.com/
|
62
|
+
draft-ietf-httpbis-http2-02 - Hypertext Transfer Protocol version 2.0,http://tools.ietf.org/html/draft-ietf-httpbis-http2-02
|
63
|
+
"Einstein, Albert. 1920. Relativity: The Special and General Theory",http://www.bartleby.com/173/
|
64
|
+
Elastic tire demo,http://www.slideshare.net/greeneggs614/elastic-tire-demo
|
65
|
+
ElasticSearch with Tire,http://www.slideshare.net/abookyun/elasticsearch-with-tire
|
66
|
+
,https://www.eff.org/
|
67
|
+
Eloquent JavaScript: A Modern Introduction to Programming,http://eloquentjavascript.net/
|
68
|
+
Ember.js - About,http://emberjs.com/
|
69
|
+
erlang-bookmarks/ErlangBookmarks.md at master · 0xAX/erlang-bookmarks,https://github.com/0xAX/erlang-bookmarks/blob/master/ErlangBookmarks.md
|
70
|
+
erlang-bookmarks/ErlangBookmarks.md at master · 0xAX/erlang-bookmarks,https://github.com/0xAX/erlang-bookmarks/blob/master/ErlangBookmarks.md
|
71
|
+
,http://www.petekeen.net/essential-tools-for-starting-a-rails-app-in-2013
|
72
|
+
Evan Hahn,http://evanhahn.com/
|
73
|
+
,https://speakerdeck.com/bartoszopka/everything-you-never-wanted-to-know-about-javascript-numbers
|
74
|
+
,https://speakerdeck.com/bartoszopka/everything-you-never-wanted-to-know-about-javascript-numbers
|
75
|
+
,https://speakerdeck.com/bartoszopka/everything-you-never-wanted-to-know-about-javascript-numbers
|
76
|
+
Faster Websites: Crash Course on Web Performance - igvita.com,http://www.igvita.com/2013/01/15/faster-websites-crash-course-on-web-performance/
|
77
|
+
,http://travis-ci.org/rspec/rspec-expectations
|
78
|
+
File: SASS_REFERENCE,http://sass-lang.com/docs/yardoc/file.SASS_REFERENCE.html
|
79
|
+
Getting Started With Express Checkout | X.commerce,https://www.x.com/developers/paypal/documentation-tools/express-checkout/integration-guide/ECGettingStarted
|
80
|
+
,http://gavinmiller.io/categories/activerecord/
|
81
|
+
GIN – Just A Kind Of Index › Cybertec - The PostgreSQL Database Company,http://www.cybertec.at/gin-just-an-index-type/
|
82
|
+
GitHub does dotfiles - dotfiles.github.com,http://dotfiles.github.com/
|
83
|
+
"good coders code, great reuse",http://www.catonmat.net/
|
84
|
+
"Gutmann method - Wikipedia, the free encyclopedia",http://en.wikipedia.org/wiki/Gutmann_method
|
85
|
+
Harmony of Dreams Come True | Brendan Eich,https://brendaneich.com/2012/10/harmony-of-dreams-come-true/?utm_source=javascriptweekly&utm_medium=email
|
86
|
+
Headius: Finding Leaks in Ruby Apps with Eclipse Memory Analyzer,http://blog.headius.com/2010/07/finding-leaks-in-ruby-apps-with-eclipse.html
|
87
|
+
Hello Backbone.js Tutorial,http://arturadib.com/hello-backbonejs/
|
88
|
+
High Performance Networking in Google Chrome - igvita.com,http://www.igvita.com/posa/high-performance-networking-in-google-chrome/
|
89
|
+
Home page of Evan Miller,http://www.evanmiller.org/
|
90
|
+
How to Create One-Time Payments Using Express Checkout | X.commerce,https://www.x.com/developers/paypal/documentation-tools/express-checkout/how-to/ht_ec-singleItemPayment-curl-etc
|
91
|
+
How to make Chrome understand the SASS/SCSS in your rails app | fonicmonkey,http://fonicmonkey.net/2013/03/25/native-sass-scss-source-map-support-in-chrome-and-rails/?utm_source=rubyweekly&utm_medium=email
|
92
|
+
How to play Zopfli with Nginx - Google Drive,https://docs.google.com/document/d/1kpfGrYda1BNhWUx-cGfc6Sv3dFaw8DgKnRIE8yHpqIY/edit
|
93
|
+
,http://www.rubymotion.com/
|
94
|
+
How to secure an Ubuntu 12.04 LTS server - Part 1 The Basics | How To | The Fan Club | dynamic design solutions,http://www.thefanclub.co.za/how-to/how-secure-ubuntu-1204-lts-server-part-1-basics
|
95
|
+
How to send email from the Linux command line - Simple Help,http://www.simplehelp.net/2008/12/01/how-to-send-email-from-the-linux-command-line/
|
96
|
+
How to take Automatic SQL Database Backup using pgAgent | PostgreSQL,http://technobytz.com/automatic-sql-database-backup-postgres.html
|
97
|
+
HTML5 Pyramid,http://helgri.github.com/HTML5-Pyramid/
|
98
|
+
HTML_CodeSniffer,http://squizlabs.github.com/HTML_CodeSniffer/?utm_source=html5weekly&utm_medium=email
|
99
|
+
igrigorik/em-synchrony,https://github.com/igrigorik/em-synchrony
|
100
|
+
7th March,http://mwholt.blogspot.com/2013/03/install-nginxphpmysql-on-os-x-mountain.html
|
101
|
+
Interactive Smooth CoffeeScript,http://autotelicum.github.com/Smooth-CoffeeScript/interactive/interactive-coffeescript.html
|
102
|
+
Interface testing: Creating a Diablo 3 bot using jRuby and Sikuli UI - Rodrigo Franco - Ruby Conference 2012,http://www.confreaks.com/videos/1309-rubyconf2012-interface-testing-creating-a-diablo-3-bot-using-jruby-and-sikuli-ui
|
103
|
+
Internet Census 2012,http://internetcensus2012.bitbucket.org/paper.html
|
104
|
+
"Internet protocol suite - Wikipedia, the free encyclopedia",http://en.wikipedia.org/wiki/Internet_protocol_suite
|
105
|
+
Introducing the Rails API Project - Literate Programming,http://blog.steveklabnik.com/posts/2012-11-22-introducing-the-rails-api-project?utm_source=hackernewsletter&utm_medium=email
|
106
|
+
Jade - Template Engine,http://jade-lang.com/
|
107
|
+
jamiew/heroku-static-site,https://github.com/jamiew/heroku-static-site
|
108
|
+
javascript - How do I get started with Node.js - Stack Overflow,http://stackoverflow.com/questions/2353818/how-do-i-get-started-with-node-js
|
109
|
+
jedtoolkit,https://github.com/jedtoolkit
|
110
|
+
jimweirich/rspec-given,https://github.com/jimweirich/rspec-given?utm_source=rubyweekly&utm_medium=email
|
111
|
+
"JSConf EU: A novel, efficient approach to JavaScript loading - Google Drive",https://docs.google.com/presentation/d/1Q44eWLI2qvZnmCF5oD2jCw-FFql9dYg36FE5CpbMlw4/preview#slide=id.p19
|
112
|
+
JW Player: Overview | LongTail Video | Home of the JW Player,http://www.longtailvideo.com/players/
|
113
|
+
Knockout : Home,http://knockoutjs.com/
|
114
|
+
KnockoutJS Validations Screencast - Art Of Programming,http://approache.com/blog/knockoutjs-validations-video/
|
115
|
+
Labrador,http://chrismccord.github.com/labrador/?utm_source=rubyweekly&utm_medium=email
|
116
|
+
LaTeX Editor ShareLaTeX - ShareLaTeX.com,https://www.sharelatex.com/
|
117
|
+
Learning JavaScript Design Patterns,http://addyosmani.com/resources/essentialjsdesignpatterns/book/
|
118
|
+
Let's Write a Gem: Part 2 - Rake Routes,http://rakeroutes.com/blog/lets-write-a-gem-part-two/
|
119
|
+
Linux: HowTo Encrypt And Decrypt Files With A Password,http://www.cyberciti.biz/tips/linux-how-to-encrypt-and-decrypt-files-with-a-password.html
|
120
|
+
List of Chromium Command Line Switches « Peter Beverloo,http://peter.sh/experiments/chromium-command-line-switches/?utm_source=html5weekly&utm_medium=email
|
121
|
+
M101_MongoDB/ruby at master · samnang/M101_MongoDB · GitHub,https://github.com/samnang/M101_MongoDB/tree/master/ruby
|
122
|
+
Man-Computer Symbiosis,http://groups.csail.mit.edu/medg/people/psz/Licklider.html
|
123
|
+
mary rose cook,http://maryrosecook.com/
|
124
|
+
"Memory footprint of objects in Ruby 1.8, EE, 1.9, and OCaml",http://web.archive.org/web/20100918225809/http://eigenclass.org/R2/writings/object-size-ruby-ocaml
|
125
|
+
Metaprogramming in Ruby: It’s All About the Self « Katz Got Your Tongue?,http://yehudakatz.com/2009/11/15/metaprogramming-in-ruby-its-all-about-the-self/
|
126
|
+
Michal Budzynski: JavaScript: The less known parts. Bitwise Operators.,http://michalbe.blogspot.de/2013/03/javascript-less-known-parts-bitwise.html
|
127
|
+
Modern Garbage Collectors under the Hood - General Programming - Articles - Articles - GameDev.net,http://www.gamedev.net/page/resources/_/technical/general-programming/modern-garbage-collectors-under-the-hood-r2995?utm_source=statuscode&utm_medium=email
|
128
|
+
MongoDB Manual Contents — MongoDB Manual,http://docs.mongodb.org/manual/contents/
|
129
|
+
MongoDB,http://www.mongodb.org/
|
130
|
+
Mongoid: Home,http://mongoid.org/en/mongoid/index.html
|
131
|
+
mozilla-b2g/gaia · GitHub,https://github.com/mozilla-b2g/gaia
|
132
|
+
Multicast in Ruby: Building a Peer-to-Peer Chat System :: tx.pignata.com,http://tx.pignata.com/2012/11/multicast-in-ruby-building-a-peer-to-peer-chat-system.html
|
133
|
+
"My First 5 Minutes On A Server; Or, Essential Security for Linux Servers | Bryan Kennedy",http://plusbryan.com/my-first-5-minutes-on-a-server-or-essential-security-for-linux-servers
|
134
|
+
My first SSL Web Server - Google Drive,https://docs.google.com/document/d/1ej91CoXwtq6cuPoWQa1X6bVXsbkKoLZhY-37X3k5JRg/edit
|
135
|
+
MYO - The Gesture Control Armband,https://getmyo.com/
|
136
|
+
,http://www.sitepoint.com/author/jthacker/
|
137
|
+
ndbroadbent/turbo-sprockets-rails3,https://github.com/ndbroadbent/turbo-sprockets-rails3?utm_source=rubyweekly&utm_medium=email
|
138
|
+
NVD3.js :: re-usable charts for d3.js,http://nvd3.org/
|
139
|
+
Object.hasOwnProperty.com || Find My Property,http://object.hasownproperty.com/
|
140
|
+
Olark | Live chat with your customers for sales and support,http://www.olark.com/
|
141
|
+
"One Div Zero: A Brief, Incomplete, and Mostly Wrong History of Programming Languages",http://james-iry.blogspot.com.br/2009/05/brief-incomplete-and-mostly-wrong.html
|
142
|
+
Opal: Ruby to Javascript compiler,http://opalrb.org/?utm_source=hackernewsletter&utm_medium=email
|
143
|
+
Our First Node.js App: Backbone on the Client and Server - Airbnb Engineering,http://nerds.airbnb.com/weve-launched-our-first-nodejs-app-to-product?utm_source=javascriptweekly&utm_medium=email
|
144
|
+
Parleys.com - Faster Websites: Crash Course on Frontend Performance (Part 1/2),http://parleys.com/#st=5&id=3648&sl=8
|
145
|
+
Pass Command Line Arguments To a Bash Alias Command,http://www.cyberciti.biz/faq/linux-unix-pass-argument-to-alias-command/
|
146
|
+
,http://www.paterva.com/web6/
|
147
|
+
Performance Calendar » 2012,http://calendar.perfplanet.com/2012/
|
148
|
+
Performance Calendar » Moving beyond window.onload(),http://calendar.perfplanet.com/2012/moving-beyond-window-onload/
|
149
|
+
"Phusion Passenger users guide, Nginx version",http://www.modrails.com/documentation/Users%20guide%20Nginx.html#rubygems_generic_install
|
150
|
+
Powerful Command Line Tools For Developers | Smashing Coding,http://coding.smashingmagazine.com/2012/10/29/powerful-command-line-tools-developers/?utm_source=statuscode&utm_medium=email
|
151
|
+
Probability | Khan Academy,http://www.khanacademy.org/math/probability
|
152
|
+
Pub: Getting Started | Dart: Structured web apps,http://www.dartlang.org/docs/pub-package-manager/
|
153
|
+
Punch Reloaded | LakTEK,http://laktek.com/2012/09/18/punch-reloaded/?utm_source=rubyweekly&utm_medium=email
|
154
|
+
Ratgeber: Verschlüsselung unter OS X 10.8 Mountain Lion - Interne Laufwerke mit Filevault verschlüsseln - Mac-OS X - MACWELT,http://www.macwelt.de/ratgeber/Ratgeber-Verschluesselung-unter-OS-X-10-8-Mountain-Lion-Interne-Laufwerke-mit-Filevault-verschluesseln-6703357.html
|
155
|
+
"REST-Webservices mit Node.js, Teil 1: Connect als Fundament | heise Developer",http://www.heise.de/developer/artikel/REST-Webservices-mit-Node-js-Teil-1-Connect-als-Fundament-1802258.html
|
156
|
+
"REST-Webservices mit Node.js, Teil 2: Express als Anwendungsserver | heise Developer",http://www.heise.de/developer/artikel/REST-Webservices-mit-Node-js-Teil-2-Express-als-Anwendungsserver-1803626.html
|
157
|
+
Ruby and Rails Special Topics - Jumpstart Lab Curriculum,http://tutorials.jumpstartlab.com/topics/
|
158
|
+
Ruby on Rails Screencasts - RailsCasts,http://railscasts.com/episodes?utf8=%E2%9C%93&search=paypal
|
159
|
+
Ruby on Rails Tutorial: Learn Rails by Example book and screencasts by Michael Hartl,http://ruby.railstutorial.org/ruby-on-rails-tutorial-book?version=3.2
|
160
|
+
"Ruby Programming/Syntax/Classes - Wikibooks, open books for an open world",https://en.wikibooks.org/wiki/Ruby_Programming/Syntax/Classes#Mixing_in_Modules
|
161
|
+
,https://gist.github.com/mattdipasquale/571405
|
162
|
+
Ruby Trick Shots: A Video of 24 Ruby Tips and Tricks,http://rubyreloaded.com/trickshots/
|
163
|
+
Ruby Under a Microscope - Pat Shaughnessy,http://patshaughnessy.net/ruby-under-a-microscope
|
164
|
+
RubyJS | Home,http://rubyjs.org/
|
165
|
+
"Comment on Design Patterns in Ruby: Observer, Singleton",http://rubysource.com/design-patterns-in-ruby-observer-singleton/#comments
|
166
|
+
View all posts in Outside Ruby,http://rubysource.com/category/outside-ruby/
|
167
|
+
,http://api.rubyonrails.org/classes/ActionController/Caching/Pages.html
|
168
|
+
RubySource | Simple Background Jobs with Sucker PunchRubySource,http://rubysource.com/simple-background-jobs-with-sucker-punch/?utm_medium=email&utm_campaign=Rubysource%2020120528&utm_content=Rubysource%2020120528+CID_93079a7cbc8a9c4b538c87e6d0983d28&utm_source=Newsletter&utm_term=More
|
169
|
+
Comment on State Machines in Ruby,http://rubysource.com/state-machines-in-ruby/#comments
|
170
|
+
RubySource | Working with RefineryRubySource,http://rubysource.com/working-with-refinery/?utm_medium=email&utm_campaign=Rubysource+Newsletter+20121002&utm_content=Rubysource+Newsletter+20121002+CID_4ef1fdb2d08c027e3dff17884118bcc0&utm_source=Newsletter&utm_term=CMS%20Spotlight%20Refinery
|
171
|
+
Running Bash Commands From Ruby | Ruby For System Administrators,http://ruby.elevatedintel.com/blog/running-bash-commands-from-ruby/?utm_source=rubyweekly&utm_medium=email
|
172
|
+
Sam Dutton,http://www.samdutton.com/
|
173
|
+
Secrets of Awesome JavaScript API Design - Web Standards Sherpa,http://webstandardssherpa.com/reviews/secrets-of-awesome-javascript-api-design/
|
174
|
+
Self-publish your in-progress book for great royalties on Leanpub,https://leanpub.com/
|
175
|
+
Setting up a PHP development environment with Nginx on Ubuntu 11.04,http://www.zalas.eu/setting-up-a-php-development-environment-with-nginx-on-ubuntu-1104
|
176
|
+
,http://conqueringthecommandline.com/book/frontmatter#foreword
|
177
|
+
SPDY and the Road Towards HTTP 2.0 - YouTube,http://www.youtube.com/watch?v=SWQdSEferz8
|
178
|
+
SSH/OpenSSH/Keys - Community Ubuntu Documentation,https://help.ubuntu.com/community/SSH/OpenSSH/Keys
|
179
|
+
stps - create and share awesome step by step guides,http://stps.co/
|
180
|
+
Streak - CRM in your Inbox,http://www.streak.com/
|
181
|
+
Stuart Memo,http://stuartmemo.com/
|
182
|
+
Sublimewebinspector,http://sokolovstas.github.com/SublimeWebInspector/
|
183
|
+
Subtle Patterns | Free textures for your next web project,http://subtlepatterns.com/
|
184
|
+
Telefon-Hacking: Das bewegte Leben des Captain Crunch - Golem.de,http://www.golem.de/news/telefon-hacking-das-bewegte-leben-des-captain-crunch-1210-94815.html
|
185
|
+
Ten Things You Didn't Know You Could Do by James Edward Gray II - YouTube,http://www.youtube.com/watch?v=aBgnlBoIkVM
|
186
|
+
,http://theory.so/pg/2013/10/23/testing-nested-hstore/
|
187
|
+
TexPaste - Pastebin for Mathematicians using LaTeX,http://www.texpaste.com/
|
188
|
+
"The MongoDB NoSQL Database Blog, MongoDB Text Search: Experimental Feature in MongoDB 2.4",http://blog.mongodb.org/post/40513621310/mongodb-text-search-experimental-feature-in-mongodb
|
189
|
+
The Myers & Briggs Foundation,http://myersbriggs.org/
|
190
|
+
The Twelve-Factor App,http://12factor.net/
|
191
|
+
"The Ultimate Guide to Learning Ruby for Free: Resources, Tools and Tips - Lesson in Programming",http://lurnq.com/lesson/The-Ultimate-Guide-to-Learning-Ruby-for-Free-Resources-Tools-and-Tips/
|
192
|
+
Thomas Davis,http://thomasdavis.github.com/2011/02/01/backbone-introduction.html
|
193
|
+
TodoMVC,http://todomvc.com/
|
194
|
+
Try mruby TodayRubySource,http://rubysource.com/try-mruby-today/?utm_medium=email&utm_campaign=RubySource+Newsletter+20121030&utm_content=RubySource+Newsletter+20121030+Version+A+CID_279679335def9cd340cb088738729cd8&utm_source=Newsletter&utm_term=MRuby%20Small%20Implementation%20Big%20Results
|
195
|
+
,http://lists.nyphp.org/pipermail/talk/2004-April/009170.html
|
196
|
+
Tuts+ Premium Course: Perfect Workflow in Sublime Text 2,https://tutsplus.com/course/improve-workflow-in-sublime-text-2/
|
197
|
+
UFW - Community Ubuntu Documentation,https://help.ubuntu.com/community/UFW
|
198
|
+
Ultimate CSS Gradient Generator - ColorZilla.com,http://www.colorzilla.com/gradient-editor/
|
199
|
+
Understanding C by learning assembly - Blog - Hacker School,https://www.hackerschool.com/blog/7-understanding-c-by-learning-assembly?utm_source=statuscode&utm_medium=email
|
200
|
+
Understanding method lookup in Ruby 2.0 - Tech.Pro,http://tech.pro/tutorial/1149/understanding-method-lookup-in-ruby-20?utm_source=rubyweekly&utm_medium=email
|
201
|
+
Unobtrusive JavaScript,http://blog.socialcast.com/unobtrusive-javascript-2/?utm_source=javascriptweekly&utm_medium=email
|
202
|
+
,https://people.apache.org/keys/committer/andywenk.asc
|
203
|
+
Upton: A Web Scraping Framework - ProPublica,http://www.propublica.org/nerds/item/upton-a-web-scraping-framework?utm_source=rubyweekly&utm_medium=email
|
204
|
+
URI.js - URLs in Javascript,http://medialize.github.com/URI.js/
|
205
|
+
UseResponse | Customer Feedback Software & Support System,http://www.useresponse.com/
|
206
|
+
Using Pandoc to Build Your ePub eBook - Story Hack,http://www.storyhack.com/2012/07/10/using-pandoc-to-build-your-epub-ebook/
|
207
|
+
Using Ruby's gsub with a block - (think),http://batsov.com/articles/2013/08/30/using-gsub-with-a-block/?utm_source=rubyweekly&utm_medium=email
|
208
|
+
visionmedia/jade · GitHub,https://github.com/visionmedia/jade#a6-2
|
209
|
+
"Wait, DevTools could do THAT?",http://www.igvita.com/slides/2012/devtools-tips-and-tricks/?utm_source=html5weekly&utm_medium=email#1
|
210
|
+
Watch movies online for free movie download at movie2k.to,http://www.movie2k.to/index.php?lang=us
|
211
|
+
Why Google Went Offline Today and a Bit about How the Internet Works - CloudFlare blog,http://blog.cloudflare.com/why-google-went-offline-today-and-a-bit-about?utm_source=hackernewsletter&utm_medium=email
|
212
|
+
Working with Local Applications in VisualVM — Java.net,http://visualvm.java.net/applications_local.html
|
213
|
+
www.ietf.org/rfc/rfc2616.txt,http://www.ietf.org/rfc/rfc2616.txt
|
214
|
+
www.ietf.org/rfc/rfc791.txt,http://www.ietf.org/rfc/rfc791.txt
|
215
|
+
www.ietf.org/rfc/rfc792.txt,http://www.ietf.org/rfc/rfc792.txt
|
216
|
+
www.ietf.org/rfc/rfc793.txt,http://www.ietf.org/rfc/rfc793.txt
|
217
|
+
Yeti Media,http://yetimedia.tumblr.com/post/33320732456/moving-forward-with-the-rails-asset-pipeline?utm_source=rubyweekly&utm_medium=email
|
218
|
+
Łukasz Lipiński Portfolio,http://www.uzza.pl/home.html
|