Required tools for playing around with memory:
hexdumpobjdumpreadelfxxdgcore
| // Copyright (c) 2023 Tomasz Stachowiak | |
| // | |
| // This contribution is dual licensed under EITHER OF | |
| // | |
| // Apache License, Version 2.0, (http://www.apache.org/licenses/LICENSE-2.0) | |
| // MIT license (http://opensource.org/licenses/MIT) | |
| // | |
| // at your option. | |
| #include "/inc/frame_constants.hlsl" |
| #include "bezier_math.h" | |
| // References: | |
| // https://en.wikipedia.org/wiki/B%C3%A9zier_curve#Rational_B%C3%A9zier_curves | |
| // http://resources.mpi-inf.mpg.de/departments/d4/teaching/ss2012/geomod/slides_public/12_Rational_Splines.pdf | |
| // https://doi.org/10.1016/B978-155860737-8/50013-2 | |
| namespace Bezier_Math{ | |
| /* | |
| Twitch chat browsersource CSS for OBS | |
| Original by twitch.tv/starvingpoet modified by github.com/Bluscream | |
| Just set the URL as either one of | |
| - https://www.twitch.tv/%%TWITCHCHANNEL%%/chat?popout=true | |
| - https://www.twitch.tv/popout/%%TWITCHCHANNEL%%/chat | |
| - https://www.twitch.tv/embed/%%TWITCHCHANNEL%%/chat?parent=localhost | |
| And paste this entire file into the CSS box or paste direct import css like |
| fixed3 Darken (fixed3 a, fixed3 b) | |
| { | |
| return min(a, b); | |
| } | |
| fixed3 Multiply (fixed3 a, fixed3 b) | |
| { | |
| return a * b; | |
| } |
| Gfx and glium are Rust libraries that aim to provide a "rusty" abstraction over graphics programming APIs. | |
| Both may look similar, and one of the questions that gets asked frequently on IRC is "what are the differences between gfx and glium?". Here is a comparison table: | |
| | Gfx | Glium | |
| -------------------------------------|-------------------------------------------------------------------------------------------------------------------|-------------------------------- | |
| URL | <https://github.com/gfx-rs/gfx-rs> | <https://github.com/tomaka/glium> | |
| History | Papers since Oct 2013. Really started in June 2014. | Private/confidential from Feb 201 |
| /** | |
| * K.jpg's OpenSimplex 2, smooth variant ("SuperSimplex") | |
| * | |
| * More language ports, as well as legacy 2014 OpenSimplex, can be found here: | |
| * https://github.com/KdotJPG/OpenSimplex2 | |
| */ | |
| public class OpenSimplex2S { | |
| private static final long PRIME_X = 0x5205402B9270C86FL; |
| # Contributor: Andreas Baumann <abaumann at yahoo dot com> | |
| pkgname=snowball-c | |
| pkgver=20140401 | |
| pkgrel=1 | |
| pkgdesc="Snowball rule-based stemming algorithms (shared lib + stemwords executable)" | |
| arch=('i686' 'x86_64', 'armv6h') | |
| url='http://snowball.tartarus.org/' | |
| license=('BSD') | |
| makedepends=() |
THIS GIST WAS MOVED TO TERMSTANDARD/COLORS REPOSITORY.
PLEASE ASK YOUR QUESTIONS OR ADD ANY SUGGESTIONS AS A REPOSITORY ISSUES OR PULL REQUESTS INSTEAD!
| {url:'stun:stun01.sipphone.com'}, | |
| {url:'stun:stun.ekiga.net'}, | |
| {url:'stun:stun.fwdnet.net'}, | |
| {url:'stun:stun.ideasip.com'}, | |
| {url:'stun:stun.iptel.org'}, | |
| {url:'stun:stun.rixtelecom.se'}, | |
| {url:'stun:stun.schlund.de'}, | |
| {url:'stun:stun.l.google.com:19302'}, | |
| {url:'stun:stun1.l.google.com:19302'}, | |
| {url:'stun:stun2.l.google.com:19302'}, |