Skip to content

Instantly share code, notes, and snippets.

View ElderMael's full-sized avatar
🏠
Working from home

Miguel Enriquez ElderMael

🏠
Working from home
View GitHub Profile
import * as k8s from "@pulumi/kubernetes";
import {config} from "./config";
export const minecraftNamespace = new k8s.core.v1.Namespace('minecraft', {
metadata: {
name: 'minecraft',
}
});
const minecraftChart = new k8s.helm.v3.Chart('minecraft-chart', {
@ElderMael
ElderMael / index.js
Last active September 6, 2023 17:20 — forked from zkat/index.js
npx is cool
#!/usr/bin/env node
var colors = require('colors');
console.log('yay gist'.green)
@ElderMael
ElderMael / delete.js
Last active March 18, 2023 08:34
Delete Likes From TweetDeck
function nextUnlike() {
return document.querySelector('.icon-favorite-toggle')
}
function wait(ms) {
return new Promise(resolve => setTimeout(resolve, ms))
}
async function removeAll() {
let count = 0
@ElderMael
ElderMael / pirate-dev-radio-e09s01.md
Last active May 15, 2020 05:00
PirateDevRadio - E09S01

Nuestro noveno episodio. Gracias por escucharnos!

Topicos

Svelte

Deno

openshiftPipeline {
projectName = detectFromGradleFile()
projectType = 'spring-boot-atomic-service'
onDebugCommit {
onEachStage {
before {
@ElderMael
ElderMael / docker-compose.yml
Created November 12, 2017 08:32
Docker-compose for rancher, nginx and let's encrypt
nginx-proxy:
image: jwilder/nginx-proxy:latest
ports:
- "80:80"
- "443:443"
volumes:
- '/home/docker/nginx-proxy/ssl:/etc/nginx/certs:ro'
- '/etc/nginx/vhost.d'
- '/usr/share/nginx/html'
- '/var/run/docker.sock:/tmp/docker.sock:ro'

Keybase proof

I hereby claim:

  • I am eldermael on github.
  • I am eldermael (https://keybase.io/eldermael) on keybase.
  • I have a public key whose fingerprint is 584D 0553 64EC 14A4 3ECC 409C C315 85DF 1905 8E30

To claim this, I am signing this object:

native("jvm")
module io.eldermael.ceylon.boot "1.0.0" {
import java.base "8";
shared import ceylon.interop.java "1.2.1";
import maven:"org.springframework.boot:spring-boot-starter-web" "1.3.0.RELEASE";
}
import org.springframework.boot { ... }
import org.springframework.boot.autoconfigure { ... }
import org.springframework.stereotype { ... }
import org.springframework.web.bind.annotation { ... }
import java.lang { JString=String }
import ceylon.interop.java { javaClass, javaString }
controller
enableAutoConfiguration
plugins {
id 'com.athaydes.ceylon' version '1.3.0'
}
ceylon {
module = 'io.eldermael.ceylon.boot'
}
repositories {
jcenter()