... to toy with and run curl against it.
This is not advice on how to run anything in production. This is for development and experimenting.
An existing local HTTP/1.1 server that hosts files. Preferably also a few huge ones.
| // ============================================================================= | |
| // XNU kperf/kpc demo | |
| // Available for 64-bit Intel/Apple Silicon, macOS/iOS, with root privileges | |
| // | |
| // | |
| // Demo 1 (profile a function in current thread): | |
| // 1. Open directory '/usr/share/kpep/', find your CPU PMC database. | |
| // M1 (Pro/Max/Ultra): /usr/share/kpep/a14.plist | |
| // M2 (Pro/Max): /usr/share/kpep/a15.plist | |
| // M3: /usr/share/kpep/as1.plist |
| // ==UserScript== | |
| // @name Auto Skip YouTube Ads | |
| // @version 1.0.2 | |
| // @description Speed up and skip YouTube ads automatically | |
| // @author codiac-killer | |
| // @match *://*.youtube.com/* | |
| // @exclude *://*.youtube.com/subscribe_embed?* | |
| // ==/UserScript== | |
| let main = new MutationObserver(() => { |
| javascript: Promise.all([import('https://unpkg.com/turndown@6.0.0?module'), import('https://unpkg.com/@tehshrike/readability@0.2.0'), ]).then(async ([{ | |
| default: Turndown | |
| }, { | |
| default: Readability | |
| }]) => { | |
| /* Optional vault name */ | |
| const vault = ""; | |
| /* Optional folder name such as "Clippings/" */ |
This is a list of the most commonly used and relevant vtubing software. The "best" will always be subjective and depend on your specific requirements. Overall, the information in this list is as accurate as I could figure it out, but there might be errors or some details might become out of date. If you find anything that needs to be corrected, please let me know. You can also note it in a comment.
Additional explanations:
| // | |
| // ContentView.swift | |
| // Example of using matchedGeometryEffect in iOS 13 code | |
| // matchedGeometryEffect example code taken and adapted from : | |
| // https://sarunw.com/posts/a-first-look-at-matchedgeometryeffect/ | |
| // | |
| // Created by Emil Pedersen on 16/10/2020. | |
| // | |
| struct ContentView: View { |
yarn add -D tailwindcss twin.macro autoprefixer babel-plugin-macros styled-components
| import _ from 'underscore' | |
| import { combineReducers } from 'redux' | |
| /** | |
| * translate vuex to redux | |
| */ | |
| const translator = { | |
| action: (name) => (action) => (...args) => (dispatch, getState) => { | |
| let state = getState() | |
| return action({ |
| override func viewDidAppear(_ animated: Bool) { | |
| view.window?.scaleFactor = 1.0 // Default value is 0.77 | |
| } | |
| extension UIWindow { | |
| var scaleFactor: CGFloat { | |
| get { | |
| Dynamic.NSApplication.sharedApplication | |
| .windows.firstObject.contentView | |
| .subviews.firstObject.scaleFactor ?? 1.0 |