From: Ruben Beltran del Rio
â blog.
+ âï¸ This website is better consumed via gemini.
+
do:
A task manager for iOS and MacOS that makes you write a journal entry when the task is done.
- (source)
+ (source)
map:
A MacOS app that lets you create wardley maps using text.
- (source)
+ (source)
- serpentity:
+ serpentity:
An entity framework for JavaScript.
- grafn:
+ grafn:
Flow based programming library for javascript.
- cologne:
+ cologne:
Log multiplexer for javascript with no dependencies.
- API notation for vim,
- atom, &
- vscode, &
- sublime text:
+ API notation for vim,
+ atom, &
+ vscode, &
+ sublime text:
A syntax for notating component APIs in a way that's easy to embed in text documents.
- Nginx Office Hours:
+ Nginx Office Hours:
A victory for the server's labor rights: An nginx module that allows you to serve your content only during office hours.
Apps
@@ -29,19 +32,19 @@ description: "unlimited.pizza - ruben beltran del rÃo surfs the internet: progr
- Sorting Hat - & Renderer + Sorting Hat + & Renderer (2017): Reads your brain and places you in a category based on your mental activity
- Dasein + Dasein (2017): Ephemeral posts experiment: the posts stay alive as the conversation continues, but disappear shortly after activity stops. @@ -148,7 +151,7 @@ description: "unlimited.pizza - ruben beltran del rÃo surfs the internet: progr
- Dead Drop + Dead Drop (2017, Spanish): Marca un número de ð y deja un mensaje secreto, o escucha algo al azar.
@@ -158,7 +161,7 @@ description: "unlimited.pizza - ruben beltran del rÃo surfs the internet: progr telnet barthes.unlimited.pizza 7777 (2016): a random work of ansi art. Better with 24-bit enabled terminals. - (source) + (source)- Grita + Grita (2010, Spanish): Comparte texto anónimamente y distribuyelo con QR codes y URLs cortas.
@@ -200,7 +203,7 @@ description: "unlimited.pizza - ruben beltran del rÃo surfs the internet: progr- Pico Engine + Pico Engine (2009): Platform game engine with lua scripting.
diff --git a/scripts/ci.sh b/scripts/ci.sh new file mode 100755 index 0000000..5dcfaf3 --- /dev/null +++ b/scripts/ci.sh @@ -0,0 +1,14 @@ +#!/usr/bin/env sh + +set -xe + +if [ "$(git rev-parse origin/main)" == "$(git rev-parse HEAD)" ]; then \ + echo "Deploying to Production" + export $S3_BUCKET=unlimited.pizza; + make environment=production upload + exit 0; +fi + +echo "Deploying to Dev" +export $S3_BUCKET=limited.pizza; +make upload