作者 AmosYang (Zzz...) 看板 Soft_Job 標題 Re: [請益] 大四 擔心未來找工作 時間 Mon Apr 7 01:43:31 2014 ───────────────────────────────────────
※ 引述《j999444 (渣94)》之銘言: : 1.像我現在這樣出去找工作能以實習公司的作品去面試嗎? : (因為都是自己在handle case的)
最近正好看到一些 interview 的文章,裡面有一點我覺得很有用
variable repositories { | |
default = { | |
"0" = "fakedata" | |
"1" = "deloominator" | |
} | |
} | |
resource "github_issue_label" "gardening-label" { | |
count = "${length(var.repositories)}" | |
repository = "${lookup(var.repositories, count.index)}" |
### | |
### | |
### UPDATE: For Win 11, I recommend using this tool in place of this script: | |
### https://christitus.com/windows-tool/ | |
### https://github.com/ChrisTitusTech/winutil | |
### https://www.youtube.com/watch?v=6UQZ5oQg8XA | |
### iwr -useb https://christitus.com/win | iex | |
### | |
### |
作者 AmosYang (Zzz...) 看板 Soft_Job 標題 Re: [請益] 大四 擔心未來找工作 時間 Mon Apr 7 01:43:31 2014 ───────────────────────────────────────
※ 引述《j999444 (渣94)》之銘言: : 1.像我現在這樣出去找工作能以實習公司的作品去面試嗎? : (因為都是自己在handle case的)
最近正好看到一些 interview 的文章,裡面有一點我覺得很有用
require "rubygems" | |
require "bundler" | |
require_relative "lib/importer" | |
Bundler.setup | |
desc "Import from Trello board" | |
task :import do | |
Importer.new(File.dirname(__FILE__)).import ENV["ISSUE"] | |
end |
There are a few additional steps I noticed to setting up a Sinatra app to work on Dokku. (These are probably also required for deploying an app to Heroku.)
original app.rb
require 'sinatra'
get '/' do
"Your Sinatra app is not quite Dokku-fied!"
end
namespace :load do | |
task :defaults do | |
set :unicorn_bin, :unicorn_rails | |
set :unicorn_pid, -> { shared_path.join('tmp', 'pids', 'unicorn.pid') } | |
set :unicorn_config, -> { current_path.join('config', 'unicorn.rb') } | |
set :unicorn_gemfile, -> { current_path.join('Gemfile') } | |
set :unicorn_env, -> { fetch(:rails_env) || fetch(:stage) } | |
set :unicorn_roles, :app | |
set :unicorn_sleep, 2 | |
end |
if [ -f "$rvm_path/scripts/rvm" ]; then | |
source "$rvm_path/scripts/rvm" | |
if [ -f ".rvmrc" ]; then | |
source ".rvmrc" | |
fi | |
if [ -f ".ruby-version" ]; then | |
rvm use `cat .ruby-version` | |
fi |
Oniguruma Regular Expressions Version 5.9.1 2007/09/05 | |
syntax: ONIG_SYNTAX_RUBY (default) | |
1. Syntax elements | |
\ escape (enable or disable meta character meaning) | |
| alternation | |
(...) group |