-
Edited Raspberry Pi LED control (Python)
Well I done it! Got bored after the holidays and bought a Raspberry Pi credit card sized computer ($35), the least expensive LED TV and a Logitech wireless Keyboard/Mouse combo. … -
Marked Solved Status for Subconsciously influencing via photo-tweaking
For anyone interested in issues of privacy, I'm reading a great book, "Dragnet Nation," by Julia Angwin. And I found this interesting. http://us.macmillan.com/dragnetnation/JuliaAngwin I was struck by this: *Professor Ryan … -
Marked Solved Status for Jokes for presentation about hacking/IT
Dear DaniWeb members, I'm sorry to just come here and directly throw question onto you. But I'm kind of stuck and I can't proceed further. We need to make presentation … -
Marked Solved Status for GUI Designer (just for graphical representation)
Hello everyone. Could anyone tell me if there is such thing as a GUI designer. I'm looking for something to just create the image of a guid I want to … -
Marked Solved Status for Difference between high and low level programming languages
1. What is the difference betwen high level languages and low level languages? 2. What does a high level language do that a low level language cant? 3. Is c# … -
Marked Solved Status for What technique did you use to learn to program?
I started programming 3 2 years ago when I started the certificate in IT, I am now on my 3rd and final year of the bachelors degree in IT. The … -
Marked Solved Status for At what age did you create your first website?
im at 21 years old created my first website. -
Marked Solved Status for Software development,a wise choice of second career for an older woman?
Hello everyone! Glad to have found this great community here! A little background, I have a cert in web development from several years ago which I aced every class, however … -
Revoked Solved Status for 4th dimension
My math professor in the past explained it this way: Consider yourself a 2D creature(some sort of pancake). If placed in a circle, you can't escape in a 2D world. … -
Marked Solved Status for Programming Sucks
This is just too good not to share with everyone. >The only reason coders' computers work better than non-coders' computers is coders know computers are schizophrenic little children with auto-immune … -
Marked Solved Status for Apple Live Broadcast
I don't know if you are, but I am counting down before the launching starts. Only **01** hour **14** minutes **00** seconds left. If you're interested, live broadcast is available … -
Marked Solved Status for Food and Country
Just another one of those silly polls. This one asks you to list the country that most associates with the type of food (or drink) you like. -
Marked Solved Status for Knowing programming?
For the past 3-4 years I can say that I m very active in programming (programming on daily bases and trying to compesate my education wich is not 100% related … -
Marked Solved Status for Script Errors
When starting up my Windows 8 HP laptop I continue to get a script error. I have deleted my Internet temp files as well as my temp files in Windows. … -
Replied To a Post in There is an elephant on the loo!
Japan has the largest public debt of any country on Earth with 226% of GDP. That makes Greece with 144% of GDP, Belgium with 97%, and the USA with 72% … -
Replied To a Post in Windows 10 New Icons
Icons with a Kindergarten look, refreshing! To be new you have to change something. Let's hope it is security that was improved. -
Replied To a Post in There is an elephant on the loo!
Black holes grow, scientific theory suggests, as they pull in mass that comes close to them. However, as mass is absorbed, it will be heated creating radiation pressure, which pushes … -
Replied To a Post in What is the usage of urljoin?
An example ... # assume you have this url ... url = "https://www.python.org/downloads/release/python-343/" # the base (scheme + netloc) would be ... base = "https://www.python.org/" # the path would be … -
Marked Solved Status for the duty of a web crawler
Hello. I'm trying to create a web crawler. I've read about web crawler's duty and about how it works and what he does. But just need more information. Could you … -
Marked Solved Status for Python tkinter window
Hi, I am looking for a little example of making a window visible or invisible. I have a main window with 2 buttons (option1 and option2). If i press option … -
Replied To a Post in Google Go OOP
Nice info ... http://www.golang-book.com/ -
Replied To a Post in There is an elephant on the loo!
Melatonin (an over-the-counter sleep aid) is reported to increase the vividness of dreams. -
Replied To a Post in There is an elephant on the loo!
You cannot snore and dream at the same time. -
Replied To a Post in RIP Leonard Nimoy
83 years young, sad. -
Replied To a Post in Google Go OOP
Go and Python similarities ... // assign and infer data type int x, y := 3, 12 fmt.Println(x, y) // 3 12 // a swap similar to Python's tuple swap … -
Replied To a Post in Beginner's Tutorial On Loop
One more addition. You can turn a function into a loop ... int countdown_loop(int count) { // a recursive function to count down from count to zero cout << count … -
Replied To a Post in Beginner's Tutorial On Loop
Nice tutorial! Sometimes an endless loop comes in handy ... // an endless loop with break condition int k = 0; while(true) { k++; cout << k << " "; … -
Replied To a Post in C programming
Great resource ... https://www.daniweb.com/software-development/c/threads/50370/starting-c-#post234971 -
Marked Solved Status for cant send this list from terminal to txt file/drop each index into new line
Hello, me again :) With this code: >>> from BeautifulSoup import BeautifulSoup >>> import urllib2 >>> url = urllib2.urlopen('http://www.python.org').read() >>> soup = BeautifulSoup(url) >>> links = soup('a') >>> print links … -
Replied To a Post in There is an elephant on the loo!
Street vendors selling deep-fried insects as snacks are a familiar sight in Bangkok. Crunchy crickets and grubs are a delicacy available in plain salt, cheese, and barbecue flavors. -
Replied To a Post in Is Go a legacy language?
So Go is not a legacy language and has a suspekt future ahead. -
Marked Solved Status for Problem with python and SQL
Hi everybody. I'm using python to create sql database. I created a test.db file and then made a table on it with the name "fims" and inserted some data on … -
Marked Solved Status for Problem with a value being a float not an integer?
The code that has been attatched (i couldnt post it for some reason) produces the error message: Traceback (most recent call last): File "filename", line 36, in <module> for i … -
Marked Solved Status for Hopelessly stuck in GUI programming
Hi, I am working on a GUI (more correctly, trying to), but I just don't really get it to work the way I want. The idea is to have a … -
Marked Solved Status for Comprehending Python
Hi everyone, I am having trouble comprehending or digesting the programming mentality. I'm learning Python and while I completely understand the syntax as well as the language itself, my problem … -
Marked Solved Status for pseudocode dice thrown 100 times by 6 playes
Hello i am new to programming i trying to solve the follwing Allow 6 different players to throw dice 100 times The results sholuld be stored in the collection SCORES. … -
Marked Solved Status for What does brackets in python mean?
For example the 'x'in if ans*ans*ans != abs(x): -
Marked Solved Status for Python GUI Tkinter Calculator
import tkinter top=tkinter.Tk() t=tkinter.Text(top,height=1,width=1,bd=2,font=10) t.grid(row=0,column=0) b1=tkinter.Button(top,height=2,width=8,bd=2,text="MC",fg="Red") b1.grid(row=1,column=1) b2=tkinter.Button(top,height=2,width=8,bd=2,text="Backspace",fg="Red") b2.grid(row=1,column=2) b3=tkinter.Button(top,height=2,width=8,bd=2,text="CE",fg="Red") b3.grid(row=1,column=3) b4=tkinter.Button(top,height=2,width=8,bd=2,text="C",fg="Red") b4.grid(row=1,column=4) b5=tkinter.Button(top,height=2,width=8,bd=2,text="MR",fg="Red") b5.grid(row=2,column=1) b6=tkinter.Button(top,height=2,width=8,bd=2,text="7",fg="Blue") b6.grid(row=2,column=2) b7=tkinter.Button(top,height=2,width=8,bd=2,text="8",fg="Blue") b7.grid(row=2,column=3) b8=tkinter.Button(top,height=2,width=8,bd=2,text="9",fg="Blue") b8.grid(row=2,column=4) b9=tkinter.Button(top,height=2,width=8,bd=2,text="/",fg="Red") b9.grid(row=2,column=5) b10=tkinter.Button(top,height=2,width=8,bd=2,text="sqrt",fg="Blue") b10.grid(row=2,column=6) b11=tkinter.Button(top,height=2,width=8,bd=2,text="MS",fg="Red") b11.grid(row=3,column=1) b12=tkinter.Button(top,height=2,width=8,bd=2,text="4",fg="Blue") b12.grid(row=3,column=2) b13=tkinter.Button(top,height=2,width=8,bd=2,text="5",fg="Blue") … -
Marked Solved Status for Not sure what this chunk of code is doing
from tkinter import * from random import randint #Return random color #RRGGBB def getRandomColor(): color = '#' for j in range(6): color+= toHexChar(randint(0, 15)) return color #Convert an integer to … -
Marked Solved Status for Drop-down menu in Tkinter
How can i create a drop-down menu in Tkinter? -
Marked Solved Status for Feeling demotivated
I Started to learn my first programming language - Python about 2 months ago and I'm 3/4 the way through my book Introduction to Programming using Python - Daniel Liang … -
Marked Solved Status for How to set tkinter button command to call a function from a class
Hello. I have a Class in my python file. That Class contains some functions. How can i set the command of a Tkinter butten so that call a function of … -
Replied To a Post in Python Text Adventure
Another good tutorial to make a Python RPG ... http://thepythongamebook.com/en:python:goblins:start -
Marked Solved Status for problem with kivy label
I want to exchange line 18 text with line 23 lable text, but here line 18 doesn't work in my code? Any idea?! from kivy.app import App from kivy.uix.boxlayout import … -
Marked Solved Status for send a printed text from terminal into a text file
Hi friends! import urllib url = 'http://www.python.org' text = urllib.urlopen(url).read() I have typed the code above on the terminal and in the next line with `print text` an html file … -
Marked Solved Status for looking for a reference for python url lib tutorial?
Hello. I want to learn python urllib. I have installed it and now looking for a good tutorial, any suggestion? -
Replied To a Post in any suggestion for tutorial to create web crawler with python urllib?
You could also take a look at Scrapy: http://scrapy.org/ and https://pypi.python.org/pypi/Scrapy -
Replied To a Post in Google Go OOP
I am finding out that Go is unforgivingly strict with data typing. Wit ... // data_typing_test101.go // Go 'gotcha' stuff package main import "fmt" func main() { fmt.Println(7 + 3.14) … -
Marked Solved Status for Learning Python
Hello members, Presently I do my projects with vb.net. I am not familier with Python. I want to learn python. Would you help me to learn python? I know nothing … -
Marked Solved Status for Is my program better with "do while" or "for with if" conditional loop
Hi, I have data like these: data_past = [[62.0, 144.0, 3, 0]] where data_past=[[red_circle_x , red_circle_y , id_of_rectangle , status]] data_current = [[60, 148, 0], [148, 127, 0]] where data_current=[[red_circle_x …
The End.