Forward GnuPG agent from macOS to Linux
Run gpg once as your to create the directory structure
gpg --list-keys
#include <stdlib.h> | |
int main(void) { | |
int edi = 5; // nth fib num | |
int ebx = 0; | |
int eax = 1; | |
int edx; // tmp | |
start_loop: | |
--edi; |
Shader "Custom/GeneratedTerrainShader" { | |
CGINCLUDE | |
#include "Tessellation.cginc" | |
#include "HLSL/SimplexNoise3D.hlsl" | |
ENDCG | |
Properties { | |
_Tess("Tessellation", Range(1,128)) = 4 | |
_HeightOctaves("Height Octaves", Range(1, 16)) = 8 |
#!/usr/bin/python | |
from imgurpython import ImgurClient | |
from PIL import Image | |
from creds import * | |
import PIL | |
from reportlab.pdfgen import canvas | |
from reportlab.platypus import SimpleDocTemplate, Paragraph, Image, Spacer, PageBreak | |
from reportlab.lib.styles import getSampleStyleSheet, ParagraphStyle | |
from reportlab.lib.pagesizes import letter | |
from reportlab.lib.units import inch |