这里是由 Moeyua 搜集、整理、维护的、个人自用的收藏列表。
一些在线的工具,可能是日常会用到的工具,也可能是开发相关的工具
- bookmark.style - 可以将任意链接转换生成可分享的图片。
- tldraw - 一个画图的地方。
这里是由 Moeyua 搜集、整理、维护的、个人自用的收藏列表。
一些在线的工具,可能是日常会用到的工具,也可能是开发相关的工具
import SwiftUI | |
import RevenueCat | |
struct Constants { | |
static let apiKey = "<your_api_key>" // Will look like: appl_bunchofotherstuffhere | |
static let entitlementName = "<your_entitlement_name>" // I use something like "pro" | |
} | |
@main | |
struct ATinySampleApp: App { |
All grep, sed, jq and awk related commands |
public class Vector2D { | |
public double x; | |
public double y; | |
public Vector2D() { } | |
public Vector2D(double x, double y) { | |
this.x = x; |
const { spawn } = require('child_process'); | |
const videoUrls = ["YOUR-TIKTOK-VIDEO-THAT-YOU-WANT-TO-DOWNLOAD"]; | |
async function downloadVideo(videoUrl) { | |
return new Promise((resolve, reject) => { | |
const ytDlpProcess = spawn('yt-dlp', [videoUrl]); | |
ytDlpProcess.stdout.on('data', (data) => { | |
console.log(`yt-dlp stdout: ${data}`); |
# User Input: | |
[TASK]: <DESCRIBE YOUR TASK> | |
[PROJECT OVERVIEW]: <ENTER PROJECT OVERVIEW, OR LINK TO FILE CONTAINING THE DETAILS> | |
[MAIN BRANCH]: <YOUR MAIN BRANCH> | |
[YOLO MODE]: <ask|on|off> | |
--- | |
# Global Objectives | |
1. Read the "User Input" at the bottom |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000