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
| <!-- | |
| Violet - The default schema for StarStart! Service | |
| https://github.com/star-inc/butterfly | |
| (c)2020 Star Inc. | |
| This Source Code Form is subject to the terms of the Mozilla Public | |
| License, v. 2.0. If a copy of the MPL was not distributed with this | |
| file, You can obtain one at http://mozilla.org/MPL/2.0/. | |
| --> | |
| <!-- Move to https://github.com/star-inc/violet --> |
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 | |
| # (c) 2020 SuperSonic (https://github.com/supersonictw) | |
| import random | |
| def int_split(num: int): | |
| return [i for i in str(num)] | |
| def int_com(num: list): |
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/bash | |
| # autocompile_golang.bash | |
| # To auto-compile programs for every platforms Go supported | |
| # (c)2020 Star Inc. (https://starinc.xyz) | |
| # https://golang.org/doc/install/source#environment | |
| GOOS_LIST=('android' 'darwin' 'linux') | |
| GOARCH_LIST=('386' 'amd64' 'arm' 'arm64') | |
| BUILD_LOG_LIST='.compile_log' |
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
| #include <reg51.h> | |
| #define LED P1 | |
| // (c) 2020 SuperSonic (https://github.com/supersonictw) | |
| sbit buzzer = P0 ^ 1; | |
| void delay500us(int); | |
| void pulse_bz(int, int, int); |
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
| { | |
| "Afghanistan": { | |
| "zh_TW": "阿富汗", | |
| "location": [ | |
| 33, | |
| 65 | |
| ] | |
| }, | |
| "Albania": { | |
| "zh_TW": "阿爾巴尼亞", |
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
| <?php | |
| /** | |
| * Given a URL, normalize that URL. | |
| * @param String URL | |
| * @return String Normalized URL | |
| */ | |
| function normalizeUrl($input_url) | |
| { | |
| $newUrl = ""; | |
| $url = parse_url($input_url); |
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(){ | |
| const app = document.getElementById("app").__vue__; | |
| setInterval(()=>{ | |
| app.bot=false; | |
| app.accumulator = 800; | |
| }, 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
| # Security updates | |
| deb http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware | |
| deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware | |
| ## Debian mirror | |
| # Base repository | |
| deb http://opensource.nchc.org.tw/debian bookworm main contrib non-free non-free-firmware | |
| deb-src http://opensource.nchc.org.tw/debian bookworm main contrib non-free non-free-firmware |
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
| [ | |
| { | |
| "zone": "Pacific/Midway", | |
| "gmt": "(GMT-11:00)", | |
| "name": "Midway Island" | |
| }, | |
| { | |
| "zone": "US/Samoa", | |
| "gmt": "(GMT-11:00)", | |
| "name": "Samoa" |
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
| [ | |
| { "code": "aa", "name": "Afar" }, | |
| { "code": "ab", "name": "Abkhazian" }, | |
| { "code": "ae", "name": "Avestan" }, | |
| { "code": "af", "name": "Afrikaans" }, | |
| { "code": "ak", "name": "Akan" }, | |
| { "code": "am", "name": "Amharic" }, | |
| { "code": "an", "name": "Aragonese" }, | |
| { "code": "ar", "name": "Arabic" }, | |
| { "code": "as", "name": "Assamese" }, |
OlderNewer