This list is no longer updated, thus the information is no longer reliable.
You can see the latest version (from october 2022) here
#version 130 | |
#pragma optionNV(unroll all) | |
uint ROTLEFT(in uint a, in int b) { return (a << b) | (a >> (32-b)); } | |
uint ROTRIGHT(in uint a, in int b) { return (a >> b) | (a << (32-b)); } | |
uint CH(in uint x,in uint y,in uint z) { return (x & y) ^ (~x & z); } | |
uint MAJ(in uint x,in uint y,in uint z) { return (x & y) ^ (x & z) ^ (y & z); } | |
uint EP0(in uint x) { return ROTRIGHT(x,2) ^ ROTRIGHT(x,13) ^ ROTRIGHT(x,22); } | |
uint EP1(in uint x) { return ROTRIGHT(x,6) ^ ROTRIGHT(x,11) ^ ROTRIGHT(x,25); } |
This list is no longer updated, thus the information is no longer reliable.
You can see the latest version (from october 2022) here
// ==UserScript== | |
// @name @chaoticvibing Twitter Blue Nerd - twitter.com | |
// @namespace Violentmonkey Scripts | |
// @match *://*.twitter.com/* | |
// @match *://*.x.com/* | |
// @grant none | |
// @version 1.9.2 | |
// @author @chaoticvibing - GH @busybox11 | |
// @description 11/9/2022, 11:45:28 PM | |
// @updateURL https://gist.githubusercontent.com/busybox11/53c76f57a577a47a19fab649a76f18e3/raw |
It's been a year since the first post of the Snapshot Document Series! This will continue for the foreseeable future. Anyway, it's another frogging week and a snapshot update!
Fabric Loader 0.14.14 was released last week, fixing a bug where mod initializers were run a little bit later.
Fabric API for 23w06a, version 0.73.5, contains breaking changes to Item Group API, Indigo, Rendering API (v1), and Transitive Access Wideners.