-
I have a lot of groups (Smart and Static). It would be nice to be able to nest these in a folder, or a heirarchy of folders (or, keeping with the terminology, groups within groups, although I don't need to have both papers and groups in a group, just other groups.
For example, I have a folder for all papers to read for a given class. For another class, I tag all papers with the class name...
2009-10-10 22:26:27 UTC in BibDesk
-
Gmail IMAP has a bug that causes alpine and re-alpine to warn of shrinkage or zero-size files when a message is saved from a GMail IMAP account to somewhere else. A patch exists for this (http://staff.washington.edu/chappa/alpine/info/ignoresize.html). Could you make this default in re-alpine or optional via configure?
Thanks,
-k.
2009-09-27 13:05:19 UTC in re-alpine
-
When launching Lingon 2.1.1 on OS X 10.5.6 it launches and displays a window, pauses for about 10 seconds (nonresponsive) and then quits.
/var/log/system.log shows:
May 6 16:49:06 dyn-209-2-225-97 ReportCrash[25278]: Formulating crash report for process Lingon[25272]
May 6 16:49:07 dyn-209-2-225-97 ReportCrash[25278]: Saved crashreport to...
2009-05-06 23:49:10 UTC in Lingon
-
My solution: set the shell command to something like this: ~/bin/growlnotify -w -m "%n New Messages" -a "Mail.app".
2007-11-27 21:23:07 UTC in MacBiff
-
It is fixed in CVS. This bug was badly submitted. It wasn't nested structures, it was structures in general and was re-submitted (and fixed) here: https://sourceforge.net/tracker/?func=detail&atid=618683&aid=1690290&group_id=97659.
2007-06-05 01:35:21 UTC in GDL - GNU Data Language
-
It is not just structs... IDL allows this:
f = [42.0]
a = assoc(lun, f)
GDL does not.
2007-03-29 13:34:29 UTC in GDL - GNU Data Language
-
I've changed the title to reflect that this has nothing to do with nested structs, and it turns out it has nothing to do with structs either... it is just reading and writing. You can simplify my earlier example even more:
IDL:
f = 42.0
openw,lun,'test.dat',/get
writeu, lun, f
free_lun, lun
GDL:
f = 0.0
openr, lun, 'test.dat', /get
readu, lun, f
print, f ; garbage
And note that...
2007-03-29 13:32:02 UTC in GDL - GNU Data Language
-
The following code fails
s = {foo, i:42 }
openw, lun, 's.dat', /get_lun
a = assoc( lun, s )
a[0] = s
free_lun, lun
stating,
% ASSOC: Scalar variable not allowed in this context: S
But in IDL a struct can be passed to the ASSOC function.
2007-03-29 00:55:35 UTC in GDL - GNU Data Language
-
OK, here is some simple code to reproduce:
pro make_struct, s2
s2 = {foo, i:42, j:24 }
end
pro writer
make_struct, s
openw, lun, 's.dat', /get_lun
writeu, lun, s
free_lun, lun
end
pro reader
make_struct, s
openr, lun, 's.dat', /get_lun
readu, lun, s
print, s
end
Run writer & reader in IDL or GDL and it works. Run writer in one and reader in the other and it does NOT work. I...
2007-03-28 20:52:18 UTC in GDL - GNU Data Language
-
The attached version compiles fine.
2007-03-28 19:54:01 UTC in GDL - GNU Data Language