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
| <script> | |
| import { onMount } from 'svelte'; | |
| const games = [ | |
| // Streamed via Discord | |
| // Jackbox 4 | |
| "Fibbage 3 (2-8) - Jackbox 4 - (later)", | |
| "Fibbage Enough about You (2-8) - Jackbox 4 - (later)", | |
| "Survive the Internet (3-8) - Jackbox 4 - (earlier)", | |
| "Monster Seeking Monster (3-7) - Jackbox 4 - (earlier)", |
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
| Enter-PSSession -ComputerName <HOST> -UseSSL -port 5986 -Authentication Basic -Credential (New-Object System.Management.Automation.PSCredential("Administrator", (ConvertTo-SecureString "<PASSWORD>" -AsPlainText -Force))) -SessionOption (New-PSSessionOption -SkipCACheck) |
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
| # Stored at /etc/netplan/50-cloud-init.yaml | |
| # This file is generated from information provided by | |
| # the datasource. Changes to it will not persist across an instance. | |
| # To disable cloud-init's network configuration capabilities, write a file | |
| # /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following: | |
| # network: {config: disabled} | |
| network: | |
| version: 2 | |
| ethernets: | |
| ens160: |
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
| Date | Description | Task | Difference | Processed | |
|---|---|---|---|---|---|
| 20191204 0800:00 | This is an example description | Example Task | False |
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
| #!/usr/bin/env python3 | |
| """Quick and dirty check of what's running and what isn't""" | |
| from recipe_scrapers import scrape_me | |
| import pandas as pd | |
| import numpy as np | |
| import logging | |
| log = logging.Logger("") |
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
| curl -o recipe_scrapers/tests/test_data/101cookbooks.testhtml http://www.101cookbooks.com/archives/nikkis-healthy-cookies-recipe.html | |
| curl -o recipe_scrapers/tests/test_data/allrecipes.testhtml http://allrecipes.com/recipe/133948/four-cheese-margherita-pizza/ | |
| curl -o recipe_scrapers/tests/test_data/aspicyperspective.testhtml https://www.aspicyperspective.com/banana-cream-pie-recipe/ | |
| curl -o recipe_scrapers/tests/test_data/backtoherroots.testhtml http://wholefully.com/blue-cornbread/ | |
| curl -o recipe_scrapers/tests/test_data/bbc_food.testhtml http://www.bbc.co.uk/food/recipes/baileysandchocolatec_72293 | |
| curl -o recipe_scrapers/tests/test_data/bbc_good_food.testhtml http://www.bbcgoodfood.com/user/5632816/recipe/cookie-monster-cupcakes | |
| curl -o recipe_scrapers/tests/test_data/biggirlssmallkitchen.testhtml http://www.biggirlssmallkitchen.com/2011/11/cauliflower-soup-with-sharp-cheddar-and-thyme.html | |
| curl -o recipe_scrapers/tests/test_data/bonappetit.testhtml http://www.bonappetit.com/recipe/red-wine-braised-short-r |
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
| net localgroup docker-users <machine_name>\<username> /add | |
| shutdown -L |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| @echo off | |
| "C:\Program Files\Microsoft Office\Office16\EXCEL.EXE" /r %1 | |
| exit |
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
| from collections import OrderedDict | |
| def fizzdizz(start, end, lookup_table): | |
| # Map integers in given range to the lookup values | |
| results = OrderedDict({i: [v for k, v in lookup_table.items() if i % k == 0] for i in range(start, end)}) | |
| # Join in string and fall back to key if no successful lookups | |
| results = [("".join(v) if len(v) > 0 else str(k)) for k, v in results.items()] | |