- Afloat - 可以將任意視窗 Always on top
- Spectacle - 可以利用熱鍵調整視窗大小
- CheatSheet - 長按 ⌘ 鍵可以查看熱鍵
- The Unarchiver - 解壓縮工具
- Typora - markdown editor
- AppCleaner - 解安裝工具
- keycastr: KeyCastr - keystroke visualizer 畫面上顯示你按了什麼按鍵
- smcFanControl - 風扇轉速控制
- Sequel Pro - MySQL 工具
- PSequel, a PostgreSQL GUI Tool for macOS - PostgreSQL 工具
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Student < ApplicationRecord | |
include LeadScoring::AttributeChangeListener | |
end | |
module LeadScoring | |
module AttributeChangeListener | |
extend ActiveSupport::Concern | |
included do | |
before_save :collect_changes_for_lead_scoring_notify |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var blocks = [] | |
var articles = Array.apply(null, document.querySelectorAll('div[role="article"].l9j0dhe7')) | |
articles.forEach(article => { | |
var block = [] | |
var name = article.querySelector('span.pq6dq46d span').innerText | |
var contents = Array.apply(null, article.querySelectorAll('li div[dir="auto"]')).map(li => li.innerText) | |
block.push(name) | |
block.push(...contents) | |
blocks.push(block.join("\n")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
劉建慶 | |
1.報名類型 : 平面攝影 | |
2.聯絡姓名 : 劉建慶 | |
3.聯絡方式 : @rdc8337f、0958033892 | |
4.網址作品 : | |
https://www.flickr.com/photos/eightykk/albums | |
https://www.facebook.com/eighty.kk/ | |
5.案件報價: 依方案報價(單人雙機) | |
小恩 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test('two plus two is four', () => { | |
expect(2 + 2).toBe(4) | |
}) | |
test('object assignment', () => { | |
const data = { one: 1 } | |
data['two'] = 2 | |
expect(data).toEqual({ one: 1, two: 2 }) | |
}) |