Skip to content

Instantly share code, notes, and snippets.

@shashank-p
shashank-p / tachiyomi-source-details.json
Created December 22, 2020 14:08
Tachiyomi Source (Extensions) Details
{
"extensions": [
{
"id": "10",
"lang": "de",
"source": "Wie Manga!"
},
{
"id": "100019686565354829",
"lang": "de",
@PatrickMurphy
PatrickMurphy / CubicNoise.java
Last active February 12, 2017 06:42
Cubic Noise
final int CUBIC_NOISE_RAND_A = 134775813;
final int CUBIC_NOISE_RAND_B = 1103515245;
class CubicNoise {
class cubicNoiseConfig {
public long seed;
public int octave;
public int periodx;
public int periody;
@conorbuck
conorbuck / angle-between-points.js
Created May 5, 2012 22:51
JavaScript: Find the angle between two points
var p1 = {
x: 20,
y: 20
};
var p2 = {
x: 40,
y: 40
};