- 什么是Java
- 跨平台
- 性能
- 应用场景
- Java的运行环境
- 环境变量
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
| Data Structures | |
| - Stacks | |
| - Queues | |
| - Linked lists | |
| - Graphs | |
| - Trees | |
| - Tries | |
| Concepts | |
| - Big O Notation |
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
| // URL of the endpoint we're going to contact. | |
| NSURL *url = [NSURL URLWithString:@"http://localhost:8080/my.json"]; | |
| // Create a simple dictionary with numbers. | |
| NSDictionary *dictionary = @{ @"numbers" : @[@1, @2, @3] }; | |
| // Convert the dictionary into JSON data. | |
| NSData *JSONData = [NSJSONSerialization dataWithJSONObject:dictionary | |
| options:0 | |
| error:nil]; |
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 system static-host-mapping host-name aaid.umeng.com inet 127.0.0.1 | |
| set system static-host-mapping host-name abtest-ch.snssdk.com inet 127.0.0.1 | |
| set system static-host-mapping host-name activity-aghbwh.awemeughun.com inet 127.0.0.1 | |
| set system static-host-mapping host-name ai.login.umeng.com inet 127.0.0.1 | |
| set system static-host-mapping host-name api1.kuaishoupay.com inet 127.0.0.1 | |
| set system static-host-mapping host-name api3-core-c-lf.amemv.com inet 127.0.0.1 | |
| set system static-host-mapping host-name api3-normal-c-lf.amemv.com inet 127.0.0.1 | |
| set system static-host-mapping host-name api5-core-c-lf.amemv.com inet 127.0.0.1 | |
| set system static-host-mapping host-name api5-normal-c-lf.amemv.com inet 127.0.0.1 | |
| set system static-host-mapping host-name api100-core-c333.amemv.com inet 127.0.0.1 |
- Hum 151010 URL Schemes 使用详解
- Hum 160427 OmniFocus 的 URL Schemes 用法
- Hum 171115 通过 Bear 来认识 Launch Center Pro 的进阶用法
- Hum 171122 通过 Bear 来认识 Drafts 的 [[line]] 用法
- Hum 180518 入门 iOS 自动化:读懂 URL Schemes
- Hum 180823 Universal Link 使用详解
- Hum 181229 x-callback-URL 的使用方法
- JamesHopbourn 210204 Drafts + vim = URL Scheme 复用
- JamesHopbourn 210405 Drafts 5 与 Bear 联手,让我可以快速追加笔记
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
| (* | |
| Export All Safari Tabs in All Open Windows to a Markdown File | |
| July 13, 2015 | |
| // SCRIPT PAGE | |
| http://hegde.me/urlsafari | |
| // ORIGINAL SCRIPT ON WHICH THIS SCRIPT IS BUILT | |
| http://veritrope.com/code/export-all-safari-tabs-to-a-text-file |
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
| javascript: (function() { | |
| function copyToClipboard(text) { | |
| if (window.clipboardData && window.clipboardData.setData) { | |
| return clipboardData.setData("Text", text); | |
| } else if (document.queryCommandSupported && document.queryCommandSupported("copy")) { | |
| var textarea = document.createElement("textarea"); | |
| textarea.textContent = text; | |
| textarea.style.position = "fixed"; | |
| document.body.appendChild(textarea); | |
| textarea.select(); |
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 | |
| fswatch ~/Desktop/1 | while read file | |
| do | |
| rsync -trl --delete ~/Desktop/1 ~/Desktop/2 | |
| now=$(date +"%T") | |
| echo "⚠️ $now ${file} synced" | |
| done | |
| #https://imqsc.xyz/2018/10/16/fswatch-and-rsync/ |