Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 19,993
» Latest member: lauren557
» Forum threads: 38,736
» Forum posts: 175,582
Full Statistics
|
Online Users |
There are currently 39 online users. » 0 Member(s) | 37 Guest(s) Bing, Google
|
Latest Threads |
print does not open conso...
Forum: General Coding Help
Last Post: Axel_Erfurt
3 hours ago
» Replies: 4
» Views: 124
|
Weird failure in Selenium
Forum: General Coding Help
Last Post: Larz60+
10 hours ago
» Replies: 1
» Views: 77
|
Fred Economic Data API
Forum: Web Scraping & Web Development
Last Post: Trickety
Yesterday, 03:05 PM
» Replies: 3
» Views: 2,543
|
create ocr to detect lice...
Forum: General Coding Help
Last Post: noisefloor
Yesterday, 01:58 PM
» Replies: 2
» Views: 104
|
Parse Markdown / get the ...
Forum: General Coding Help
Last Post: noisefloor
Yesterday, 01:56 PM
» Replies: 6
» Views: 230
|
Error: cannot mix str wit...
Forum: General Coding Help
Last Post: Joliekeva
Oct-01-2025, 03:05 AM
» Replies: 4
» Views: 2,054
|
Integer Factorization Too...
Forum: Code sharing
Last Post: buran
Sep-30-2025, 07:43 AM
» Replies: 2
» Views: 467
|
My goal to be hired worki...
Forum: News and Discussions
Last Post: GnomeSweetGnome
Sep-30-2025, 12:21 AM
» Replies: 2
» Views: 1,100
|
Unable to resolve FileNot...
Forum: General Coding Help
Last Post: noisefloor
Sep-29-2025, 05:45 PM
» Replies: 6
» Views: 1,175
|
Comparing 2 100GB Drives/...
Forum: General Coding Help
Last Post: snippsat
Sep-29-2025, 12:59 PM
» Replies: 8
» Views: 857
|
|
|
Timing input |
Posted by: Mark17 - Oct-23-2019, 07:55 PM - Forum: General Coding Help
- Replies (2)
|
 |
I'm trying to find a simple timing snippet to measure response time.
This repeatedly outputs "it took 0.0 seconds." Why?
[code]
import time..... More
|
|
|
Stupid Bots |
Posted by: ichabod801 - Oct-23-2019, 07:46 PM - Forum: Bar
- No Replies
|
 |
Usually when I'm programming a game, I'll make the stupid version of the bot first. It's easier, and I can test out the game mechanics and the general..... More
|
|
|
Get master secret TLS |
Posted by: robcordes - Oct-23-2019, 12:41 PM - Forum: Networking
- Replies (2)
|
 |
I need to retrieve the pre-master secret generated by Requests for the TLS connection in order to use this to decrypt the traffic in Wireshark.
wou..... More
|
|
|
CVS file to EXCEL |
Posted by: DavidTheGrockle - Oct-23-2019, 10:26 AM - Forum: General Coding Help
- Replies (11)
|
 |
I have a CVS file, published by the author of a scientific paper, having 700,000 rows. I want to split this file up into smaller "units" preferably pu..... More
|
|
|
List and loop |
Posted by: Sandeep2000 - Oct-23-2019, 05:51 AM - Forum: General Coding Help
- Replies (5)
|
 |
I am not getting expected output? Why?
[python]
phrase="don't panic"
plist=list(phrase)
str1="on tap"
qlist=list(str1)
for item in qlist:
..... More
|
|
|
Factors ERROR |
Posted by: AdamJae - Oct-22-2019, 05:41 PM - Forum: Homework
- Replies (2)
|
 |
[python]def factors(n):
list = []
for x in range(2, n+1):
while n % x == 0:
list.append(x)
n = n//x
..... More
|
|
|
Numbered list |
Posted by: sheriff2001 - Oct-22-2019, 01:46 PM - Forum: Homework
- Replies (3)
|
 |
The last part of my homework assignment is making a list that takes the users input of presidents and aligns them to the left and ranking them with nu..... More
|
|
|
|