Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Cozy Chameleon

Pages: [1]
1
Hacking and Security / Re: i cant ping computers on my network
« on: October 22, 2012, 12:56:04 pm »
thanks for the help but one last question, im trying to remote shutdown my friends computer but i get "protocol error <1728>" does anyone know how to get around that?

2
Hacking and Security / i cant ping computers on my network
« on: October 22, 2012, 12:28:03 am »
basically, when i try to ping the computers on my network the ip is just a jumbled mess of letters and numbers example:"fe80:cda4:e506:e546:9ac1%12" how can i fix this so i can see their actual ip?

3
Tutorials / Re: Lock picking
« on: October 01, 2012, 07:54:08 am »
I have been lock picking for a bit and i keep changing my church sign to say random stuff. for example the last one was "all dogs go to heaven!" the one before that was "god loves gays" etc. its fun. also, i got into my pool so i could swim at night

4
General discussion / Re: Fun at school
« on: October 01, 2012, 07:17:19 am »
my school had a different login that was admin and used for the state testing (SOL for me) and that account was not monitored or anything. nor did they try to keep it protected. so basically i just found out the pass to that and could make my account admin. from there you could get into other peoples files and stuff like that. i basically just would make a .bat file that would open up new cmds constantly to where the person would have to shut off the comp to end it.


it was basically this
@echo off
mainpart:
start
goto:
mainpart

5
Scripting Languages / i need help with a some python code(newbie stuff)
« on: October 01, 2012, 06:50:37 am »
So, i am very new to python and i was wondering if someone can help me with this code. for some reason after i enter everything i get an error. can someone find and explain whats wrong with it?
thanks


p = 0
r = 0
n = 0
t = 0
x = input("what is the initial investment?")
p = int(p)
b = input("what is the anual invesment rate?")
r = float(b)
y = input("what is the number of times interest is compounded a year?")
n = int(y)
z = input("what is the number of years?")
t = int(z)
superfly = float((p(1 + (r / n) ** (n * t))))
print(superfly)

Pages: [1]