I hereby claim:
- I am lyndonwatkins on github.
- I am lyndonwatkins (https://keybase.io/lyndonwatkins) on keybase.
- I have a public key whose fingerprint is 45B2 2887 D6DB 86A0 8F28 CC3C 5B7B C2B5 CD16 7169
To claim this, I am signing this object:
import random | |
def flip_coin(): | |
return random.choice(["Heads", "Tails"]) | |
def record_occurrences(flips): | |
occurrences = {} | |
current_result = flips[0] |
import os | |
import requests | |
from bs4 import BeautifulSoup | |
from contextlib import closing | |
import csv | |
vog_url = "https://www.valeofglamorgan.gov.uk/en/our_council/Council-Finance.aspx" | |
vog_hostname = "https://www.valeofglamorgan.gov.uk" | |
def get_csv_urls(): |
#Import the ad module | |
import-module activedirectory | |
#define the new password | |
$newpwd = ConvertTo-SecureString -String "P@ssword123!" -AsPlainText –Force | |
#get the users in ad. we can filter by OU | |
$users = get-aduser -filter * -searchbase "OU=test,OU=testnb users,DC=testnb,DC=local" | select Surname | |
#Logic to reset password |
I hereby claim:
To claim this, I am signing this object:
from microbit import * | |
import random | |
numbers = [ | |
"00000:00000:00900:00000:00000", | |
"00000:00900:00000:00900:00000", | |
"90000:00000:00900:00000:00009", | |
"00000:09090:00000:09090:00000", | |
"00000:09090:00900:09090:00000", | |
"90009:00000:90009:00000:90009", |
// TESTING ROUTES BELOW | |
Route::get('/pop', function() | |
{ | |
DB::table('regions')->insert([ | |
['regionName' => 'England'], | |
['regionName' => 'Ireland'], | |
['regionName' => 'Northern Ireland'], | |
['regionName' => 'Scotland'], |
ErrorDocument 503 /index.html | |
RewriteEngine On | |
RewriteBase / | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME} !-d | |
RewriteRule .* /index.html [R=503,L] |