| bio | website | naught101.org |
|---|---|---|
| location | Australia | |
| age | ||
| visits | member for | 3 years, 7 months |
| seen | Jun 13 at 10:28 | |
| stats | profile views | 140 |
Contact:
Skype: naught101
XMPP/Googletalk: naught101@jabber.org
|
Jun 12 |
comment |
Hashing strings to Color in C# Is there something in this code that's ensuring a reasonable colour value/lightness? Why are there no really dark or really light colours? |
|
Jun 12 |
comment |
Hash string into RGB color Although if you want to ensure readable colours (e.g. ensure high enough contrast, and saturation), you're going to have to do a bit more work than that. Might be easier to work in HSV or LAB, and convert to RGB. |
|
Jun 11 |
comment |
List files in local git repo? @DanielHolm: The files tracked by git ARE normal files. All of the git magic happens in the .git hidden directory. You can interact with all the files as normal. |
|
Jun 3 |
comment |
Calling R code from java library? This probably belongs on StackOverflow, since it's about coding, not directly about statistics. |
|
May 28 |
awarded | Popular Question |
|
May 27 |
suggested | suggested edit on Manual annotate a ggplot with different labels, in different facets |
|
May 27 |
comment |
add “floating” axis labels in facet_wrap plot @DrewSteen: you can still offer a bounty, and give it directly to Julius. |
|
May 27 |
suggested | suggested edit on R ggplot and facet grid: how to control x-axis breaks |
|
May 8 |
comment |
Mac text/code editor Also worth checking out alternativeto.net/software/vim/?platform=mac , which is probably a better forum for something like this. |
|
May 4 |
answered | Converting cloned git repositories into submodules |
|
Apr 30 |
comment |
git log for a portion of a file This is an interesting question, and I was going to ask it myself, but I realised that there is no sensible way to define "line" in the context. In the context of file browsing/editing, a line is defined by it's line number. But as soon as a file has n lines added to it, then every line after that becomes line x+n, and your log is out of whack. There may be a smart way of following lines back through the history, but it'd be pretty computationally intensive, I would think. |
|
Apr 28 |
comment |
Howto extract a git subdirectory and make a submodule out of it? @aceofspades: why is that a downside? |
|
Apr 25 |
comment |
How to intelligently degrade or smooth GIS data (simplifying polygons)? Nice. Is there a way to do this while maintaining common edges with Other polygons? e.g. simplified countries in europe, with common borders. |
|
Apr 18 |
comment |
How to migrate SVN with history to a new Git repository? Ah yes, the git documentation link provided in kpd's answer has a nice way to get the SVN users. |
|
Apr 18 |
comment |
How to migrate SVN with history to a new Git repository? Is there a way to automatically populate the users.txt with SVN users? |
|
Apr 10 |
suggested | suggested edit on Undo 'git add' before commit |
|
Apr 10 |
comment |
Undo 'git add' before commit This will actually work, but only on the first commit, where the file didn't exist before, or where the git add command added new files, but not changes to existing files. |
|
Apr 10 |
comment |
Is LaTeX worth learning today? @mghie: Those are important, but they have nothing to do with paper-writing-as-programming. They are just a side-effect of storing your document in a plaintext format. |
|
Apr 10 |
comment |
What documents should be stored in version control and how should they be stored? The first two sentences are nonsense. If you keep your line-usage sensible (one sentence per line, separate lines for markup where possible), then most plaintext formats (latex, markdown, RST, HTML) will give you perfectly readable diffs. Git in particular had tools to make it even nicer: word-diffs and the [diff-highlight] script](stackoverflow.com/questions/1721738/…). |
|
Apr 10 |
comment |
What documents should be stored in version control and how should they be stored? SVG can actually work quite well for most visuals, and if you're careful, the diffs can even be reasonably readable. |