Bump this thread when you fix a bug

Message Bookmarked
Bookmark Removed
Not all messages are displayed: show all messages (47 of them)

'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'
' ???? !!!!
' ( *_*) ERROR HANDLING (^_^ )
'
'
'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

gnarly sceptre, Wednesday, 4 November 2009 18:06 (fourteen years ago) link

bah

gnarly sceptre, Wednesday, 4 November 2009 18:06 (fourteen years ago) link

i think there's a bug in your post

quaq quao, sweetie (electricsound), Wednesday, 4 November 2009 21:57 (fourteen years ago) link

diff -r 63cbed0e502c plotrmass.pro
--- a/plotrmass.pro Wed Nov 04 18:46:34 2009 +0000
+++ b/plotrmass.pro Wed Nov 04 22:22:23 2009 +0000
@@ -26,12 +26,15 @@
logmasss0dyn = logmass(s0, error = e_logmasss0dyn, fixapperror = fixapperror, $
fixderror = fixderror, /dyn)

- rds0 = alog10(getrd(s0))
- rdsp = alog10(getrd(sp))
- res0 = alog10(getre(s0))
- resp = alog10(getre(sp))
- r25s0 = alog10(getr25(s0))
- r25sp = alog10(getr25(sp))
+ ; Must be in physical units not arcsec!
+ ; pc = distance*!dpi/(648d) ; Constant factor to convert arcsec --> kpc
+
+ rds0 = alog10(getrd(s0) * getdistance(s0)*!dpi/648d)
+ rdsp = alog10(getrd(sp) * getdistance(sp)*!dpi/648d)
+ res0 = alog10(getre(s0) * getdistance(s0)*!dpi/648d)
+ resp = alog10(getre(sp) * getdistance(sp)*!dpi/648d)
+ r25s0 = alog10(getr25(s0) * getdistance(s0)*!dpi/648d)
+ r25sp = alog10(getr25(sp) * getdistance(sp)*!dpi/648d)

caek, Wednesday, 4 November 2009 22:23 (fourteen years ago) link

IT'S ALWAYS DISTANCE

caek, Wednesday, 4 November 2009 22:23 (fourteen years ago) link

FUCKING ANGULAR SIZE

caek, Wednesday, 4 November 2009 22:23 (fourteen years ago) link

hey didn't you make the Kessel Run in 12 parsecs arcseconds?

a gift from your mind in the form of the perfect beat (snoball), Wednesday, 4 November 2009 22:50 (fourteen years ago) link

people who measure the size of objects at known distance in angular size are the most disgusting savages in the world imo

caek, Wednesday, 4 November 2009 22:58 (fourteen years ago) link

this FF bug title made me laff for some reason

https://bugzilla.mozilla.org/show_bug.cgi?id=468562

frank bananarama (electricsound), Monday, 9 November 2009 04:11 (fourteen years ago) link

two months pass...

i can't do a diff for this one, but fucking white dwarf spectra.

caek, Tuesday, 26 January 2010 16:05 (fourteen years ago) link

four weeks pass...

it just took me ~6 hours to figure out there was nothing wrong in my onclick checkbox javascript function... my text label div was covering it so i couldn't click. feel like cheering/crying/puking

i'm #FFFFFF btw (bnw), Wednesday, 24 February 2010 03:29 (fourteen years ago) link

9136 bembo:idl$ hg diff ppxf_bootstrap.pro 
diff -r d74b7b28df85 ppxf_bootstrap.pro
--- a/ppxf_bootstrap.pro Tue Mar 02 16:59:17 2010 +0100
+++ b/ppxf_bootstrap.pro Tue Mar 02 23:17:13 2010 +0100
@@ -174,15 +174,15 @@
goodpixels = goodpixels1, moments = 4, degree = degree, $
vsyst = vsyst, bias = 0.5, bestfit = bestfit, plot = plot, $
ps = ps, specname = frame + '_bin_' + strtrim(j, 2), error = error
- resid = galaxy - bestfit
+ resid = galaxy_bin - bestfit

fucking variable names

