Bump this thread when you fix a bug

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

diff -r d080bed0babc mpf1t3xy.pro
--- a/mpf1t3xy.pro Tue Jun 09 23:24:46 2009 +0100
+++ b/mpf1t3xy.pro Tue Jun 09 23:25:34 2009 +0100
@@ -19,7 +19,7 @@
intercept = p[1]
f = slope * x + intercept
if n_elements(e_int) eq 0 then e_int = 0.0
- resid = (y - f)/(e_y^2 + slope^2*e_x^2 + e_int^2)
+ resid = (y - f)/sqrt((e_y^2 + slope^2*e_x^2 + e_int^2))
return, resid
end

CHECK THAT IN

caek, Tuesday, 9 June 2009 22:26 (fourteen years ago) link

This had been giving me jokes for two months. Had been testing mpf1t3xy2 function all that time. Finally noticed that I was calling the function wrongly at 2am last night.

bembo:tully$ hg diff -r 608 tfall.pro 
diff -r 2bfbd2cb20a2 tfall.pro
--- a/tfall.pro Wed Jun 10 00:41:50 2009 +0100
+++ b/tfall.pro Thu Jun 11 15:12:22 2009 +0100
@@ -7,15 +7,6 @@
sp = ['NGC_3390', 'PGC_44931', 'ESO_443G42', 'NGC_5746', 'IC_4767', $
'NGC_6722', 'ESO_185G53', 'IC_4937', 'IC_5096', 'ESO_240G11', $
'NGC_1886', 'NGC_4703', 'NGC_7123', 'IC_5176']
-
- ; Old galaxy order (FIX: this gives different answers for log mass fits,
- ; and possibly others. This may be a bug in mpf1t3xy)
- ;s0 = ['NGC_0128', 'NGC_1381', 'NGC_1596', 'NGC_2310', 'ESO_311G12', $
- ; 'NGC_3203', 'NGC_4469', 'NGC_4710', 'NGC_6771', 'ESO_597G36', $
- ; 'NGC_1032', 'NGC_3957', 'NGC_5084', 'ESO_151G04']
- ;sp = ['ESO_185G53', 'ESO_240G11', 'ESO_443G42', 'IC_4767', 'IC_4937', $
- ; 'IC_5096', 'IC_5176', 'NGC_1886', 'NGC_3390', 'NGC_4703', $
- ; 'NGC_5746', 'NGC_6722', 'NGC_7123', 'PGC_44931']

; Fix distance and apparent magnitude errors
fixderror = 0.0
@@ -113,32 +104,32 @@

print, "log v_obs -- log mass (stellar)"
logv_logmass = mpf1t3xy2(logvsp, logmasssp, logvs0, logmasss0, $
- e_logvsp, e_logmasssp, e_logvs0, e_logmasssp, /quiet, x0 = x0, $
+ e_logvsp, e_logmasssp, e_logvs0, e_logmasss0, /quiet, x0 = x0, $
guess = vmassguess, reduce = reduce, /latex)

print, "log v_drift -- log mass (stellar)"
logvdrift_logmass = mpf1t3xy2(logvdriftsp, logmasssp, logvdrifts0, $
- logmasss0, e_logvdriftsp, e_logmasssp, e_logvdrifts0, e_logmasssp, $
+ logmasss0, e_logvdriftsp, e_logmasssp, e_logvdrifts0, e_logmasss0, $
/quiet, x0 = x0, guess = vmassguess, reduce = reduce, /latex)

print, "log v_c -- log mass (stellar)"
logvc_logmass = mpf1t3xy2(logvcsp, logmasssp, logvcs0, logmasss0, $
- e_logvcsp, e_logmasssp, e_logvcs0, e_logmasssp, /quiet, x0 = x0, $
+ e_logvcsp, e_logmasssp, e_logvcs0, e_logmasss0, /quiet, x0 = x0, $
guess = vmassguess, reduce = reduce, /latex)

print, "log v_obs -- log mass (dynamical)"
logv_logmassdyn = mpf1t3xy2(logvsp, logmassspdyn, logvs0, logmasss0dyn, $
- e_logvsp, e_logmassspdyn, e_logvs0, e_logmassspdyn, /quiet, x0 = x0, $
+ e_logvsp, e_logmassspdyn, e_logvs0, e_logmasss0dyn, /quiet, x0 = x0, $
guess = vmassguess, reduce = reduce, /latex)

