- キー配置の変更
- Karabiner(KeyRemap4MacBookから名前が変わりました)
- ショートカットカスタマイズ
- BetterTouchTool(タッチパッドによるショートカットが便利。3本指クリックでタブ閉じとかできる)
- アプリランチャー
- Alfred
- ちょっとした計算もできたり、有料の拡張でアプリ連携などが容易になる
- Flashlight
- Alfred
- 標準Spotlightを強化してくれる。最近話題になってきた。
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
| import requests | |
| from datetime import datetime, timedelta | |
| TOKEN = "" | |
| USERNAME = "" | |
| one_month_ago = (datetime.now() - timedelta(days=30)).isoformat() | |
| headers = { | |
| "Authorization": f"token {TOKEN}", |
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
| package main | |
| import ( | |
| "crypto/tls" | |
| "fmt" | |
| "io" | |
| "log" | |
| "net" | |
| "net/textproto" | |
| "strconv" |
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
| module gist.github.com/3e268b08b9427b45941f5d3b88dbceb7 | |
| go 1.20 | |
| require ( | |
| github.com/aws/aws-sdk-go-v2 v1.17.8 | |
| github.com/aws/aws-sdk-go-v2/config v1.18.21 | |
| github.com/aws/aws-sdk-go-v2/service/route53 v1.27.7 | |
| golang.org/x/sync v0.1.0 | |
| ) |
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
| const table = document.querySelector('table.settings'); | |
| const settingsRow = Array.from(table.querySelectorAll('tr.settingsRow')); | |
| const folderName = document.querySelector('#sharedFolderDialogTitle').innerText.replace('Manage Shared Folder: ', '') ; | |
| const rows = settingsRow.map(tr => { | |
| const row = []; | |
| row.push(folderName); | |
| tr.querySelectorAll('td').forEach(td => { | |
| if (td.className == 'name') { | |
| row.push(td.innerText); |
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
| package main | |
| import ( | |
| "flag" | |
| "time" | |
| "github.com/YOwatari/kinesis-aggregation-go" | |
| "github.com/a8m/kinesis-producer" | |
| "github.com/aws/aws-sdk-go/aws" | |
| "github.com/aws/aws-sdk-go/aws/session" |
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
| diff -up ext/openssl/ossl.c.ossl10 ext/openssl/ossl.c | |
| --- ext/openssl/ossl.c.ossl10 2007-02-13 00:01:19.000000000 +0100 | |
| +++ ext/openssl/ossl.c 2009-08-26 12:29:41.000000000 +0200 | |
| @@ -92,7 +92,7 @@ ossl_x509_ary2sk(VALUE ary) | |
| #define OSSL_IMPL_SK2ARY(name, type) \ | |
| VALUE \ | |
| -ossl_##name##_sk2ary(STACK *sk) \ | |
| +ossl_##name##_sk2ary(STACK_OF(type) *sk) \ | |
| { \ |
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
| package main | |
| import "fmt" | |
| // fibonacci is a function that returns | |
| // a function that returns an int. | |
| func fibonacci() func() int { | |
| n1, n2 := 0, 1 |
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
| #!/usr/bin/env python | |
| # coding: utf-8 | |
| import random | |
| # 学習条件 | |
| ALPHA = 0.2 # Learning raito | |
| GAMMA = 0.9 # discount ratio | |
| SIGMA = 0.2 # greeding ratio | |
| LEARNING_COUNT = 1000 |
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 hex2rgb(HexColor As String) As Long | |
| 'HEX表記をRGB値に変換する | |
| Color = Replace(HexColor, "#", "") | |
| Red = CInt("&H" & Mid(Color, 1, 2)) | |
| Green = CInt("&H" & Mid(Color, 3, 2)) | |
| Blue = CInt("&H" & Mid(Color, 5, 2)) | |
| hex2rgb = RGB(Red, Green, Blue) | |
| End Function | |
| Function Reset() | |
| With ActivePresentation |
NewerOlder