-
Created grub
I recently installed Windows Server 2008 and how my BIOS keeps setting the Windows boot as the default boot rather than Linux even though I keep setting the Linux SSD … -
Began Watching grub
I recently installed Windows Server 2008 and how my BIOS keeps setting the Windows boot as the default boot rather than Linux even though I keep setting the Linux SSD … -
Replied To a Post in rsync
I haven't lost the files from my source DIR, it's all still there and all is still good. My issues are only in the destination DIR. -
Created rsync
I have an iBasso DX50 digital music player and I have all of my music for it stored on a 128 GB micro SD card. I sync my music directory … -
Began Watching rsync
I have an iBasso DX50 digital music player and I have all of my music for it stored on a 128 GB micro SD card. I sync my music directory … -
Created Installing Server 2008 R2
I just tried installing MS Server 2008 R2 and it seemed to install fine but when I try and start it this is what I get and the black and … -
Began Watching Installing Server 2008 R2
I just tried installing MS Server 2008 R2 and it seemed to install fine but when I try and start it this is what I get and the black and … -
Marked Solved Status for mounting SD card
I'm trying to mount my SD card to my computer because the auto mount feature isn't working for some reason. The card shows up on the first line of the … -
Replied To a Post in mounting SD card
Sorry, wrong forum. -
Created mounting SD card
I'm trying to mount my SD card to my computer because the auto mount feature isn't working for some reason. The card shows up on the first line of the … -
Began Watching mounting SD card
I'm trying to mount my SD card to my computer because the auto mount feature isn't working for some reason. The card shows up on the first line of the … -
Created Updating Mint Cinnamon
For the past week I have been unable to update my Linux Mint 15 Cinnamon desktop. The shield at the bottom right corner of the screen just shows a red … -
Began Watching Updating Mint Cinnamon
For the past week I have been unable to update my Linux Mint 15 Cinnamon desktop. The shield at the bottom right corner of the screen just shows a red … -
Created choosing a tower
I'm looking at some towers on newegg and I'm trying to pick one out. I'm open to a full tower but I'd like to know if I can get away … -
Began Watching choosing a tower
I'm looking at some towers on newegg and I'm trying to pick one out. I'm open to a full tower but I'd like to know if I can get away … -
Replied To a Post in Form Factor
I punched in a model I seen on a sticker on the back of the case, this site is what I found -> http://www.ascendtech.us/gateway-gt4024-gt4026e-motherboard_i_mb4gat4001071r3.aspx It shows a micro-BTX, so I'm … -
Replied To a Post in Form Factor
It's an older Gateway tower, IDE connectors on the motherboard. -
Created Form Factor
I just gutted one of my old desktop as am thinking about building a server. How do I know what size form factor this case needs. I'm assuming it's ATX … -
Began Watching Form Factor
I just gutted one of my old desktop as am thinking about building a server. How do I know what size form factor this case needs. I'm assuming it's ATX … -
Replied To a Post in builtins.UnicodeDecodeError:
The files I'm working on are all binary files, .mp3, .flac, & .wav. Does that help at all? -
Replied To a Post in builtins.UnicodeDecodeError:
I tried tag as both a string and as bytes. I used `tag = 'artist='` as well as `tag = b'artist='`. I get the same error either way. -
Created builtins.UnicodeDecodeError:
builtins.UnicodeDecodeError: 'utf-8' codec can't decode byte 0xd2 in position 14: invalid continuation byte I'm getting the following error that pops up not in my script but in the codecs.py file. … -
Began Watching builtins.UnicodeDecodeError:
builtins.UnicodeDecodeError: 'utf-8' codec can't decode byte 0xd2 in position 14: invalid continuation byte I'm getting the following error that pops up not in my script but in the codecs.py file. … -
Marked Solved Status for pointers and refs
In the following program I'm getting the warning -> unused variable ‘fn’. I'm following along with a book so I don't know why it gave me that portion of code … -
Created pointers and refs
In the following program I'm getting the warning -> unused variable ‘fn’. I'm following along with a book so I don't know why it gave me that portion of code … -
Began Watching pointers and refs
In the following program I'm getting the warning -> unused variable ‘fn’. I'm following along with a book so I don't know why it gave me that portion of code … -
Replied To a Post in importing eyed3
vegaseat If it's a directory that is already in PYTHONPATH, couldn't it already have modules in it? If so, would there already be an `__init__.py file`? Gribouillis Will the line … -
Replied To a Post in importing eyed3
Thanks. That should workout good. Could you explain the `__init__.py` line a little more though please. -
Created importing eyed3
(Linux) I just installed eyed3 for python using apt-get, everything installed fine but when I tried to import eyed3 I got a trackback error, no such module. Do I need … -
Began Watching importing eyed3
(Linux) I just installed eyed3 for python using apt-get, everything installed fine but when I tried to import eyed3 I got a trackback error, no such module. Do I need … -
Created file copy I/O error
I'm trying to copy a file to my new iBasso DX50 music player but I can't create or removes files from the device, it worked fine the first day I … -
Began Watching file copy I/O error
I'm trying to copy a file to my new iBasso DX50 music player but I can't create or removes files from the device, it worked fine the first day I … -
Replied To a Post in python program installer
pyinstaller to make an executable, wouldn't that eliminate the need for the python to be installed on the system? -
Created python program installer
I know that all you really need to execute a python program is the python interpriter, what what if your program uses config files that might be in /etc, ~/.program, … -
Replied To a Post in using or, and byte.find
Gribouillis I'm trying your re method but I'm running into a bump. #!/usr/bin/env python3 import sys import re file = sys.argv[1] f = open(file, 'rb') #search_string = b"br'(?i)artist\=" for line … -
Replied To a Post in using or, and byte.find
Why did s[20:10] not return from index 20 plus the next ten bytes? My thinking was this is how it works, clearly I'm wrong. One other thing, if I do … -
Replied To a Post in using or, and byte.find
wooee, in that program line is 658 bytes long so starting from index 0 and moving 10 bytes shouldn't be a problem but if I change print(line[seek_position:]) to print(line[seek_position:10]) it … -
Replied To a Post in using or, and byte.find
Thanks woooee. I'm not getting the whole line but I have two more questions. Can I always be sure that the metadata artist & album tags will not be split … -
Replied To a Post in using or, and byte.find
I mean the code within the if block. Even when I take away all the extra 'or' conditions in the while loop and have it only search for the exact … -
Replied To a Post in As a beginner, what IDE should I use?
vim is good, for a graphical editor I would go with WingIDE. -
Replied To a Post in using or, and byte.find
Thanks Gribouillis, I'll give that a try. Do you see where my logic went wrong? -
Created using or, and byte.find
#!/usr/bin/env python3 import sys import re file = sys.argv[1] f = open(file, 'rb') seek_positoin = 0 artist_string = b'artist=' line = b'' f.seek(seek_positoin) while artist_string.upper() or artist_string.lower() not in line: … -
Replied To a Post in As a beginner, what IDE should I use?
I like WingIDE, you can det it from http://www.wingware.com It's not free but it's a good IDE designed specifically for python. -
Marked Solved Status for Can't convert 'int' object to str implicitly
Why am I getting the above error message when I run this program? I'm running this program with an mp3 file as an argument, the mp3 file is in the … -
Replied To a Post in Can't convert 'int' object to str implicitly
Thanks Gribourillis, I think I've got it now. -
Replied To a Post in Can't convert 'int' object to str implicitly
Gribouillis thanks, this line worked -> `newchar = newchar + char[counter:counter + 1]` The only problem now is that the title is wrapped in b'', so it comes out like … -
Replied To a Post in Can't convert 'int' object to str implicitly
Gribouillis shouldn't char[counter] give me the byte residing at the index of counter, and not an actual int? I also tried your rstrip example but this is what I got. … -
Created Can't convert 'int' object to str implicitly
Why am I getting the above error message when I run this program? I'm running this program with an mp3 file as an argument, the mp3 file is in the … -
Replied To a Post in mp3 meta data
I need to make sure that `file.read()` stops after hitting '\x00' I tried a while loop but it isn't working. Also, does `file.read()` step one byte forward each time through … -
Created mp3 meta data
I'm trying to write a program to get the artist and album from mp3 files. A simple test run on the Alice in Chanins song Rooster yielded this result -> …
The End.