I hereby claim:
-
I am zoes17 on github.
-
I am zoes17 (https://keybase.io/zoes17) on keybase.
-
I have a public key ASDkzA10QnrZMo5XfN8iMG_JTPB5gY7HEA9dmq1yS6xguQo
#!/usr/bin/env python | |
TICKETPRICE = 2.50 | |
EVENINCREASE = 0.2 | |
def calc_math(afternoon_attendence): | |
ticket_revenue = afternoon_attendence * TICKETPRICE | |
evening_attendence = (afternoon_attendence * EVENINCREASE) + afternoon_attendence | |
if (evening_attendence > 350): | |
evening_attendence = 350 | |
else: |
I hereby claim:
I am zoes17 on github.
I am zoes17 (https://keybase.io/zoes17) on keybase.
I have a public key ASDkzA10QnrZMo5XfN8iMG_JTPB5gY7HEA9dmq1yS6xguQo
#!/bin/bash | |
cd /tmp | |
apt download nodejs 1>/dev/null 2>/dev/null | |
mkdir -p /tmp/oldnode | |
mkdir -p /tmp/newnode | |
rm oldnode/* 2>/dev/null | |
rm newnode/* 2>/dev/null | |
package=$(ls node*.deb) | |
ar x $package --output=oldnode/ |
#!/usr/bin/env python3 | |
# coding: utf-8 | |
import os,socket,threading,time | |
allow_delete = False | |
local_ip = socket.gethostbyname(socket.gethostname()) | |
local_port = 21 | |
currdir=os.path.abspath('.') | |
class FTPserverThread(threading.Thread): |