Skip to content

Instantly share code, notes, and snippets.

View jk195417's full-sized avatar

楊竑昕 jk195417

View GitHub Profile

Rails 開發 環境填坑之旅 (vue nokogiri)

版本: Rails 4.2 錯誤: gem Nokogiri

旅途是怎麼開始的

事情是這樣開始的,我正開心的用著 vue-rails 的 gem (裏面原本是 vue 1.0) 做些前端頁面,但是今天用的時候 chrome 的 console 報錯了...

Uncaught TypeError: Cannot read property 'indexOf' of undefined

奇怪耶!但是想達到的效果也正確的出來了,不夠身為一個有尊嚴的程式設計師,怎麼能夠允許 console 右上方有個紅色的叉叉呢!

@jk195417
jk195417 / atom_packages.md
Last active September 23, 2017 09:18
我的 Atom Packages
  1. atom-beautify
  2. color-picker
  3. double-tag
  4. emmet
  5. file-icons
  6. git-plus
  7. markdown-pdf
  8. markdown-writer
  9. minimap
  10. pigments

命令列字元過濾器 ripgrep
brew install ripgrep

ShareX

Popcorn Time sh

Listary

Franz

@jk195417
jk195417 / Facebook 自動回戳.md
Last active November 21, 2017 14:38
poke 翻那些想要 poke 你的朋友們

Facebook 自動回戳

  1. 用 chrome 登入 facebook
  2. 連到 https://www.facebook.com/pokes
  3. 滑鼠在網頁上按 右鍵 > 檢查 > Console
  4. 複製下面的 javascript 程式貼入 Console 中
function pokeBack() {
  var btns = [...document.querySelectorAll('a[ajaxify^="/pokes/inline/?"]')]
  var pokeBackBtns = btns.filter(btn => btn.textContent === "戳回去");
@jk195417
jk195417 / publish-ghpages.md
Created January 4, 2018 13:13 — forked from tduarte/publish-ghpages.md
If you need to force push an subtree
git checkout master # you can avoid this line if you are in master...
git subtree split --prefix dist -b gh-pages # create a local gh-pages branch containing the splitted output folder
git push -f origin gh-pages:gh-pages # force the push of the gh-pages branch to the remote gh-pages branch at origin
git branch -D gh-pages # delete the local gh-pages because you will need it: ref
@jk195417
jk195417 / example.js
Created March 31, 2018 04:33
redis sub example
var redis = require("redis");
// open connection
var redis_url = "redis://password@host:port"
var sub = redis.createClient(redis_url)
// subscribe channel test
sub.on("message", function (channel, message) {
console.log("sub channel " + channel + ": " + message);
});
-- 6-5-1
insert into Product(pNo, pName, unitPrice, category)
values('b10000', '總統之路', 300, 'Book' );
insert into Author(pNo, name)
values('b10000', '陳水扁');
insert into Member(mid, pid, name)
values('a00001', 'c1000000000', 'Mary');
insert into Browse(mid, pNo, browseTime)
values('a00001', 'b10000', to_date('2003-04-05:09:00:08', 'YYYY-MM-DD:HH24:MI:SS'));