├── Tools.md ├── Articles.md ├── Practice.md ├── Slides.md ├── Articles ├── Nodejs.md ├── Android.md ├── Ruby.md ├── iOS.md └── Python.md ├── Practice ├── Devops.md ├── CI.md └── Agile.md ├── Tools ├── Ubuntu.md └── MacOSx.md ├── README ├── Gemfile ├── _Footer.md ├── Slides └── iPhoneRestore.pdf ├── Home.md ├── About.md ├── config.ru ├── _Sidebar.md └── Gemfile.lock /Tools.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Articles.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Practice.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Slides.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Articles/Nodejs.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Practice/Devops.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tools/Ubuntu.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Practice/CI.md: -------------------------------------------------------------------------------- 1 | ## Chef -------------------------------------------------------------------------------- /Tools/MacOSx.md: -------------------------------------------------------------------------------- 1 | ## Brew -------------------------------------------------------------------------------- /Articles/Android.md: -------------------------------------------------------------------------------- 1 | ## NDK -------------------------------------------------------------------------------- /Articles/Ruby.md: -------------------------------------------------------------------------------- 1 | ## RVM 2 | -------------------------------------------------------------------------------- /Articles/iOS.md: -------------------------------------------------------------------------------- 1 | ## Three20 -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | [4SsLe](http://wiki.fssle.com) -------------------------------------------------------------------------------- /Articles/Python.md: -------------------------------------------------------------------------------- 1 | ## PyPy 2 | 3 | ## Pip 4 | 5 | ## VirtualEnv -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | 3 | gem 'gollum' 4 | gem 'rdiscount' -------------------------------------------------------------------------------- /_Footer.md: -------------------------------------------------------------------------------- 1 | Thanks 2 | 3 | [gollum](https://github.com/github/gollum) -------------------------------------------------------------------------------- /Practice/Agile.md: -------------------------------------------------------------------------------- 1 | ## TDD 2 | 3 | [[Rspec]] 4 | 5 | ## BDD 6 | 7 | [[Cucumber]] 8 | -------------------------------------------------------------------------------- /Slides/iPhoneRestore.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lite/fssle_wiki/master/Slides/iPhoneRestore.pdf -------------------------------------------------------------------------------- /Home.md: -------------------------------------------------------------------------------- 1 | "Coding for Fun" 2 | 3 | ## [[Articles]] 4 | 5 | ## [[Tools]] 6 | 7 | ## [[Practice]] 8 | 9 | ## [[Slides]] 10 | 11 | ## [[About]] 12 | -------------------------------------------------------------------------------- /About.md: -------------------------------------------------------------------------------- 1 | ID: __Lite__ 2 | 3 | @: 4 | [Blog](http://lite.heroku.com) 5 | 6 | [GitHub](http://github.com/lite) 7 | [Facebook](https://www.facebook.com/litekok) 8 | 9 | -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- 1 | require 'rubygems' 2 | require 'bundler' 3 | 4 | Bundler.require 5 | 6 | require "gollum/frontend/app" 7 | 8 | Precious::App.set(:gollum_path, File.expand_path(File.dirname(__FILE__))) 9 | Precious::App.set(:wiki_options, {}) 10 | run Precious::App 11 | -------------------------------------------------------------------------------- /_Sidebar.md: -------------------------------------------------------------------------------- 1 | #[[Home]] 2 | 3 | ## Articles 4 | 5 | * [[iOS]] 6 | * [[Android]] 7 | * [[Ruby]] 8 | * [[Python]] 9 | * [[Nodejs]] 10 | 11 | ## Tools 12 | 13 | * [[MacOSx]] 14 | * [[Ubuntu]] 15 | 16 | ## Practice 17 | 18 | * [[Agile]] 19 | * [[CI]] 20 | * [[Devops]] 21 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: http://rubygems.org/ 3 | specs: 4 | albino (1.3.3) 5 | posix-spawn (>= 0.3.6) 6 | diff-lcs (1.1.3) 7 | github-markup (0.5.3) 8 | gollum (1.3.1) 9 | albino (~> 1.3.2) 10 | github-markup (>= 0.4.0, < 1.0.0) 11 | grit (~> 2.4.1) 12 | mustache (>= 0.11.2, < 1.0.0) 13 | nokogiri (~> 1.4) 14 | redcarpet 15 | sanitize (~> 2.0.0) 16 | sinatra (~> 1.0) 17 | grit (2.4.1) 18 | diff-lcs (~> 1.1) 19 | mime-types (~> 1.15) 20 | mime-types (1.17.2) 21 | mustache (0.99.4) 22 | nokogiri (1.5.0) 23 | posix-spawn (0.3.6) 24 | rack (1.3.5) 25 | rack-protection (1.1.4) 26 | rack 27 | rdiscount (1.6.8) 28 | redcarpet (1.17.2) 29 | sanitize (2.0.3) 30 | nokogiri (>= 1.4.4, < 1.6) 31 | sinatra (1.3.1) 32 | rack (~> 1.3, >= 1.3.4) 33 | rack-protection (~> 1.1, >= 1.1.2) 34 | tilt (~> 1.3, >= 1.3.3) 35 | tilt (1.3.3) 36 | 37 | PLATFORMS 38 | ruby 39 | 40 | DEPENDENCIES 41 | gollum 42 | rdiscount 43 | --------------------------------------------------------------------------------