git clone https://github.com/certbot/certbot
cd certbot
git checkout v0.22.0
sudo ./certbot-auto --os-packages-only
./tools/venv.sh
source venv/bin/activate
certbot -d *.domain.com --manual --preferred-challenges dns-01 --server https://acme-v02.api.letsencrypt.org/directory certonly
This file contains hidden or 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
Add the task and task with boundaries on the src/lib folder | |
Add the cli on the src folder | |
Create a tsconfig of something like | |
{ | |
"compilerOptions": { | |
"target": "ES2020", | |
"module": "commonjs", | |
"declaration": true, |
Objetivo del evento:
- Aprender a hacer landing pages.
Metricas a juzgar:
- Que tan poco viable es la idea. Mientras menos viable y mas sci-fi, mejor.
- Hacer una landing page que venda esta idea y convenza de comprar esta idea.
Posibles ideas:
This file contains hidden or 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
upstream siedrixServer { | |
server localhost:4000; | |
} | |
server { | |
listen 80; | |
server_name siedrix.com; | |
root /home/ubuntu/siedrix; | |
This file contains hidden or 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
var inquirer = require('inquirer') | |
var valorAAdivinar = 6 | |
inquirer.prompt([ | |
{ | |
type:'input', | |
name:'adivina', | |
message:'Elije un numero del 1 al 10' | |
} | |
], function (answers) { |
This file contains hidden or 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
var WebSocket = require('ws'); | |
var userPublicToken = 'apikey'; | |
var username = 'username'; | |
var ws = new WebSocket('wss://stream.tutum.co/v1/events?token='+ userPublicToken +'&user=' +username); | |
ws.on('open', function() { | |
console.log('Connected'); | |
}); |
This file contains hidden or 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
Backbone.Widget = function() { | |
this.initialize.apply(this, arguments); | |
}; | |
_.extend(Backbone.Widget.prototype, Backbone.Events, { | |
initialize : function(){}, | |
}); | |
Backbone.Widget.extend = Backbone.View.extend; |
This file contains hidden or 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 redis | |
import json | |
register = { | |
"src" : "nodebots-dev.mx", | |
"target" : "http://127.0.0.1:4500/" | |
} | |
registerAsStr = json.dumps(register) |
This file contains hidden or 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
{ | |
"name": "url-patterns", | |
"version": "0.0.0", | |
"authors": [ | |
"Siedrix <[email protected]>" | |
], | |
"license": "MIT", | |
"ignore": [ | |
"**/.*", | |
"node_modules", |
NewerOlder