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 python3 | |
| # { | |
| # "Id": "8b8a1b35-3d9e-4d7d-9f2e-3b1d0b7f9e10", | |
| # "Name": "IP Geolocation", | |
| # "Author": "qianlifeng", | |
| # "Version": "1.0.0", | |
| # "MinWoxVersion": "2.0.0", | |
| # "Description": "Show local/public IPs and query geolocation via ip-api.com", | |
| # "Icon": "emoji:📍", | |
| # "TriggerKeywords": ["ip"], |
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 python3 | |
| # { | |
| # "Id": "6f920562-1570-4e63-991b-0b39e7d4a2e9", | |
| # "Name": "每日 60 秒新闻", | |
| # "Author": "qianlifeng", | |
| # "Version": "1.0.1", | |
| # "MinWoxVersion": "2.0.0", | |
| # "Description": "基于 https://60s.viki.moe/v2/60s 的每日新闻展示", | |
| # "Icon": "base64:data:image/jpeg;base64,/9j/2wCEAAgGBgcGBQgHBwcJCQgKDBQNDAsLDBkSEw8UHRofHh0aHBwgJC4nICIsIxwcKDcpLDAxNDQ0Hyc5PTgyPC4zNDIBCQkJDAsMGA0NGDIhHCEyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMv/AABEIADAAMAMBIgACEQEDEQH/xAGiAAABBQEBAQEBAQAAAAAAAAAAAQIDBAUGBwgJCgsQAAIBAwMCBAMFBQQEAAABfQECAwAEEQUSITFBBhNRYQcicRQygZGhCCNCscEVUtHwJDNicoIJChYXGBkaJSYnKCkqNDU2Nzg5OkNERUZHSElKU1RVVldYWVpjZGVmZ2hpanN0dXZ3eHl6g4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV1tfY2drh4uPk5ebn6Onq8fLz9PX29/j5+gEAAwEBAQEBAQEBAQAAAAAAAAECAwQFBgcICQoLEQACAQIEBAMEBwUEBAABAncAAQIDEQQFITEGEkFRB2FxEyIygQgUQpGhscEJIzNS8BVictEKFiQ04SXxFxgZGiYnKCkqNTY3ODk6Q0RFRkdISUpTVFVWV1hZWmNkZWZnaGlqc3R1dnd4eXqCg4SFhoeIiYqSk5SVlpeYmZqio6Slpqeoqaqys7S1tre4ubrCw8TFxsfIycrS09TV |
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 python3 | |
| # { | |
| # "Id": "d4cf7d41-5cc2-4c21-8ee6-fbd6ca950c6a", | |
| # "Name": "Recent Files", | |
| # "Author": "qianlifeng", | |
| # "Version": "1.0.0", | |
| # "MinWoxVersion": "2.0.0", | |
| # "Description": "List recently used files.", | |
| # "Icon": "emoji:🕘", | |
| # "TriggerKeywords": ["recent"], |
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 python3 | |
| # { | |
| # "Id": "25cb95b8-af4c-4ccb-82d6-38843a9999c1", | |
| # "Name": "UUID Generator", | |
| # "Author": "qianlifeng", | |
| # "Version": "1.0.0", | |
| # "MinWoxVersion": "2.0.0", | |
| # "Description": "Generate various types of UUIDs", | |
| # "Icon": "emoji:🆔", | |
| # "TriggerKeywords": ["uuid"], |
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
| // /Users/qianlifeng/Library/KeyBindings/DefaultKeyBinding.dict | |
| // Actions: http://xahlee.info/kbd/osx_keybinding_action_code.html | |
| { | |
| "\UF729" = moveToBeginningOfLine:; // home | |
| "\UF72B" = moveToEndOfLine:; // end | |
| "$\UF729" = moveToBeginningOfLineAndModifySelection:; // shift-home | |
| "$\UF72B" = moveToEndOfLineAndModifySelection:; // shift-end | |
| "^a" = selectAll:; // ctrl-A | |
| "^v" = paste:; // ctrl-V | |
| } |
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
| from mitmproxy import flowfilter | |
| from mitmproxy import ctx | |
| class Intercept: | |
| def response(self, flow): | |
| if flow.request.url == "https://www.zbg.com/exchange/fund/controller/website/fundwebsitecontroller/getpayoutcoinrecord": | |
| flow.response.text = r'xxxxxx' | |
| addons = [ |
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
| ssh -C -f -N -R 3304:192.168.8.4:3306 test.fcgylapp.cn |
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
| #-- base settings --# | |
| set -g default-terminal "screen-256color" | |
| set -g display-time 3000 | |
| set -g escape-time 0 | |
| set -g history-limit 65535 | |
| set -g base-index 1 | |
| set -g pane-base-index 1 | |
| # modify prefix to activate tmux | |
| set-option -g prefix C-a |
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
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |
NewerOlder