print, "log v_drift -- log mass (dynamical)"
logvdrift_logmassdyn = mpf1t3xy2(logvdriftsp, logmassspdyn, logvdrifts0, $
logmasss0dyn, e_logvdriftsp, e_logmassspdyn, e_logvdrifts0, $
- e_logmassspdyn, /quiet, x0 = x0, guess = vmassguess, reduce = reduce, /latex)
+ e_logmasss0dyn, /quiet, x0 = x0, guess = vmassguess, reduce = reduce, /latex)

print, "log v_c -- log mass (dynamical)"
logvc_logmassdyn = mpf1t3xy2(logvcsp, logmassspdyn, logvcs0, logmasss0dyn, $
- e_logvcsp, e_logmassspdyn, e_logvcs0, e_logmassspdyn, /quiet, x0 = x0, $
+ e_logvcsp, e_logmassspdyn, e_logvcs0, e_logmasss0dyn, /quiet, x0 = x0, $
guess = vmassguess, reduce = reduce, /latex)

caek, Thursday, 11 June 2009 14:14 (fourteen years ago) link

one month passes...

I fixed loads of things in ILX

Keith, Tuesday, 14 July 2009 19:23 (fourteen years ago) link

diffs or it's not true

caek, Tuesday, 14 July 2009 20:25 (fourteen years ago) link

lol not being using subversion for a while so no diffs, so it's not true.

Keith, Tuesday, 14 July 2009 23:27 (fourteen years ago) link

im a tester so i find bugs but no fixies

I wish I was the royal trux (sunny successor), Tuesday, 14 July 2009 23:29 (fourteen years ago) link

You mean with my stuff, or your work?

Keith, Tuesday, 14 July 2009 23:31 (fourteen years ago) link

wait is there ANY kind of version control with ilx????

bentley cadence (gbx), Tuesday, 14 July 2009 23:31 (fourteen years ago) link

work - only do it for $$$$

I wish I was the royal trux (sunny successor), Tuesday, 14 July 2009 23:32 (fourteen years ago) link

Well, I did version control it with svn for a while, but given that almost all of it is written just by me, there's precious little point. Having backups is important though.

Keith, Tuesday, 14 July 2009 23:33 (fourteen years ago) link

(x-post) yes, can't expect fixes quickly at work.

Keith, Tuesday, 14 July 2009 23:34 (fourteen years ago) link

ilx version control

http://memory.loc.gov/ammem/collections/whitman/images/notebook2.jpg

caek, Tuesday, 14 July 2009 23:34 (fourteen years ago) link

In that, the only reason I would want version control is to maybe roll back an ill-advised change I had made to it... Which is something that basically never happens, but that I could do by using various backup mechanisms.

Keith, Tuesday, 14 July 2009 23:35 (fourteen years ago) link

I don't fix bugs. I create workarounds.

On a related note, C++Builder 2009 needs to fucking die.

Mr. Snrub, Friday, 24 July 2009 03:15 (fourteen years ago) link

im a tester so i find bugs but no fixies

lol me 2

more posts that will never be released (electricsound), Friday, 24 July 2009 03:19 (fourteen years ago) link

two months pass...

Ohh man array.sort gives different results depending on whether the contents of the array have themselves been sorted!

YOU WERE A WORTHY ADVERSARY, BUG*

(still not sure what caused them to be in different order in the first place but whatev)

Gravel Puzzleworth, Friday, 23 October 2009 17:12 (fourteen years ago) link

im off work until jan 18 - NO BUGS FOR ME <3<3<3<3

Hillary had Everest in his veins (sunny successor), Sunday, 25 October 2009 03:21 (fourteen years ago) link

i'm drowning in bugs due to developer incompetence ;_;

undergrad lovers (electricsound), Sunday, 25 October 2009 03:36 (fourteen years ago) link

bugs are gone! some of my logic was actually correct the first time!

Elder Nguyen Seth (los blue jeans), Thursday, 29 October 2009 03:30 (fourteen years ago) link

Holy shit there is some funky HTML in old-old-ILX comments. More than 188 posts with <HTML> in them, which threw up all sorts of parser bugs for me.

stet, Monday, 2 November 2009 06:59 (fourteen years ago) link

'~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
'
' ???? !!!!
' ( *_*) 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.