I hereby claim:
- I am riccardobl on github.
- I am riccardobl (https://keybase.io/riccardobl) on keybase.
- I have a public key whose fingerprint is 9550 68E8 BC68 BBFF 6A16 34E8 19F0 7DE6 BB85 5778
To claim this, I am signing this object:
| 1. Add your addons as subfolders under 'addons' next to your blend file eg. | |
| --/home/user/Documents/myBlenderProject | |
| ---------------------------------------/myProject.blend | |
| ---------------------------------------/addons < place your addons here | |
| ----------------------------------------------/myAddon | |
| ------------------------------------------------------/[addon files .py] | |
| 2. Run the script in blender |
| { | |
| "addr":"LNURL1DP68GURN8GHJ7AMPD3KX2AR0VEEKZAR0WD5XJTNRDAKJ7TNHV4KXCTTTDEHHWM30D3H82UNVWQHHWET9DDK8JCMPVF5KUET5X5UQ096QTQ", | |
| "enabled":true | |
| } |
| #!/bin/bash | |
| ############################################################ | |
| # Usage: | |
| # vos ubuntu:18.04 bash | |
| ############################################################ | |
| # Simple script that starts a podman/docker container | |
| # mounts the current dir, run a command as the current user | |
| # and destroy itself when the terminal is closed | |
| ############################################################ | |
| userUID=`id -u` |
| apply plugin: 'maven' | |
| apply plugin: 'java' | |
| sourceSets { | |
| main { | |
| resources { | |
| srcDirs = ["."] | |
| include "**" | |
| exclude (".gitignore", ".github", | |
| "build", ".gradle", "README.md", |
| <html> | |
| <head></head> | |
| <body> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/marked/0.7.0/marked.min.js" integrity="sha256-0Ed5s/n37LIeAWApZmZUhY9icm932KvYkTVdJzUBiI4=" crossorigin="anonymous"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/dompurify/1.0.11/purify.min.js" integrity="sha256-80n5dmervCuGISioxGlsumrwgMc8LJKT0wZybkLtkLM=" crossorigin="anonymous"></script> | |
| <script> | |
| function loadGithubReadme(repo,branch,callback){ | |
| if(repo.endsWith("/"))repo=repo.substring(0,repo.length-1); | |
| console.log("Repo:",repo); |
| . |
| --- <unnamed> | |
| +++ <unnamed> | |
| @@ -70,6 +70,8 @@ | |
| */ | |
| public static final String LWJGL_OPENGL2 = "LWJGL-OpenGL2"; | |
| + public static final String LWJGL_OPENGL30 = "LWJGL-OpenGL30"; | |
| + | |
| /** | |
| * Use LWJGL as the display system and force using the core OpenGL3.2 renderer. |
| #!/bin/bash | |
| mv /etc/freelan/freelan.cfg /etc/freelan/freelan.conf | |
| ln /bin/freelan /usr/sbin/freelan | |
| chmod +x /usr/sbin/freelan | |
| echo 'CONFIGURATIONS="freelan"' > /etc/default/freelan |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| rm -rf apitrace/ | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential cmake git python libpng-dev zlib1g-dev libx11-dev libprocps-dev libdwarf-dev qtbase5-dev | |
| git clone https://github.com/apitrace/apitrace.git | |
| cd apitrace | |
| if [ "$1" = "install" ]; | |
| then | |
| cmake -H. -Bbuild -DENABLE_GUI=TRUE -DCMAKE_BUILD_TYPE=Release | |
| make -C build |