These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
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
| Key Sublime Text 3.2.1 Build 3207 | |
| ----- BEGIN LICENSE ----- | |
| Member J2TeaM | |
| Single User License | |
| EA7E-1011316 | |
| D7DA350E 1B8B0760 972F8B60 F3E64036 | |
| B9B4E234 F356F38F 0AD1E3B7 0E9C5FAD | |
| FA0A2ABE 25F65BD8 D51458E5 3923CE80 | |
| 87428428 79079A01 AA69F319 A1AF29A4 | |
| A684C2DC 0B1583D4 19CBD290 217618CD |
Procedure by Nevercholt Tech (https://www.youtube.com/watch?v=gVjF_MKjSv8) - transcribed by Karunamon
Note: This procedure is somewhat advanced and, if you screw up, you are likely to hard brick your switch. *Proceed with caution!
Also note that this is a full reset. All save data, installed apps, everything will be lost.
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
| [ -s $HOME/.nvm/nvm.sh ] && . $HOME/.nvm/nvm.sh # This loads NVM | |
| function node { | |
| rawnode=$(which node) | |
| icu4cdata=$(dirname $(dirname $rawnode))/lib/node_modules/icu4c-data | |
| [[ -d $icu4cdata ]] || npm install -g icu4c-data@$($rawnode -e ' | |
| console.log((v => v.icu_ver_major + v.icu_endianness)( | |
| process.config.variables));') | |
| NODE_ICU_DATA=$icu4cdata $rawnode "$@" | |
| } |
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
| // mock file | |
| function MockFile() { }; | |
| MockFile.prototype.create = function (name, size, mimeType) { | |
| name = name || "mock.txt"; | |
| size = size || 1024; | |
| mimeType = mimeType || 'plain/txt'; | |
| function range(count) { | |
| var output = ""; |
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 React, { PropTypes } from 'react'; | |
| import Select from 'react-select'; | |
| import 'react-select/dist/react-select.css'; | |
| RFReactSelect.defaultProps = { | |
| multi: false, | |
| className: "" | |
| }; | |
| RFReactSelect.propTypes = { |
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
| const outputFolder = './output'; | |
| exports.config = { | |
| output: outputFolder, | |
| helpers: { | |
| Puppeteer: { | |
| url: 'http://google.com', | |
| show: true, | |
| chrome: {} | |
| }, |
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
| ( find . -type d -name ".git" && find . -name ".gitignore" && find . -name ".gitmodules" ) | xargs rm -rf |
A quick guide on how to setup Node.js development environment.
Previous versions of these install instructions had been tested with:
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
| -- You need to create a Keychain item whose name matches what you use in place | |
| -- of "[keychain_item_name]" on line #7 (and whose password is identical to your | |
| -- user account's password). | |
| tell application "System Events" | |
| if ((get name of every process) contains "ScreenSaverEngine") then | |
| set pw to (do shell script "security find-generic-password -l \"[keychain_item_name]\" -w") | |
| tell application "ScreenSaverEngine" to quit | |
| delay 0.5 | |
| keystroke pw |
NewerOlder