Office for National Statistics: https://www.ons.gov.uk/economy/inflationandpriceindices/bulletins/consumerpriceinflation/latest
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<title>URL Extractor</title> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.0/css/bulma.min.css"> | |
</head> | |
<body> |
This file contains 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 { TestBed } from '@angular/core/testing'; | |
import { HttpClientTestingModule, HttpTestingController } from '@angular/common/http/testing'; | |
import { DemoService } from './demo.service'; | |
fdescribe('DemoService', () => { | |
let service: DemoService; | |
let httpMock: HttpTestingController; | |
beforeEach(() => { |
This file contains 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 itertools import cycle | |
from random import choice, shuffle | |
from string import ascii_lowercase, ascii_uppercase, digits, punctuation | |
def generate_password(length: int = 20, *, use_symbols: bool = True) -> str: | |
"""Generate random passwords, with or without symbols. | |
Implementation ensures a fairly even balance of each character | |
class, at the cost of entropy (e.g. for a four-character password | |
with symbols there are only 5,191,680 possible combinations, rather |
This file contains 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 | |
"""Generate moderately secure passwords. | |
Format: {word1}{number}{word2}{symbol} | |
By default, words are 8-10 characters long and the number is two digits. | |
Suggested word source (use words_alpha.txt): | |
https://github.com/dwyl/english-words |
- Each iteration will be 35 minutes of coding, followed by a 15 minute retro, followed by a 10 minute break.
- We will be working in pairs and using test-driven development (TDD). Pairs switch after each iteration.
- After each iteration, we will start from scratch - delete your code! The goal is the practice, not the code.
This file contains 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
2019/04/05 12:38:38 [INFO] Terraform version: 0.11.8 7a5c1d221ac209bbac66947c369815cd9ca70ed5 | |
2019/04/05 12:38:38 [INFO] Go runtime version: go1.10.1 | |
2019/04/05 12:38:38 [INFO] CLI args: []string{"/home/circleci/base/e2e/terraform", "apply", "-auto-approve"} | |
2019/04/05 12:38:38 [DEBUG] Attempting to open CLI config file: /home/circleci/.terraformrc | |
2019/04/05 12:38:38 [DEBUG] File doesn't exist, but doesn't need to. Ignoring. | |
2019/04/05 12:38:38 [INFO] CLI command args: []string{"apply", "-auto-approve"} | |
2019/04/05 12:38:38 [INFO] command: empty terraform config, returning nil | |
2019/04/05 12:38:38 [DEBUG] command: no data state file found for backend config | |
2019/04/05 12:38:38 [DEBUG] New state was assigned lineage "e48ff2b8-ddfe-882d-6ef9-9fbc2bf7e882" | |
2019/04/05 12:38:38 [INFO] command: backend initialized: <nil> |
This file contains 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 | |
"""Simulate the probability of a reward in R6 Siege.""" | |
from argparse import ArgumentParser | |
import random | |
from textwrap import dedent | |
from typing import Mapping | |
This file contains 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
docker rm $(docker ps --all --quiet --filter status=exited) | |
docker rmi $(docker images --quiet --filter dangling=true) |
This file contains 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
var cell = new Array(3); | |
for (i = 0; i < 3; i++) { | |
cell[i] = new Array(3); | |
} | |
var newCell = new Array(3); | |
for (i = 0; i < 3; i++) { | |
newCell[i] = new Array(3); | |
} |