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
| {"v":"5.6.7","fr":29.9700012207031,"ip":0,"op":54.0000021994651,"w":1440,"h":1024,"nm":"export loading","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[752.187,509.812,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[60,60,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"bm":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
| /*自定义样式,实时生效*/ | |
| /* 全局属性 | |
| * 页边距 padding: 30px; | |
| * 全文字体 font-family: ptima-Regular; | |
| * 英文换行 word-break: break-all; | |
| */ | |
| #nice { | |
| font-size: 13px; | |
| } |
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
| brew tap homebrew/cask-fonts | |
| brew cask install font-fira-code | |
| brew cask install font-jetbrains-mono |
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
| { | |
| "breadcrumbs.enabled": true, | |
| "city-lights-icons-vsc.hidesExplorerArrows": false, | |
| "customizeUI.font.monospace": "JetBrains Mono", | |
| "customizeUI.font.regular": "SF Pro Text", | |
| "customizeUI.fontSizeMap": { | |
| "12px": "11px", | |
| "13px": "11px", | |
| "menu": "13px", | |
| "monospace": "12px", |
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
| set deviceName to "客廳" | |
| readyQuickTime() | |
| setVideoInput(deviceName) | |
| on readyQuickTime() | |
| tell application "QuickTime Player" | |
| set newMovieRecording to new movie recording | |
| delay 1 | |
| end tell |
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
| // | |
| // View.swift | |
| // SyncNext | |
| // | |
| // Created by 黃佁媛 on 2021/10/28. | |
| // | |
| // Text("debug") | |
| // .debugOnlyBackground() | |
| // |
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
| # See https://github.com/rikumi/iconsur | |
| yarn global add iconsur | |
| sudo iconsur set /Applications/Android\ File\ Transfer.app -k Airdroid | |
| sudo iconsur set /Applications/Android\ Studio.app/ -l -c 7a5 -s 0.8 | |
| sudo iconsur set /Applications/DaisyDisk.app/ -l | |
| sudo iconsur set /Applications/Decompressor.app/ -l | |
| sudo iconsur set /Applications/Discord.app/ | |
| sudo iconsur set /Applications/Google\ Chrome.app/ | |
| sudo iconsur set /Applications/IINA.app/ -l -c 161d22 |
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
| // | |
| // modification.swift | |
| // Nomad | |
| // | |
| // Created by 黃佁媛 on 2021/12/17. | |
| // | |
| import Foundation | |
| import SwiftUI |
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
| func sendMessage(type: String, title: String, text: String) async { | |
| let messageHost: String = "https://discord.com/api/webhooks/.../..." | |
| let sysVersion = await UIDevice.current.systemVersion | |
| let urlParams = [ | |
| "content": "[Syncnext tvOS] \r\(await UIDevice.current.name) · \(sysVersion) \r- \(type) \r- \(title) \r- \(text)\n\r", | |
| ] | |
| let headers = [ | |
| "Content-Type": "application/json; charset=utf-8", | |
| ] |
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
| #!/bin/zsh | |
| function buildTest() { | |
| clear | |
| cp -rf ./lib/common/config_test.txt ./lib/common/config.dart | |
| EX_FOLDER="app-test" | |
| cat ./lib/common/config.dart | |
| echo "// ===" | |
| buildiOS | |
| buildAndroid |