- Sign into https://tiktok.com and go to your profile
- Click favorites or likes
- scroll down till all your videos load
- paste the script in console and run it
- Script will download the file containing newline-delimited links
- download via yt-dlp like so:
This is a rough outline on how to setup altserver-linux
on the 🍓🍰. Wifi refreshing is enabled through the use of netmuxd
, which acts as a proxy from AltServer
to the iDevice (replaces/enhances usbmuxd
).
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>HTML5 Canvas Rectangles</title> | |
<style> | |
body { | |
margin: 0; | |
display: flex; |
#pragma once | |
#include <vector> | |
#include <array> | |
#include <string> | |
#include <string_view> | |
#include <cstdint> | |
#include <algorithm> | |
#include <format> | |
#include <iostream> |
const VietQR = require("./vietQR"); | |
const vietQR = new VietQR(); | |
vietQR | |
.setBeneficiaryOrganization("970423", "mynamebvh") | |
.setTransactionAmount("50000") | |
.setAdditionalDataFieldTemplate("test"); | |
console.log(vietQR.build()); |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Canvas Game with Mouse Rotation</title> | |
<style> | |
body { | |
margin: 0; | |
display: flex; |
@echo off | |
:: ------------------------------------------------------------------------------------------------------------ | |
:: Clean Up ASUS All | |
:: ------------------------------------------------------------------------------------------------------------ | |
:: The tool helps to clean up all ASUS software from system | |
:: ------------------------------------------------------------------------------------------------------------ | |
:: Before running the tools, | |
:: 1. Complete backup your system. | |
:: 2. Disable ASUS Apps from BIOS (MyASUS and Armoury) | |
:: 3. Run ASUS remove tools (Armoury Crate Uninstall Tool.exe, or geek_uninstall.exe). |
Answer: All APIs of Node.js library are aynchronous that is non-blocking. It essentially means a Node.js based server never waits for a API to return data. Server moves to next API after calling it and a notification mechanism of Events of Node.js helps server to get response from the previous API call.
Source: tutorialspoint.com
Default meta prompt collection: https://gist.github.com/pyros-projects/c77402249b5b45f0a501998870766ae9
Meta prompt collection with creating summaries and context sync (use them when using Cline or other coding assistants): https://gist.github.com/pyros-projects/f6430df8ac6f1ac37e5cfb6a8302edcf
#!/usr/bin/env bash | |
# checck if pidof exists | |
PIDOF="$(which pidof)" | |
# and if not - install it | |
(test "${PIDOF}" && test -f "${PIDOF}") || brew install pidof | |
# find app in default paths | |
CO_PWD=~/Applications/CrossOver.app/Contents/MacOS | |
test -d "${CO_PWD}" || CO_PWD=/Applications/CrossOver.app/Contents/MacOS |