11,048 reputation
12045
bio website hostilefork.com
location Austin, TX
age
visits member for 3 years, 6 months
seen 13 hours ago
stats profile views 986

Not actually hostile, just a bit irate. :)

The term "hostile fork" as many developers know refers to when an open source effort diverges due to different ideas about where the code should be taken. I started my site with intent to try and get to the bottom of why we all can't just get along as a bit of an SEO/keyword hack. (It worked, and if you don't believe me then google "hostile fork".)

Until I figure out how to make everyone bring the best ideas to the table, I'm just blogging about software development. Long term I hope that people searching for "hostile fork x" will find my site and consider engagement instead of forking. Yet somehow it's easier to answer StackOverflow questions than make people get along. Who knew?

Yes I drew the fork avatar. What can I say...I'm an artiste as well as a programmer. :P


May
17
comment How to start the Rebol REPL in a context besides the System context?
I was thinking of it in terms of implementation of a REPL for Reblis. Your idea works at a basic level, but doesn't necessarily inherit the trickery of the standard Rebol console for things like editing multi-line input... or handling Ctrl-C... that sort of thing.
May
16
asked How to start the Rebol REPL in a context besides the System context?
May
16
revised Anyone used the Rebol programming language? What do you think of it?
Update formatting, spelling, English usage
May
16
asked How to capture words bound in outer context when creating new context?
May
10
comment How do I convert set-words in a block to words
A clever but... hackish solution. To string and back? :-/ I feel like there's a sort of essential complexity to the problem as you stated it, and the solution from your question kind of corresponds to that in the DO dialect. It's just an issue of in place vs. out of place, etc. Can you give any more context on what you're doing?
May
10
comment How can a C program tell if it was launched from the Finder?
I actually wandered off working on other things, but the bounty needs to be awarded at some point despite my distractedness. :-) Thanks to everyone, actually, for the good input. At the end of the day I don't know if sensitivity to launch source is worth the added complexity...I look at such workarounds with skepticism and like to K.I.S.S. as they say...but I'll come back to this question when I get back to worrying about the deployment of the Rebol Binaries!
May
10
accepted How can a C program tell if it was launched from the Finder?
Apr
30
comment How can a C program tell if it was launched from the Finder?
I think you mean Finder, but I catch your drift. That's an interesting idea, but that sort of trick that works only most of the time often leads to fragile and/or hack-exploitable systems. There's going to be that one day that someone puts the executable in /usr/bin and then runs from their home directory, and absent-mindedly thinks "oh, I don't need the files in my home directory that aren't directories, >> delete * from current dir" and then /usr/bin goes poof!! :-/
Apr
30
comment How can a C program tell if it was launched from the Finder?
Thanks for the answer. But unfortunately terminal programs launched from the Finder always start up with a notion of the active directory being the user's root home directory, and from the terminal they will start up in the directory you run them from (even if the actual executable is in, say, /usr/bin). I wanted to retain the Terminal-launch behavior but then if launched from the Finder in a specific directory to use NSGetExecutablePath...which I already knew about. I cannot make that distinction in behavior if I don't know if it was launched from the Finder or not. :-/
Apr
30
comment How can a C program tell if it was launched from the Finder?
Thanks...that's an interesting idea with the bundle; although may not be good for this purpose. Still I imagine no particular trickery would be needed then...as bundled programs generally assume they were launched from the Finder? Is there a way for a bundled executable to just ask what directory it was launched in without going through any hoops like the workaround you suggest?
Apr
29
comment Change the UI at run time using C++ only ( No QML )
I'm not sure what blackberry development is like. But when you get this crash do you have any kind of stack trace you can edit your question to provide? ("It crashed" is somewhat generic, and could be anything...) It also helps if you reduce your situation for troubleshooting. If you put just one control that does nothing in the page, does it still crash...?
Apr
29
comment What's MapReduce and how to write C++ MapReduce programs
Well, asking for a definition of something that is defined on Wikipedia isn't as useful as explaining what part of that definition you do not find clear: en.wikipedia.org/wiki/MapReduce Speaking of Wikipedia, notice that here on SO there is a button to "edit" your question, so you can go back and explain what you don't understand in the Wikipedia article...also it is not necessary to sign your name in the questions because that is taken care of already. The less scrolling we have to do the better. :-) In any case, welcome to StackOverflow...
Apr
23
awarded  Tumbleweed
Apr
18
comment What is the closest match to this Clojure map/apply expression, in Rebol?
@draegtun Very cool...I discovered it a while ago and walked away when progress stalled...now that it's open source I'm back. I designed the new logo and am infamous for creating the Code Golf dialect Rebmu. The PARSE dialect is absolutely killer in R3, so come chat and let us and RebolBot blow your mind!
Apr
18
comment Why allocate a variable in rebol?
Hi Max, thanks for being on StackOverflow--it's a good place for institutional knowledge, and questions like these are helpful. However, be sure to make sure if you "answer" a question that it's an answer, not a comment! I've upvoted your other answer to compensate for someone's downvote, but you should delete this one and make it a comment. If you just want to chat, join us in the Rebol and Red room
Apr
17
revised Using a nested rule with parse
put in the print statements
Apr
17
comment Using a nested rule with parse
Sure. @GrahamChiu's is a bit better, though!
Apr
17
answered Using a nested rule with parse
Apr
16
asked How can a C program tell if it was launched from the Finder?
Apr
16
accepted How to know directory where an executable was launched from in OS/X?