Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View foxx's full-sized avatar

Cal Leeming foxx

View GitHub Profile
@foxx
foxx / disable.reg
Last active May 12, 2019 18:11
disable feature upgrade windows 10
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\OSUpgrade]
"AllowOSUpgrade"=dword:00000000
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"DisableOSUpgrade"=dword:00000001
sc config wuauserv start= disabled
sc stop wuauserv
{
"id": 369,
"node_id": "MDEwOlJlcG9zaXRvcnkzNjk=",
"name": "css_naked_day",
"full_name": "collectiveidea/css_naked_day",
"private": false,
"owner": {
"login": "collectiveidea",
"id": 128,
"node_id": "MDEyOk9yZ2FuaXphdGlvbjEyOA==",
[
{
"id": 1,
"node_id": "MDEwOlJlcG9zaXRvcnkx",
"name": "grit",
"full_name": "mojombo/grit",
"private": false,
"owner": {
"login": "mojombo",
"id": 1,
[
{
"login": "mojombo",
"id": 1,
"node_id": "MDQ6VXNlcjE=",
"avatar_url": "https://avatars0.githubusercontent.com/u/1?v=4",
"gravatar_id": "",
"url": "https://api.github.com/users/mojombo",
"html_url": "https://github.com/mojombo",
"followers_url": "https://api.github.com/users/mojombo/followers",
@foxx
foxx / app.txt
Last active July 9, 2018 19:59
River Oakfield Job Application
========================================================================
_____ _ ____ _ __ _ _ _
| __ \(_) / __ \ | | / _(_) | | | |
| |__) |___ _____ _ __ | | | | __ _| | _| |_ _ ___| | __| |
| _ /| \ \ / / _ \ '__| | | | |/ _` | |/ / _| |/ _ \ |/ _` |
| | \ \| |\ V / __/ | | |__| | (_| | <| | | | __/ | (_| |
|_| \_\_| \_/ \___|_| \____/ \__,_|_|\_\_| |_|\___|_|\__,_|
========================================================================
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCmUbHVjm4tsZMquZPUhGKF9rxyDPuev3hMyxoQ259WFq3e9i4EewiaAlPyFUg8trkgQqudhiUPNPcXimnwNryKAUgHkc85olJTerwDfW/FvW4Evq4WWRZiotDfD77EW7Rhn26eCCDYVYN+5CWGHGTUgh1C5s38VgLFV2MgijFWXP/MknR7LGREXgVw3o0jTtOJHHKgEqK+9bRiBA5ESvdScVtw4MLP5dED5Toj27TJxhMdtESNMhdue0ozS3jGquaWM1mEdkTABoGnMUfnzOmVQet5w++3WQwVNoyy0J+DQ38Hyw6OCt0aCAhlPucD+Mp3su3sqGzOG3FrrAnVX0VL cal@ro
#!/usr/bin/python3
hrs = input("Enter Hours:")
rate = input("Enter Rate:")
#Computing Overtime
if float(hrs) > 40:
hrs_difference = float(hrs) - 40
#print(hrs_difference)
overtime_pay = float(hrs_difference *(rate * 1.5))
print(overtime_pay)
def comParsing():
global comDist,n,nodeCoordinates
n = int(graph.split('\n')[0].split())
for i in graph.split('\n')[1:]:
nodeCoordinates.append((int(i.split()[0]), int(i.split()[1])))
for i,index in zip(nodeCoordinates,range(n)):
for j,index2 in zip(nodeCoordinates,range(n)):
comDist[index][index2]=math.sqrt((nodeCoordinates[j][0]-nodeCoordinates[i][0])**2+(nodeCoordinates[j][1]-nodeCoordinates[i][1])**2) #rasstoyanie ot i do vseh j
def commivoyager():
@foxx
foxx / sanity.py
Created December 4, 2015 21:59
Coderpad pytest support
import os
import sys
import subprocess
def sanitypatch():
"""
Quick hack to install any package we want in coderpad...
Because real coders use pytest, amirite?
"""
print("applying coderpad sanity patch...")
@foxx
foxx / gist:1968fe19f759e608452a
Created November 27, 2014 00:10
Django partial forms mixin (alpha as fuck)
class FormFieldQuerySetMixin(object):
"""
Adds support for changing RelatedField queryset
easily without having to patch __init__.
def get_FIELDNAME_queryset(self):
pass
"""