caek, Tuesday, 2 March 2010 22:18 (fourteen years ago) link

one month passes...

if lte IE 6 do this
if !IE 6 do this instead

how does "if not IE 6" not apply to IE 8? very retarded imo.

bnw, Friday, 9 April 2010 16:48 (fourteen years ago) link

got jmagick compiling, finally - the makefile was trying to remove base path from current working directory to give relative path but was failing as the directory was a softlink and the two different bits of code were returning different names for the same place. solution was to move everything under /tmp and compile it there, install the target files and just not worry about the src files.

(jmagick is 3 times faster than the current method of doing the same thing (resizing images dynamically). target is 100 a second in a clustered environment of hefty servers. i am currently getting 50 in .53 seconds on my laptop using only one core...)

koogs, Friday, 9 April 2010 23:05 (fourteen years ago) link

three weeks pass...

if lte IE 6 do this
if !IE 6 do this instead

how does "if not IE 6" not apply to IE 8? very retarded imo.

― bnw, Friday, April 9, 2010 12:48 PM

iirc there is no "!IE" conditional statement, so use "if gt IE 6"

am0n, Thursday, 6 May 2010 20:09 (thirteen years ago) link

if ur talking css

am0n, Thursday, 6 May 2010 20:09 (thirteen years ago) link

if IE gt fo

hell and the handbaskets (electricsound), Thursday, 6 May 2010 22:42 (thirteen years ago) link


@Path("/track={purchaseId:{[0-9a-f]{32}}")

vs

@Path("/track={purchaseId:[0-9a-f]{32}}")

one works, the other fails silently. bloody annotations. bloody frameworks.

koogs, Tuesday, 18 May 2010 14:50 (thirteen years ago) link

three weeks pass...

fixed a bug in an xsl transform, using a workaround i found in a list post from 2003, that even then was described as only being necessary for old xsl transformation engines.

sent from my neural lace (ledge), Thursday, 10 June 2010 16:18 (thirteen years ago) link

a daily wtf:

convert string to byte array, pass byte array to save method
in save method, convert byte array back to string, write string to file from 0 to bytearray.length

maybe useful if the save method takes a length in bytes. however it takes a length in characters. these are not necessarily the same. hello indexoutofbounds exception, at least a week of hair-pulling over assuming it was a problem with dodgy non utf-8 characters.

sent from my neural lace (ledge), Wednesday, 16 June 2010 09:51 (thirteen years ago) link

was going to post some Excel VBA mysteries/irritations but really Excel VBA is one big bug in itself

nevertheless, it is the only thing I can do that nobody else in the office has ever wanted to dirty their brain by looking into

(most annoying this week: using Application.Workbooks.OpenText to open a text file, specifying all the parameters, except if the file extension is .csv Excel overrides them without telling you. So I'm going to have to write some documentation that says "look, I know the file is a .csv file, but please call it .txt or anything except .csv or it will load wrongly in a way that you may not notice until it's too late")

atoms breaking heart (a passing spacecadet), Wednesday, 16 June 2010 10:12 (thirteen years ago) link

how long will it take to learn that the problem may be in the data and not the programming... 2 hours of trying to locate an extra space in a string..............urgh

bnw, Tuesday, 22 June 2010 21:19 (thirteen years ago) link

strange things on the interweb:

SELECT ThePerfectWoman
FROM AllTheWomenInTheWorld
WHERE HerInterests Like Mine
AND CurrentMate Is Null
AND CurrentlyLives IN ('Yonkers', 'Bondi Beach', 'São Paulo')
GROUP BY CASE WHEN AsManyAsWillHaveMe>AsManyAsMyStaminaWillAllow
THEN AsManyAsWillHaveMe ELSE AsManyAsMyStaminaWillAllow * 2 END
HAVING Max(Libido)>=Mine

bnw, Thursday, 24 June 2010 20:29 (thirteen years ago) link

lol, yonkers

original bgm, Thursday, 24 June 2010 20:58 (thirteen years ago) link


You must be logged in to post. Please either login here, or if you are not registered, you may register here.