Groups | Search | Server Info | Keyboard shortcuts | Login | Register
Groups > comp.lang.java.programmer > #5074
| From | Arved Sandstrom <asandstrom3minus1@eastlink.ca> |
|---|---|
| Newsgroups | comp.lang.java.programmer |
| Subject | Re: “Stardate” Version Numbering |
| References | <isl3rm$o72$1@lust.ihug.co.nz> <4dee15eb$0$49174$e4fe514c@news.xs4all.nl> <AsGdnejWes9Zg3PQnZ2dnUVZ8nGdnZ2d@brightview.co.uk> |
| Message-ID | <OxwHp.778$Z71.94@newsfe21.iad> (permalink) |
| Organization | Public Usenet Newsgroup Access |
| Date | 2011-06-07 18:15 -0300 |
On 11-06-07 09:51 AM, bugbear wrote: > Silvio wrote: >> On 06/07/2011 01:59 PM, Lawrence D'Oliveiro wrote: >>> The following one-liner sets the versionName attribute in >>> AndroidManifest.xml to a number based on the number of days (accurate to >>> 0.1 day) since the *nix epoch. This is what I’ve been using for a >>> version number in one or two projects, in lieu of anything that makes >>> more sense. :) >>> >>> sed -i -r 's/(android:versionName=\")[^\"]*(\")/\1'"$(bc<<<"scale = 1; >>> ($(Julian -f) - $(Julian -d 1970 1 1)) / 1")"'\2/' AndroidManifest.xml >>> >>> This needs my “Julian” script, available here >>> <https://github.com/ldo/Julian>. Though it can probably be rewritten >>> to do without it, using the GNU “date” command instead... >> >> What about date +%s%N > > I am reminded of this: > > http://www.infiltec.com/j-h-wrld.htm > > BugBear I caught myself doing something like this last week. I had what seemed like a rather thorny problem with very dynamic objects for backing up C#.NET WPF property grids, and temporarily ended up down the Reflection.Emit and IDynamicMetaObjectProvider trails (*). A body can definitely end up not seeing the forest for the trees when doing this kind of thing, and at one point I ended up with value = Activator.CreateInstance(typeof(dataType), ""); to get an empty string, when I in fact knew by virtue of having arrived at that particular switch case that I needed an empty string...otherwise I wouldn't have been calling the constructor form that accepted a string parameter. IOW, the switch case for the above was for strings only, and I knew that 'dataType' had to be a string value. It struck me all of a sudden, and I ended up with value = ""; Rule of Thumb: if things have gotten bloody complicated and they don't feel like they ought to have been that way, you're probably right. AHS * I eventually realized that simple dynamic objects did handle the problem.
Back to comp.lang.java.programmer | Previous | Next — Previous in thread | Next in thread | Find similar
“Stardate” Version Numbering Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-07 11:59 +0000
Re: “Stardate” Version Numbering Silvio <silvio@moc.com> - 2011-06-07 14:13 +0200
Re: “Stardate” Version Numbering bugbear <bugbear@trim_papermule.co.uk_trim> - 2011-06-07 13:51 +0100
Re: “Stardate” Version Numbering Arved Sandstrom <asandstrom3minus1@eastlink.ca> - 2011-06-07 18:15 -0300
Re: “Stardate” Version Numbering Lawrence D'Oliveiro <ldo@geek-central.gen.new_zealand> - 2011-06-08 10:46 +1200
Re: “Stardate” Version Numbering Andreas Leitgeb <avl@gamma.logic.tuwien.ac.at> - 2011-06-07 23:25 +0000
Re: “Stardate” Version Numbering Daniele Futtorovic <da.futt.news@laposte-dot-net.invalid> - 2011-06-07 18:52 +0200
csiph-web