Accepts input as a list of UTF-32 codepoints and returns a Number.
let isNewline: Number -> Boolean =
(x: Number) -> x == 10
let isDigit: Number -> Boolean =
(x: Number) -> (x >= 48) && (x < 58)
(a guide by sylvie (@lostkagamine). tested, should work fine.)
(Korean version / νκ΅μ΄ λ²μ / Chinese version / δΈζη)
New: FAQ has been updated for ReShade 5.7.0 features.
If you are having issues like the screen turning black, read the mini-FAQ at the bottom of this document!
For some reason IDA executes FreeLibrary() to the plugin immediately after getting its PLUGIN structure's address, so later invocations of the plugin lead to calls to nowhere (that was supposed to be python3.dll). Simply patching the location of the FreeLibrary() call fixes the issue. The location is easy to find: go by cross-references to a place where the call to FreeLibrary is followed by a reference to the string "%s: incompatible plugin version..." and NOP it away.
const dgram = require("dgram"); | |
const ip = process.argv[2]; | |
const port = process.argv[3] || 27015; | |
if (!ip) { | |
console.log("giv ip"); | |
process.exit(1); | |
} |
Enabling .NET Standard support on UWP apps targeting 15063 or below is relatively simple.
Set your project's TargetPlatformMinVersion
to anything above 15063, for this I've always used 16299 but other SDKs should work the same way
Open your .csproj
file in a text editor (right click, "Unload project", right click again, "Edit project file"), and add the following 2 lines to the first property group.
/* | |
TTY, A The Lounge Theme bodged together by | |
ββββββββββββββββββββββββ | |
ββββββββββββββββββββββββ | |
ββββββββββββββββββββββββ | |
ββββββββββββββββββββ | |
ββββββββββββββββββββ | |
ββββββββββββββββββββ | |
Needs "One Dark" theme because based upon that, | |
"npm install thelounge-theme-onedark" |
I ran into the battle of running all of my VMs and the host node under a single public IP address. Luckily, the host is just pure Debian, and ships with iptables. | |
What needs to be done is essentially to run all the VMs on a private internal network. Outbound internet access is done via NAT. Inbound access is via port forwarding. | |
Network configuration | |
Hereβs how itβs done: | |
Create a virtual interface that serves as the gateway for your VMs: |
$(document).ajaxComplete((e, x, o) => { | |
if (o.url == "https://api.twitter.com/1.1/statuses/retweet.json") { | |
tweet_id = JSON.parse(x.responseText)['id_str']; | |
auth_token = JSON.parse(document.querySelector('#init-data').value)['formAuthenticityToken']; | |
fetch("https://twitter.com/i/tweet/pin", { | |
body: `authenticity_token=${auth_token}&id=${tweet_id}`, | |
method: "POST", | |
headers: { | |
Accept: "application/json, text/javascript, */*; q=0.01", | |
"Cache-Control": "no-cache", |
This process requires that you are able to ssh OR log in locally using the root user account and that no services be running as users out of /home on the target machine.
The examples are from a default installation with no customization-you NEED to know what you're working with for volumes/partitions to not horribly break things.
By default, CentOS 7 uses XFS for the file system and Logical Volume Manager (LVM), creating 3 partitions: /
,/home
and swap.
NOTE: If you want to be sure that nothing is writing to /home
you can either modify the host to boot into single-user mode OR try to use the
systemctl isolate runlevel1.target
command to switch (not tested! should work).