//World Generation gist written by Telepathic Grunt.
So when minecraft goes to make a chunk, it has a certain order to making the world.
- Biome Provider
- ChunkGenerator
- SurfaceBuilder
- Carvers
- Structures/Features Generation Stages
//World Generation gist written by Telepathic Grunt.
So when minecraft goes to make a chunk, it has a certain order to making the world.
def sqrt(x, b=2): | |
if x < 0: | |
x = abs(x) | |
img = True | |
else: | |
img = False | |
i = 0 | |
r = x | |
lr = 0 |
java.util.Random, An instance of this class is used to generate a stream of pseudorandom numbers. The class uses a 48-bit seed, which is modified using a linear congruential formula. (See Donald Knuth, The Art of Computer Programming, Volume 2, Section 3.2.1.)
This class has 6 nifty functions:
nextFloat()
import matplotlib.pyplot as plt | |
import random | |
import numpy as np | |
m = ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"] | |
temperatur = [float(input("Temperatur " + m[i] + ": ")) for i in range(0, 12)] | |
niederschlag = [int(input("Niederschlag im " + m[i] + ": ")) for i in range(0, 12)] | |
name = input("Name: ") | |
cords = input("Koordinaten: ") |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <stdint.h> | |
#include <stdbool.h> | |
#include <string.h> | |
#define FUSE_IMAGE_SIZE 0x400 | |
#define ROM_BASE 0x100000 | |
#define FUSE_BOOTROM_PATCH_SIZE_T210_START_BIT 13 |
This work is released under a Creative Commons Attribution-NoDerivatives 4.0 International License.
"OpenPGP" refers to the OpenPGP protocol, in much the same way that HTML refers to the protocol that specifies how to write a web page. "GnuPG", "SequoiaPGP", "OpenPGP.js", and others are implementations of the OpenPGP protocol in the same way that Mozilla Firefox, Google Chromium, and Microsoft Edge refer to software packages that process HTML data.
public static byte[] readUri(Context context, Uri uri) throws IOException { | |
ParcelFileDescriptor pdf = context.getContentResolver().openFileDescriptor(uri, "r"); | |
assert pdf != null; | |
assert pdf.getStatSize() <= Integer.MAX_VALUE; | |
byte[] data = new byte[(int) pdf.getStatSize()]; | |
FileDescriptor fd = pdf.getFileDescriptor(); | |
FileInputStream fileStream = new FileInputStream(fd); | |
fileStream.read(data); |
/** | |
* !!!! This code doesn't work anymore !!!! | |
* | |
* - You can check working code on comments. I won't update this code anymore. | |
* | |
* Also, I just decided to remove this code. You can check revisions for old code. | |
* Since this code was made for discord client that almost 5 years ago, It seems like doesn't work anymore. | |
* I don't want people keep arguing in the comments, i decided to remove this code. | |
* | |
* Note: This code is now fulfilled with Javascript comments. This code won't work even if you pasted to console. doesn't do anything. |
intitle:index.of .bash_history | |
intitle:index.of .sh_history | |
intitle:”Index of” index.html.bak | |
intitle:”Index of” index.php.bak | |
intitle:”Index of” index.jsp.bak | |
intitle:”Index of” “.htpasswd” htpasswd.bak | |
inurl:backup intitle:index.of inurl:admin | |
“Index of /backup” | |
intitle:”Index of” index.html~ | |
intitle:”Index of” index.php~ |