• Member Avatar for lewashby
    lewashby

    Replied To a Post in mp3 meta data

    Below is what I have so far. I'm getting the TAG which is what I'm looking for but I don't understand why it has b'' wrapped around it. It's coming …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in mp3 meta data

    I don't want to use an API because that would take all the work out of it. Looking at existing OSS code is over my head, I tried to take …
  • Member Avatar for lewashby
    lewashby

    Created mp3 meta data

    I'm going to try and extract the artist and album from the meta data of an mp3 file with python but I need a little help. This is what I …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in tor start up error

    Tor is doing the exact same thing again. Last time this happened I uncheck 'Use Network Time' and then Tor started working, now nothing seems to work and my the …
  • Member Avatar for lewashby
    lewashby

    Revoked Solved Status for tor start up error

    Below is what I'm getting when I try nad start tor, any ideas? M ay 25 14:38:35.000 [notice] Bootstrapped 25%: Loading networkstatus consensus. May 25 14:38:45.000 [warn] Received directory with …
  • Member Avatar for lewashby
    lewashby

    Marked Solved Status for tor start up error

    Below is what I'm getting when I try nad start tor, any ideas? M ay 25 14:38:35.000 [notice] Bootstrapped 25%: Loading networkstatus consensus. May 25 14:38:45.000 [warn] Received directory with …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in tor start up error

    I have time and date set to network time, I'm using Mint Linux, I don't know what else to do.
  • Member Avatar for lewashby
    lewashby

    Created tor start up error

    Below is what I'm getting when I try nad start tor, any ideas? M ay 25 14:38:35.000 [notice] Bootstrapped 25%: Loading networkstatus consensus. May 25 14:38:45.000 [warn] Received directory with …
  • Member Avatar for lewashby
    lewashby

    Created qt

    When I try to compile the program at the bottom this is what I get. `-> qtprogram.cpp:1:24: fatal error: QApplication: No such file or directory` I got this code from …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in apache root

    In your config file above, what is Alias /support refering to? I see that it's pointing to /var/www/html/support but where does Alias support actually come into play?
  • Member Avatar for lewashby
    lewashby

    Created apache root

    In my /var/www/ directory I have a lot of sub directories, one is learning/, which is where I place all my web projects that I'm following from different PHP or …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in bad memory in iPod

    When I plug it in to auto mounts so I'm assuming I can run the commands on it. Will I need to know the format to do that? Thanks.
  • Member Avatar for lewashby
    lewashby

    Created samba media server

    I just set up a samba media server and I got it up and running but it currently has to have a username and password to access the files. Do …
  • Member Avatar for lewashby
    lewashby

    Created bad memory in iPod

    I have a 120 Gig iPod classic but I think it's HD must be getting some bad places, it at leat 3 years old, but I think a few years …
  • Member Avatar for lewashby
    lewashby

    Marked Solved Status for keyword arguments and map unpacking

    greens = dict(green="#0080000", olive="#808000", lime="#00FF00") >>> print("{green} {olive} {lime}".format(**greens)) -> #0080000 #808000 #00FF00 In the program above what are green, olive, and lime in the dict function? I've seen and …
  • Member Avatar for lewashby
    lewashby

    Created keyword arguments and map unpacking

    greens = dict(green="#0080000", olive="#808000", lime="#00FF00") >>> print("{green} {olive} {lime}".format(**greens)) -> #0080000 #808000 #00FF00 In the program above what are green, olive, and lime in the dict function? I've seen and …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in text align and css div blocks

    I don't see topbar anywhere in your css but it's referenced in your html?
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in text align and css div blocks

    Thanks, I'll give this a try. Kinda new to CSS, when position is relative, what is it relative to? Thanks again.
  • Member Avatar for lewashby
    lewashby

    Created text align and css div blocks

    I'm trying to create this site with a solid black top bar the extends from the left img all the way to the right of the screen, then add some …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in bridge radio

    Assuming they support the same protocols will a 5.2 not even see a 2.4 and vise versa?
  • Member Avatar for lewashby
    lewashby

    Created bridge radio

    I have a Ubiquiti radio in the house and I think it's a 5.2 GHz. I did a scan to see if it could see my router's SSID but it …
  • Member Avatar for lewashby
    lewashby

    Created network programming, socket.socket udp

    Server #!/usr/bin/python3 import socket from time import ctime HOST = '' PORT = 21567 BUFSIZ = 1024 ADDR = (HOST, PORT) udpSerSock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) udpSerSock.bind(ADDR) while(True): print('waiting for message...') …
  • Member Avatar for lewashby
    lewashby

    Created momentary push switch

    I need to link a momentary push swith to a raspberry pi. I need to know if it's possible to make the mps issue either a command to the Linux …
  • Member Avatar for lewashby
    lewashby

    Marked Solved Status for the socket module

    In this line -> `tcpSerSock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)` what is the first 'socket' after the '=' sign, is that refering to a socket class making tcpSerSock an object or just …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in the socket module

    Thanks, got it working. I didn't have all my '()' symbols inserted correctly. One last thing, what BUFSIZ all about, when and why do I need to wory about bufsize, …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in the socket module

    Thank, I made those changes and all though the errors are gone after pressing RETURN it goes back to the prompt and I don't get any output. I also figured …
  • Member Avatar for lewashby
    lewashby

    Created the socket module

    In this line -> `tcpSerSock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)` what is the first 'socket' after the '=' sign, is that refering to a socket class making tcpSerSock an object or just …
  • Member Avatar for lewashby
    lewashby

    Created properties

    In the following program how does the line `r.size = 150, 100` actually set the values using this line -> `size = property(getSize, setSize)`? property has two arguments, getSize & …
  • Member Avatar for lewashby
    lewashby

    Marked Solved Status for Python linux executable

    I know python is an interpreted language but is there a way to compile your code? What if you write a program in python 3 and the user has python …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in Python linux executable

    Thanks.
  • Member Avatar for lewashby
    lewashby

    Created Python linux executable

    I know python is an interpreted language but is there a way to compile your code? What if you write a program in python 3 and the user has python …
  • Member Avatar for lewashby
    lewashby

    Marked Solved Status for class variable scope

    class MemberCounter: members = 0 def init(self): MemberCounter.members += 1 # m1 = MemberCounter() # m1.init() # MemberCounter.members -> 1 # m2 = MemberCounter() # m2.init() # MemberCounter.members -> 2 …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in class variable scope

    Thanks, I'm reading up on that page now.
  • Member Avatar for lewashby
    lewashby

    Created class variable scope

    class MemberCounter: members = 0 def init(self): MemberCounter.members += 1 # m1 = MemberCounter() # m1.init() # MemberCounter.members -> 1 # m2 = MemberCounter() # m2.init() # MemberCounter.members -> 2 …
  • Member Avatar for lewashby
    lewashby

    Created this

    I'm having trouble understanding the keyword 'this' in php. When and where does it need to be used? Why can you not simply use the variable name as you would …
  • Member Avatar for lewashby
    lewashby

    Created bash & sqlite

    How can I write bash script to force pre-written sql quaries and inserts into my sqlite3 DB? I am currently having to run my page in a browser and then …
  • Member Avatar for lewashby
    lewashby

    Marked Solved Status for ip troubleshooting

    In my home network I have my desktop wired (eth0) to a Netgear range extender that is wirelessly linked to my Linksys AC1200 router. If I do ip route show …
  • Member Avatar for lewashby
    lewashby

    Replied To a Post in ip troubleshooting

    So how can I get the IP of the RE?
  • Member Avatar for lewashby
    lewashby

    Created ip troubleshooting

    In my home network I have my desktop wired (eth0) to a Netgear range extender that is wirelessly linked to my Linksys AC1200 router. If I do ip route show …