Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View Unayung's full-sized avatar
🎉

Chen Chia Yang Unayung

🎉
View GitHub Profile
@Unayung
Unayung / quick reply.rb
Last active January 26, 2021 04:12
快速回覆 related
一則 broadcast 最多一則文字一則圖片一組快回
一項 task 最多一則文字一則圖片一組快回
快速回覆 items 最多都是 13 個
文字部份 800 中文字 ( 1600 characters )
{
"type": "text",
"text": "Select your favorite food category or send me your location!",
"quickReply": {
@Unayung
Unayung / rand_histories.rb
Last active February 17, 2021 08:24
rand histories
def rand_source
a = ['line', 'fb', 'ettoday', 'nonews', 'cti', 'momo', '7-11']
a[rand(7)]
end
def rand_campaign
a = ['0923-加入會員', nil, '年中大促', '週年慶九折', '1111', '1212', '跳樓大拍賣']
a[rand(7)]
end
@Unayung
Unayung / review_1211.md
Last active December 11, 2020 03:33
Sprint Review 1211

Sprint Review

review DoD review shippable items

Sprint Retrospective

review processes good and bad what can be changed

@Unayung
Unayung / webpack.md
Last active September 17, 2020 14:51
webpack

How to using jQuery plugins in Rails 6 with webpacker

for example we want using slick-carousel in our application.

  1. yarn add jquery slick-carousel expose-loader
  2. add following lines in app/javascript/packs/application.js
require('slick-carousel')
require('slick-carousel/slick/slick.css')