jacknetgb: I just made a symlink from where it expects the data to be to another drive... has been working fine for ages so far :P
jacknetgb
thats what the guys on postgresql told me to do also
Muz
Err, -lsha even for readable file sizes
futilius joined the channel
Third column is file size, if they're not the same I'd suspect you didn't download the entire file heh
nikki
if they are the same, do you have enough space in your /tmp directory to extract the files?
jacknetgb
they seem to be around the same sizes e.g. mbdump is 473M and it says 483749 KB on the ftp
does that seem fine?
Muz
Yeah, what about what nikki suggested?
jacknetgb
ive got 1.5g free in my on my / drive
Muz
Nowhere near enough
jacknetgb
i shall go up it
Muz
About 15GB should do
Hmm
jacknetgb
just for the /tmp folder that database is on the other drive now?
Muz
Oh, just for /tmp about 10GB free I imagine
Given that it's 7GB when imported or so
Sargun has quit
nikki
you can change the location of the temporary folder it uses
jacknetgb
its alright now ive upped the drive size
Muz
Is this a VM or something?
jacknetgb
yeh
i need another computer to run mb on really
Muz
Depends what you're going to do with your install, if it isn't going to be public facing or under heavy useI wouldn't worry too much
VxJasonxV joined the channel
jacknetgb
hmm vm isnt picking up the change in drive size
Muz
Use the --tmp-dir=/alternate/place/to/unpack/tars option then
CatCat
according to http://www.discogs.com/release/1146793 it seems ther are two different *versions* of that release, if even the music is different, there should be different releases addet to mb
eg. the regular release and the "commercial version"
Muz
Er, wtf?
CatCat
uh yes?
Muz
Bit random of you to bring it up :P
CatCat
i just came home now, so soue me :p
sue*
brianfreud
Hi mo! :)
CatCat
hello
v6lur has quit
v6lur_ joined the channel
FauxFaux
Hi brianfreud!
Muz
Hi FauxFaux!
FauxFaux
Hi ruaok!
CatCat
hi FauxFaux
brianfreud
Hi FauxFaux!
CatCat
hi brianfreud
brianfreud
lol, hei mo
Alan_New has quit
outsidecontext has left the channel
drsaunde
time for some french vanilla kahlua
jacknetgb_ joined the channel
jacknetgb has quit
jacknetgb_
jacknetgb_ is now known as jacknetgb
jacknetgb
What would you guys say the best free IRC client for windows is?
drsaunde Jurrasic 5 - What's Golden (Power in Numbers 2002)
Muz_ joined the channel
?
juhae
irssi
Alan_New joined the channel
jacknetgb
thanks ill take a lool
look*
jacknetgb has quit
juhae
whoever he was.
Muz has quit
axu joined the channel
axu
hello
i am asking mysqlf how to calculate the size of an id3v2 tag. i read the http://www.id3.org/id3v2.3.0#head-697d09c50ed7f... ... but dont get the calculation: The ID3v2 tag size is encoded with four bytes where the most significant bit (bit 7) is set to zero in every byte, making a total of 28 bits. The zeroed bits are ignored, so a 257 bytes long tag is represented as $00 00 02 01. ...... in my calculations: hex 201 = dec 513
Clint
axu: try hex 102
axu
clint: 258
Clint
axu: which is 1 off from your 257
axu
clint: yes, but one of meas i would cut a chunk of the first mp3frame if id remove the id3v2 tag accoring to my miscalculation
mhm, some garbage above, but it should make some sense anyhow ;9
i intend to create checksums of mp3frames only. so the checksum doesnt change if the id3v2 tag changes.
srotta
Well, they are seven bit numbers.
axu
srotta: yes, 4x7
srotta: got a clou how to get 257dec out of 00 00 02 01
hex
srotta
Yeah. 2^8 + 1
"Hex" is also a representation of the bytes used to encode the length.
axu
srotta: ok, theres 257 :) but i still dont get it :( where could i get further information on this. or. whats the searchphrae?
srotta
"also", I meant only.
Since the most significant bit is always zero, in this case there's nine significant bits, so 201 => 100000001 in binary.
axu
srotta: sorry, but this doenst make sense to me :(
100000001 = 0101 hex
srotta
Forget about the hex.
axu
ok
ill try
srotta
You can't use straight conversion since we're talking about seven bit numbers.
Let's do it the other way round, maybe that helps.
8)
So, 257 = 100000001
axu
:)
Alan_New has quit
srotta
No divide that into seven bit groups => 10 0000001
Add the most significant bit and padding => 00000010 00000001
Turn that into hex => 02 01
axu
srotta: mhm, ok, i think things are clearing up a bit.
srotta
So there's the "extra zero bit" which isn't part of the actual number.
axu
srotta: so for reverse calculation i convert 0201 to bin, then cut after the 7th bit and add the right 7 bits to the 2^8 calculation ?