Legend:
- 鉁忥笍 method changes
this. - 馃敀 method does not change
this.
Array<T>.prototype.*:
concat(...items: Array): T[]馃敀 ES3
| # first: | |
| lsbom -f -l -s -pf /var/db/receipts/org.nodejs.pkg.bom | while read f; do sudo rm /usr/local/${f}; done | |
| sudo rm -rf /usr/local/lib/node /usr/local/lib/node_modules /var/db/receipts/org.nodejs.* | |
| # To recap, the best way (I've found) to completely uninstall node + npm is to do the following: | |
| # go to /usr/local/lib and delete any node and node_modules | |
| cd /usr/local/lib | |
| sudo rm -rf node* |
| ## Sublime Text 3 Serial key build is 3176 | |
| > * Added these lines into /etc/hosts | |
| 127.0.0.1 www.sublimetext.com | |
| 127.0.0.1 license.sublimehq.com | |
| > * Used the license key | |
| ----- BEGIN LICENSE ----- |
| ## Lenguaje Go | |
| set --export GOROOT /usr/local/go | |
| set -gx PATH /usr/local/go/bin $PATH | |
| #set -gx PATH GOROOT/bin $PATH | |
| set --export GOPATH $HOME/GoProjects | |
| set -gx PATH $GOPATH/bin $PATH | |
| ## AppEngine para GO | |
| set -gx PATH $HOME/programs/go_appengine $PATH |
| package co.com.gdaimon; | |
| public class principal { | |
| /** | |
| * Metodo que retorna una fraze danzante "hola mundo" => "Hola Mundo" | |
| * | |
| * @param frase | |
| * @return | |
| */ |
| // Copyright 2017 Google LLC. | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // | |
| // https://www.apache.org/licenses/LICENSE-2.0 | |
| // | |
| // Unless required by applicable law or agreed to in writing, software | |
| // distributed under the License is distributed on an "AS IS" BASIS, |
Download: StarUML.io
Source: jorgeancal
After installing StartUML successfully, modify LicenseManagerDomain.js as follow:
/**| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| //Matching a Username | |
| Pattern: /^[a-z0-9_-]{3,16}$/ | |
| Pattern: /^[a-z\d_]{4,15}$/i | |
| //Matching a Password | |
| Pattern: /^[a-z0-9_-]{6,18}$/ | |
| Pattern: (?=^.{8,}$)((?=.*\d)|(?=.*\W+))(?![.\n])(?=.*[A-Z])(?=.*[a-z]).*$ | |
| //Matching a Hex Value |