...
Vamos a estar usando indiscriminadamente conceptos de es2015, si alguien no sabe algo me lo pregunta y lo discutimos
const strmap = { | |
"diez": 10, | |
"nueve": 9, | |
"ocho": 8, | |
"siete": 7, | |
"seis": 6, | |
"cinco":5, | |
"cuatro": 4, | |
"tres": 3, |
use std::collections::{BTreeMap, BTreeSet}; | |
type State = String; | |
type DeltaValue = BTreeMap<char, BTreeSet<State>>; | |
type Delta = BTreeMap<State, DeltaValue>; | |
fn main() { | |
let mut delta: Delta = BTreeMap::new(); | |
let rules = [ | |
(("q0".to_string(), 'a'), "q1".to_string()), |
IMPORTANTE mi recomendacion es evitar nic.ar en lo posible ya que es tenido diversos problemas con su servicio, la renovacion es incomoda, me han disputado y quitado dominios que he tenido y pagado por años, tenes que sacar clave fiscal para crear un dominio. Si no tienen problemas teniendo un dominio que no sea .com.ar
entonces usen Godaddy u otra cosa.
Dicho esto, si no te es posible escaparle al .com.ar
segui leyendo.
Si te sirvio esta informacion considera aportar para apoyar mi trabajo via Bitcoin 1MBakrHeKFxks4SbhY7MdnhDEQnkDnPoJK Desde ya muchas gracias
Mi recomendacion es usar un DNS hosted como Route 53 de AWS. DNS hosted significa que es un servidor de DNS, conectado a la base de datos distribuida que es DNS, hostead / administrado por otro, en este caso AWS. Hay otras alternativas solo que yo solo use Route 53. Busquen Hosted DNS
en internet para ver alternativas. Route 53 es realmente muy barato, algo asi como 1 dolar por mes mas 0.2 dolares por hosted zone (domi
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
/* | |
The intention behind this example is to demonstrate how to **compose** | |
instead of **inherit**, this simplifies the code by using EventEmmitter | |
as a service instead of using the pattern know as Prototypal inheritance | |
which is know to have several draw backs, since it **does not work | |
like clasical inheritance** | |
Example Extracted from https://scotch.io/tutorials/getting-to-know-flux-the-react-js-architecture | |
*/ |
ctrl z
and fg
suspend the current process (for example vim) and un suspend it. Useful to move back and forth from Vim and the command line, and possible from other programas and the comand line.
lsof -n | grep TCP
list all processes that are using TCP
dirs
, popd
, pushd
for using a stack of directories to easily switch between them
grep
and return surrounding lines with flags -A number
(after), -B number
(before) and -C number
(before and after)
pstree
to check process hierachie
killall notify-osd
kill GTK notifications in KDE
[user] | |
name = franleplant | |
email = [email protected] | |
[core] | |
editor = vim | |
excludesfile = ~/.gitignore |