View gist:bd8e056cb4810eb677d15eebec755434
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I am attesting that this GitHub handle patriciogonzalezvivo is linked to the Tezos account tz1NqueFctvNCQrsELm6k4N6XfwAYu5Qp5LN for tzprofiles | |
sig:edsigtyGKhQWuzB73dYzJfELSjYJt7LwbFEsKD61WF3oVH7Lhok5dgXu3bdZth1U19QwCts7xXwaDyCh7Auqr9Cov1xTXz9Lv4s |
View Simple Looking Glass Scene with extra DoF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Great example of the use of Lygia samplers functions https://github.com/patriciogonzalezvivo/lygia/tree/main/sample | |
// and GlslViewer https://github.com/patriciogonzalezvivo/glslViewer | |
// on the Looking Glass Display | |
#ifdef GL_ES | |
precision mediump float; | |
#endif | |
uniform sampler2D u_buffer0; | |
uniform sampler2D u_buffer1; |
View include.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
from os.path import join, abspath, dirname, basename | |
def load_source( folder: str, filename: str, dependencies = []): | |
path = abspath( join(folder, filename) ) | |
if path in dependencies: | |
return "" | |
else: | |
dependencies.append( path ) |
View index.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en-us"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> | |
<title>Territory</title> | |
<!-- 3rd party libraries --> | |
<!-- Leaflet --> |
View toGif.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SHADER=$1 | |
SEC=$1 | |
COUNTER=0 | |
for i in `seq -w 0.01 .031 $SEC`; do | |
echo $i | |
`glslViewer $SHADER -s $i -o frame-$COUNTER.png` | |
let COUNTER=COUNTER+1 |
View multistep functions
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
```glsl | |
float mix4smoothstep(float a, float b, float c, float d, float x ) { | |
return mix(mix(a,b,smoothstep(0.,.33,x)), | |
mix(b, | |
mix(c,d,smoothstep(.66,.99,x)), | |
smoothstep(.33,.66,x)), | |
step(.33,x)); | |
} | |
float mix4linear(float a, float b, float c, float d, float x ) { |
View one_big_square.json
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
View Making a .deb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Resources | |
// - http://blog.packagecloud.io/debian/debuild/packaging/2015/06/08/buildling-deb-packages-with-debuild/ | |
// - https://linuxconfig.org/easy-way-to-create-a-debian-package-and-local-package-repository | |
// - http://santi-bassett.blogspot.com/2014/07/how-to-create-debian-package.html | |
sudo apt-get install dh-make build-essential | |
sudo apt-get install devscripts fakeroot debootstrap pbuilder autotools-dev | |
# Create the packaging skeleton (debian/*) | |
# dh_make -s --indep --createorig |
View install.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
sudo yum update -y | |
# Install packages | |
sudo yum install -y httpd24 mod24_ssl php56 mysql55-server php56-mysqlnd | |
# Start the Apache web server | |
sudo service httpd start |
View tripMaker.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import requests, json, sys | |
import geojson | |
#six degrees of precision in valhalla | |
inv = 1.0 / 1e6; | |
#decode an encoded string | |
def decode(encoded): |
NewerOlder