Displaying Github new feeds of your organization.
gem faraday
| Interface | |
| $ winch setup | |
| -> where to push? | |
| -> where is docker? | |
| $ winch up podbot.container | |
| * start container | |
| $ winch down podbot | |
| * stop container |
| class Dashing.FizzBuzz extends Dashing.Widget | |
| ready: -> | |
| # ここは初期化時に実行したいエフェクトを書く | |
| onData: (data) -> | |
| $(@node).fadeOut().fadeIn() |
| # Deleting rule with line number | |
| iptables -t <Table> --line-numbers --list | |
| iptables -t <Table> -D PREROUTING <Line Number> |
| require 'sinatra/base' | |
| module Sensive | |
| class DocServer < Sinatra::Base | |
| def self.run!(params={}) | |
| super | |
| end | |
| basedir = "./data" |
| # sleep 1 sec | |
| time.Sleep(1000 * time.Millisecond) |
| # | |
| # Linux/x86_64 3.13.11.2 Kernel Configuration | |
| # | |
| CONFIG_64BIT=y | |
| CONFIG_X86_64=y | |
| CONFIG_X86=y | |
| CONFIG_INSTRUCTION_DECODER=y | |
| CONFIG_OUTPUT_FORMAT="elf64-x86-64" | |
| CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" | |
| CONFIG_LOCKDEP_SUPPORT=y |
| PATH | |
| remote: ~/git/lotus | |
| specs: | |
| lotusrb (0.1.0) | |
| lotus-controller (~> 0.2) | |
| lotus-router (~> 0.1, >= 0.1.1) | |
| lotus-utils (~> 0.2) | |
| lotus-view (~> 0.2) | |
| thor (= 0.19.1) |
| require 'bundler/setup' | |
| require 'sqlite3' | |
| require 'lotus/model' | |
| require 'lotus/model/adapters/sql_adapter' | |
| connection_uri = "sqlite://#{ __dir__ }/test.db" | |
| database = Sequel.connect(connection_uri) | |
| database.create_table! :authors do |
| require 'lotus/model' | |
| require 'sequel' | |
| require 'sqlite3' | |
| require 'minitest/autorun' | |
| require 'pp' | |
| class Fruit | |
| include Lotus::Entity | |
| self.attributes = :type, :taste |