By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
By: @BTroncone
Also check out my lesson @ngrx/store in 10 minutes on egghead.io!
Update: Non-middleware examples have been updated to ngrx/store v2. More coming soon!
| /** | |
| * @author ebidel@ (Eric Bidelman) | |
| * License Apache-2.0 | |
| */ | |
| /** | |
| * Finds all elements on the page, inclusive of those within shadow roots. | |
| * @param {string=} selector Simple selector to filter the elements by. e.g. 'a', 'div.main' | |
| * @return {!Array<string>} List of anchor hrefs. | |
| */ |
| * -cur_console:d:c:\dev\projects\plutus -cur_console:C:C:\apps\cmder\icons\cmder.ico cmd /k "%ConEmuDir%\..\init.bat" | |
| >* -cur_console:s1T50H -cur_console:d:C:\apps\cmder -cur_console:C:C:\apps\cmder\icons\cmder.ico cmd /k "%ConEmuDir%\..\init.bat" | |
| >* -cur_console:s1T50V -cur_console:d:C:\apps\cmder -cur_console:C:C:\apps\cmder\icons\cmder.ico cmd /k "%ConEmuDir%\..\init.bat" | |
| >* -cur_console:s2T50V -cur_console:d:C:\apps\cmder -cur_console:C:C:\apps\cmder\icons\cmder.ico cmd /k "%ConEmuDir%\..\init.bat" |
| // Future versions of Hyper may add additional config options, | |
| // which will not automatically be merged into this file. | |
| // See https://hyper.is#cfg for all currently supported options. | |
| module.exports = { | |
| config: { | |
| // Choose either "stable" for receiving highly polished, | |
| // or "canary" for less polished but more frequent updates | |
| updateChannel: 'stable', |
Create a file named initInExternalTerminal.bat on cmder's root, containing the following:
@echo off
REM The following CMDER_ROOT must have the complete path to the cmder folder,
REM like "C:\Users\gabriel\Documents\Cmder"
SET CMDER_ROOT=PATH/TO/THE/CMDER/FOLDER
"%CMDER_ROOT%\vendor\init.bat"
| @echo off | |
| echo ----------------------------------------------------- | |
| echo Powerline streamlined instalation script by @lofi1048 | |
| echo ----------------------------------------------------- | |
| IF EXIST %CMDER_ROOT%\cmder-powerline-prompt GOTO SYM | |
| :CLONE |
| // These instructions for exporting Netflix's My List, Watch History, and Ratings worked for each profile on August 4, 2019. | |
| // 1) Go to https://www.netflix.com/browse/my-list and use https://addons.mozilla.org/firefox/addon/netflix-list-exporter/ to copy. | |
| // 2) Go to https://help.netflix.com/en/node/101917 and follow instructions to download CSV of Watch History. | |
| // 3) Use the snippet below in the browser's console at https://www.netflix.com/MoviesYouveSeen, then copy and paste to wherever you wish. | |
| // Code was altered from https://www.coollector.com/netflix_import.html, but I haven't ever used their software. | |
| // 4) Go to https://www.netflix.com/cancelplan and cancel (if that's why you're doing all this): |
go to your my-list page, and scroll to the bottom to make sure it's all loaded: //http://www.netflix.com/browse/my-list
Next, paste this in your developer tools console and hit enter:
// JSON version
(function() {
var list = []
document.querySelectorAll('.title-card a[aria-label]').forEach(
function(item) {
| # The official MySQL (https://hub.docker.com/_/mysql/) supports only one MYSQL_DATABASE environment variable. | |
| # By modifying the entrypoint and passing shell script, you can create multiple dbs without having to make a mysql image just for this purpose. | |
| version: '3' | |
| services: | |
| # Some other service connecting to mysql | |
| db: | |
| image: mysql:5.6 |