Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~22.2K People Reached
Favorite Tags

8 Posted Topics

Member Avatar for vegaseat

Module for handling strings (learning stuff) [CODE]####################################### # Programmed by : StrikerX # Purpose : Module for handling string ####################################### def toUpper(string): string_upper = "" for char in string : if ord(char) < 97 : string_upper += char elif ord(char) >= 97 : string_upper += chr(ord(char) - 32) print string_upper …

Member Avatar for vegaseat
20
18K
Member Avatar for ~s.o.s~
Member Avatar for eXceed69

Well, Try to use this one :[url]http://www.download.com/FLV-Player/3000-2139_4-10467081.html[/url]

Member Avatar for uniquestar
0
138
Member Avatar for StrikerX

Hi guyz , i don't know if it's the right place to post this thread at .anyway , I've router "Repotec", and i'm trying to forward a port . i tried this : Disable the firewall . NAT -> Virtual Servers -> Adding the Port and save it . it …

Member Avatar for DimaYasny
0
74
Member Avatar for StrikerX

Hi, I was wondering, how to use python in Visual Studio.NET or Sharp Develop ?? free software i hope :) Writting GUI is great when it's just drag & drop . Thanks in advance.

Member Avatar for Ene Uran
0
127
Member Avatar for Zorbie

I guess this what you are looking for something like this [code] #!bin/python num = int(input("Enter number : ")) #getting the starting number . while (num < 100): #start the loop . print "it's less than 100, add more numbers ." another_num = int(input("Enter number : ")) num = num …

Member Avatar for jrcagle
0
272
Member Avatar for StrikerX

hi guyz, i'm a Python user (not so long) , anyway i've read some stuff about lua . i've written function like this [code]def pair(dic = {} ): return dic.keys(), dic.values()[/code] a dictionary is a parameter to the pair function . to use it like this : [code]dic = {1 …

Member Avatar for StrikerX
0
151
Member Avatar for StrikerX

Hi, i need to do a program that listen to port 80 (it doesn't really matter about the port ) and do a command passed by user .. like this for [URL]http://localhost:80/command[/URL] example : [URL]http://localhost:80/openurl:url[/URL] the program open the url passed .. and so on . the problem : i …

Member Avatar for StrikerX
0
73

The End.