出處:https://home.gamer.com.tw/creationDetail.php?sn=2927540
原始版本每一條的格式不太整齊,因此整理一下貼到這來ww
- 買個鎮暴槍去人家生存版說要打生存 鬧到眾人皆恥笑
- 去EYNY取暖結果搞到帳號被禁止訪問
- 到女巴友小屋言語騷擾 問人家是不是處女
- 拿著一台最基本的代步工具當寶四處炫 還不是自己賺來的 是親戚家出的錢
- 月薪不到22K生活堪慮卻硬要打腫臉充胖子 硬要學人買iPhone
出處:https://home.gamer.com.tw/creationDetail.php?sn=2927540
原始版本每一條的格式不太整齊,因此整理一下貼到這來ww
| /* | |
| This test code is write for Arduino AVR Series(UNO, Leonardo, Mega) | |
| If you want to use with LinkIt ONE, please connect the module to D0/1 and modify: | |
| // #include <SoftwareSerial.h> | |
| // SoftwareSerial s_serial(2, 3); // TX, RX | |
| #define sensor Serial1 | |
| */ |
| <p><%= @supplier.name %>您好:</p> | |
| 下列連結是小院<%= @month %>月份的平台服務費金額,煩請依連結付款: | |
| <p>付費流程如下:</p> | |
| <a href="<%= @payment_link %>" target="_blank"><%= @payment_link %></a> | |
| <ol> | |
| <li>點選連結,確認資料無誤,送出資料,系統會產生一組轉帳帳號。</li> |
migration
class AddUploadableToUploadFile < ActiveRecord::Migration[5.2]
def change
add_reference :upload_files, :uploadable, index: true
end
endmodels/upload_file.rb
| 1 | |
| 00:00:28,600 --> 00:00:38,390 | |
| 如果世上有一種眼神能比說話更能令人互相諒解 | |
| 2 | |
| 00:00:38,400 --> 00:00:48,300 | |
| 那麼所有人便能不再迷惘和平地活下去 | |
| 3 | |
| 00:00:48,310 --> 00:00:51,490 |
| # copy from https://ruby-china.org/topics/24693 | |
| desc "Database related tasks" | |
| namespace :database do | |
| desc "Convert to utf8mb4" | |
| task convert_to_utf8mb4: :environment do | |
| connection = ActiveRecord::Base.connection | |
| database = connection.current_database | |
| connection.execute "ALTER DATABASE #{database} CHARACTER SET = utf8mb4 COLLATE = utf8mb4_unicode_ci;" |
| // reference http://stackoverflow.com/questions/3653065/get-local-ip-address-in-node-js | |
| var express = require('express'); | |
| var app = express(); | |
| var os = require('os'); | |
| var ifaces = os.networkInterfaces(); | |
| app.get('/', function (req, res) { | |
| res.send('Hello World!'); | |
| }); |
| # Try to create a "Person" model,that we can use the "children" method below. | |
| tom = Person.create(name: "Tom") | |
| may = Person.create(name: "May", parent: tom) | |
| syd = Person.create(name: "Syd", parent: tom) | |
| tom.children.map(&:name) | |
| # => ["Syd", "May"] | |
| # Furthermore,can you design "grandchildren" method that we can use it like this? | |
| wen = Person.create(name: "Wen", parent: syd) | |
| jon = Person.create(name: "Jon", parent: may) | |
| tom.grandchildren.map(&:name) |
| function echo_branches(){ | |
| // branches, bs | |
| $bs = shell_exec('git branch'); | |
| $bs = explode(PHP_EOL, $bs); | |
| // output | |
| $o = array(); | |
| foreach ($bs as $k => $b) { | |
| if( strlen($b) <= 0 ){ |
| var init = function(options){ | |
| if(typeof options !== 'object'){ | |
| options = {}; | |
| } | |
| options.a = options.a || ''; | |
| options.b = options.b || ''; | |
| options.c = options.c || ''; | |
| } | |
| var my_init = new Init({ |