Install suggested plugin
- Folders Plugin
- OWASP Markup Formatter Plugin
- build timeout plugin
- Credentials Binding Plugin
- Timestamper Workspace Cleanup Plugin
- Ant Plugin Gradle Plugin
- Pipeline GitHub Organization
- Folder Plugin
Install suggested plugin
| lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom \ | |
| | while read i; do | |
| sudo rm /usr/local/${i} | |
| done | |
| sudo rm -rf /usr/local/lib/node \ | |
| /usr/local/lib/node_modules \ | |
| /var/db/receipts/org.nodejs.* | |
| sudo rm -rf ~/.npm |
| $ git annotate <ファイル名> |
| export RUBY_DEBUG_PORT=1234 | |
| export POW_WORKERS=1 |
| "no ruby, no life!" | |
| # => {"no"=>2,"ruby"=>1,"life"=>1} | |
| str = "no ruby, no life!" | |
| # A.1 | |
| str.scan(/\w+/).each_with_object(Hash.new(0)){|e,h| h[e]+=1} | |
| # => {"no"=>2, "ruby"=>1, "life"=>1} | |
| # A.2 |
| { | |
| String range = "A1:C5" | |
| CellRangeAddress address = CellRangeAddress.valueOf(range); | |
| int firstRow = address.getFirstRow(); | |
| int lastRow = address.getLastRow(); | |
| int firstColumn = address.getFirstColumn(); | |
| int lastColumn = address.getLastColumn(); | |
| } |
| class Lottery | |
| def initialize(winners) | |
| @winners = winners | |
| @ary = [] | |
| end | |
| def add(name, weight) | |
| @ary += Array.new(weight, name) | |
| end |
| {{ "4048687158" | amazon_medium_image }} | |
| {{ "4798122971" | amazon_medium_image }} |
| Marco Tempest: What I'd like to show you today | |
| 今日お見せするのは | |
| is something in the way of an experiment. | |
| まだ実験中のものです | |
| Today's its debut. | |
| 今日が初披露になります | |
| It's a demonstration of augmented reality. |
| # -*- encoding: utf-8 -*- | |
| # TED Subtitles sample | |
| require 'json' | |
| require 'open-uri' | |
| base_url = 'http://www.ted.com/talks/subtitles' | |
| id = 1405 | |
| url_en = "#{base_url}/id/#{id.to_s}/lang" |