User Nick Gerakines - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:35:53Zhttp://stackoverflow.com/feeds/user/9532http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/406252/using-rake-with-a-non-ruby-project2Using rake with a non-ruby projectNick Gerakines2009-01-02T07:53:13Z2009-06-04T20:03:50Z
<p>A workmate floated the idea of using rake as a build system for a non-ruby project. Is it possible to extend rake to compliment other languages where the autoconf toolset would usually be used?</p>
http://stackoverflow.com/questions/407904/implementing-keyword-comparison-scheme-reverse-search/408015#4080150Answer by Nick Gerakines for Implementing keyword comparison scheme (reverse search)Nick Gerakines2009-01-02T21:01:53Z2009-01-02T22:54:43Z<p>I would do 2 things here.</p>
<p>First (and this isn't directly related to the question) I'd break up and partition user keywords by users. Having more tables with fewer data, ideally on different servers for distributed lookups where slices or ranges of users exist on different slices. Aka, all of usera's data exists on slice one, userb on slice two, etc.</p>
<p>Second, I'd have some sort of in-memory hash table to determine existence of keywords. This would likely be federated as well to distribute the lookups. For n keyword-existence servers, hash the keyword and mod it by n then distribute ranges of those keys across all of the memcached servers. This quick way lets you say is keyword x being watched, hash it and determine what server it <strong><em>would</em></strong> live on. Then make the lookup and collect/aggregate keywords being tracked.</p>
<p>At that point you'll at least know which keywords are being tracked and you can take your user slices and perform subsequent lookups to determine which users are tracking which keywords.</p>
<p>In short: <strong>SQL is not an ideal solution here.</strong></p>
http://stackoverflow.com/questions/406279/asp-net-web-architecture-design/406286#4062860Answer by Nick Gerakines for ASP.NET Web Architecture DesignNick Gerakines2009-01-02T08:23:24Z2009-01-02T08:23:24Z<p>There's a really good book you should check out that might shed some light on your problem. It's "ASP.NET 2.0 Website Programming: Problem - Design - Solution", part of the Wrox series.</p>
http://stackoverflow.com/questions/405870/how-many-languages-are-used-in-your-team/406233#4062330Answer by Nick Gerakines for How many languages are used in your team?Nick Gerakines2009-01-02T07:32:51Z2009-01-02T07:32:51Z<p>I'll define team as group which consists of three small to medium sized teams. The front-end team uses Ruby and, indirectly, c. The client team is pure c. The infrastructure team (mine) is primarily Erlang, indirect Perl through the Test::Harness library and c.</p>
http://stackoverflow.com/questions/406179/how-can-i-write-a-program-that-can-detect-by-itself-that-it-has-been-changed/406187#4061878Answer by Nick Gerakines for How can I write a program that can detect by itself that it has been changed?Nick Gerakines2009-01-02T06:38:24Z2009-01-02T06:38:24Z<p>The short answer is to create a hash or key of the program and have the program encrypt and store that key within itself. From time to time the program would make a checksum of itself and compare it against that hash/key. If there is a difference then handle it accordingly.</p>
<p>There are lots and lots of ways to go about this. There are lots of very smart engineers out there that know how to work around it if that is what you are trying to avoid.</p>
http://stackoverflow.com/questions/406052/do-most-web-programmers-not-designers-use-wysiwyg-editors-or-hand-code-their/406127#4061275Answer by Nick Gerakines for Do most web 'programmers' (not designers) use wysiwyg editors or hand code their HTML?Nick Gerakines2009-01-02T05:45:52Z2009-01-02T05:45:52Z<p>Hand code with some sort of preview mechanism. I use TextMate for the most part so preview in [browser of choice] is just a hot-key away.</p>
http://stackoverflow.com/questions/393455/books-for-advanced-programmers/402125#4021251Answer by Nick Gerakines for Books for 'Advanced' ProgrammersNick Gerakines2008-12-31T02:22:49Z2008-12-31T02:22:49Z<p>I strongly suggest "The Algorithm Design Manual" by Steven S. Skiena. It's a great read that covers a wide variety of algorithms and contains many helpful examples.</p>
http://stackoverflow.com/questions/392993/what-are-your-favorite-programming-bookmarks/402116#4021160Answer by Nick Gerakines for What are your favorite programming bookmarks?Nick Gerakines2008-12-31T02:20:19Z2008-12-31T02:20:19Z<p><a href="http://delicious.com/tag/erlang" rel="nofollow">http://delicious.com/tag/erlang</a></p>
<p>For me, Delicious is the best place to see who's been bookmarking stuff that I'm interested in as well as the relative popularity.</p>
http://stackoverflow.com/questions/399398/is-there-good-source-code-related-to-web-development-to-learn-from/402096#4020963Answer by Nick Gerakines for Is there good source code related to web development to learn from?Nick Gerakines2008-12-31T02:09:23Z2008-12-31T02:09:23Z<p>I suggest searching GitHub for recently update perl projects or libraries. GitHub projects are easy to fork and tinker with; A great way to learn more about a language or other development styles. Also, if the project was recently updated then it's likely you'll find an author/developer who can answer your questions. Most people are fairly receptive to questions.</p>
http://stackoverflow.com/questions/379238/c-and-soap-how-to-start-well/402084#4020840Answer by Nick Gerakines for C++ and SOAP -> how to start wellNick Gerakines2008-12-31T02:00:26Z2008-12-31T02:00:26Z<p>Another option is to not use SOAP. Have you considered something like Protocol Buffers or Thrift?</p>
http://stackoverflow.com/questions/383589/what-are-some-good-books-or-resources-for-programming-p2ptv/402080#4020801Answer by Nick Gerakines for What are some good books or resources for programming p2ptv?Nick Gerakines2008-12-31T01:58:34Z2008-12-31T01:58:34Z<p>I'd probably start with a few good books on audio/video protocols. Something like "Audio/Video Protocol Handbook" or something on SIP communications. You might also want to look into materials covering the bit torrent protocol and peer to peer roster synchronization.</p>
http://stackoverflow.com/questions/399753/hosting-solution-for-source-control-and-project-management/399759#3997591Answer by Nick Gerakines for Hosting solution for source control and project managementNick Gerakines2008-12-30T08:10:42Z2008-12-30T08:10:42Z<p>Use GitHub and setup collaborator accounts for them.</p>
http://stackoverflow.com/questions/219804/new-facebook-app-fbml-or-iframe/398559#3985590Answer by Nick Gerakines for New Facebook app - FBML or iFrame?Nick Gerakines2008-12-29T20:22:01Z2008-12-29T20:22:01Z<p>Using FBML gives you much deeper integration with Facebook as a whole.</p>
http://stackoverflow.com/questions/77695/how-do-i-setup-a-local-cpan-mirror3How do I setup a local CPAN mirror?Nick Gerakines2008-09-16T22:02:59Z2008-11-17T10:59:35Z
<p>What do I need to setup and maintain a local CPAN mirror? What scripts and best practices should I be aware of?</p>
http://stackoverflow.com/questions/113440/displaying-code-in-blog-posts7Displaying code in blog postsNick Gerakines2008-09-22T06:21:57Z2008-09-24T08:16:45Z
<p>What libraries and/or packages have you used to create blog posts with code blocks? Having a javascript library that would support line numbers and indentation is ideal.</p>
http://stackoverflow.com/questions/28975/anyone-using-couchdb/122435#12243513Answer by Nick Gerakines for Anyone using CouchDB?Nick Gerakines2008-09-23T17:25:16Z2008-09-23T17:25:16Z<p>I use the CouchDB to power a Facebook application (over 35k monthly active users). For a while it was using MySQL but after porting the entire project over from Perl to Erlang, I decided to go for the gold and migrate all of the data into CouchDB and use that instead.</p>
<p>CouchDB has been a great data store to work with. I think that it is on track to becoming a major player in web-based services.</p>
http://stackoverflow.com/questions/118512/project-retirement-or-archiving2Project retirement or archivingNick Gerakines2008-09-23T00:57:18Z2008-09-23T01:05:19Z
<p>What is the best way to retire a currently active project? I've been working on this one for a while now and I think its time to let go. Without going into too much detail, there are other projects and technologies that are way ahead now and I don't see much value in investing in it any further.</p>
<p>What have you done to retire a project and what is the process like?</p>
http://stackoverflow.com/questions/116581/open-source-why-or-why-not/117209#1172098Answer by Nick Gerakines for Open source: Why or why not?Nick Gerakines2008-09-22T20:02:21Z2008-09-22T20:02:21Z<p>I highly recommend the book "Intellectual Property and Open Source: A practical guide to protecting code" by Van Lindberg. It has answers to a lot of questions like this and does a really good job of explaining how and why open source does or does not work in most situation.</p>
http://stackoverflow.com/questions/116228/mysql-replication-with-lots-of-temporary-table-writes/116515#1165150Answer by Nick Gerakines for mysql replication with lots of temporary table writesNick Gerakines2008-09-22T18:13:32Z2008-09-22T18:13:32Z<p>In MySQL, as of 5.0 I believe, you can do table wildcards to replicate specific tables. There are a number of command-line options that can be set but you can also do this via your MySQL config file.</p>
<pre><code>[mysqld]
replicate-do-db = db1
replicate-do-table = db2.mytbl2
replicate-wild-do-table= database_name.%
replicate-wild-do-table= another_db.%
</code></pre>
<p>The idea being that you tell it to not replicate any tables other than the ones you specify.</p>
http://stackoverflow.com/questions/111859/did-you-ever-switch-from-one-programming-language-to-another/116419#1164190Answer by Nick Gerakines for Did you ever switch from one programming language to another?Nick Gerakines2008-09-22T17:59:09Z2008-09-22T17:59:09Z<p>I started on old-school MUDs in c and then c++. Professionally I used Perl for quite a while then found a position that was mostly c++ with bits of Perl. My first book used PHP/SQL as a proof of concept language, however I've used PHP as a tinkering language more than a production language. Recently I was introduced to Erlang which has been the subject of my second book as well as several conferences and presentations. Professionally I do native iPhone development now.</p>
<p>C <strong>~></strong> C++ <strong>~></strong> Perl <strong>~></strong> C++ <strong>~></strong> PHP (first book) <strong>~></strong> Objective-C <strong>~></strong> Erlang (second book)</p>
http://stackoverflow.com/questions/116352/how-do-you-get-past-small-startup-issues/116359#1163591Answer by Nick Gerakines for how do you get past small startup issues?Nick Gerakines2008-09-22T17:50:19Z2008-09-22T17:50:19Z<p>Develop quickly, fail early and leverage the plethora of open source tools and software.</p>
http://stackoverflow.com/questions/77723/recommended-projects-for-beginning-programmers/77764#777640Answer by Nick Gerakines for Recommended projects for beginning programmers?Nick Gerakines2008-09-16T22:08:10Z2008-09-16T22:08:10Z<p>When learning a new language or even trying to improve my knowledge of an existing one, I tend to create a library of some sort that can be recycled or reused. This can be good exercise and still remain relatively open to interpretation.</p>
<p>Depending on what language you want to explore, you can make a simple interface to one of your favorite websites or even a small library to compute some data or express an algorithm.</p>
http://stackoverflow.com/questions/2742/setting-up-an-erlang-development-environment/65880#658803Answer by Nick Gerakines for Setting up an Erlang development environmentNick Gerakines2008-09-15T19:17:42Z2008-09-15T19:17:42Z<p>I'm using Erlang in a few production systems personally as well at the office. For client side testing, documentation and development I use a MacBook Pro as the OS/platform and TextMate with the Erlang bundle as an editor.</p>
<p>For sever side development and deployment we use RHEL 4.x/5.x in production and for editing I use VIM. Personally, I've got 4 machines (slices on slicehost.com) running debian using Erlang for a few websites and jobs.</p>
<p>I try to go with the smallest 'engineering environment possible', usually the one with the fewest dependancies from apt or yum. </p>
http://stackoverflow.com/questions/28975/anyone-using-couchdb/122435#122435Comment by Nick Gerakines on Anyone using CouchDB?Nick Gerakines2009-07-18T23:25:18Z2009-07-18T23:25:18ZYes, I definitely would.http://stackoverflow.com/questions/407904/implementing-keyword-comparison-scheme-reverse-search/408015#408015Comment by Nick Gerakines on Implementing keyword comparison scheme (reverse search)Nick Gerakines2009-01-02T21:11:21Z2009-01-02T21:11:21ZEven if there is high keyword distribution between users, then you'll still have much smaller data sets to iterate through. User based data partitioning is pretty efficient in most cases and it doesn't require a lot of work.http://stackoverflow.com/questions/399398/is-there-good-source-code-related-to-web-development-to-learn-from/402096#402096Comment by Nick Gerakines on Is there good source code related to web development to learn from?Nick Gerakines2009-01-02T21:08:46Z2009-01-02T21:08:46ZTwoorl is a pretty cool project using Yaws and ErlyWeb.http://stackoverflow.com/questions/2742/setting-up-an-erlang-development-environment/2835#2835Comment by Nick Gerakines on Setting up an Erlang development environmentNick Gerakines2009-01-02T21:07:31Z2009-01-02T21:07:31ZMinor correction: That book isn't an O'Reilly book. O'Reilly and Pragmatic Press are two different, and competing, publishers.http://stackoverflow.com/questions/407904/implementing-keyword-comparison-scheme-reverse-search/407972#407972Comment by Nick Gerakines on Implementing keyword comparison scheme (reverse search)Nick Gerakines2009-01-02T20:54:35Z2009-01-02T20:54:35ZHe's trying to do the opposite. In this case for a incoming huge chunk of test, find which keywords the database already knows about.http://stackoverflow.com/questions/406179/how-can-i-write-a-program-that-can-detect-by-itself-that-it-has-been-changed/406187#406187Comment by Nick Gerakines on How can I write a program that can detect by itself that it has been changed?Nick Gerakines2009-01-02T08:13:36Z2009-01-02T08:13:36ZNot without violating an NDA.http://stackoverflow.com/questions/406179/how-can-i-write-a-program-that-can-detect-by-itself-that-it-has-been-changed/406187#406187Comment by Nick Gerakines on How can I write a program that can detect by itself that it has been changed?Nick Gerakines2009-01-02T08:07:00Z2009-01-02T08:07:00ZWell, if you know the length, size and attributes of the hash, you can account for them when signing the application. This isn't a new concept.http://stackoverflow.com/questions/406179/how-can-i-write-a-program-that-can-detect-by-itself-that-it-has-been-changed/406187#406187Comment by Nick Gerakines on How can I write a program that can detect by itself that it has been changed?Nick Gerakines2009-01-02T07:56:30Z2009-01-02T07:56:30ZI'm under the impression that the questioner is talking about binary changes to the executable or process memory as a means of circumventing an authentication or licensing process.http://stackoverflow.com/questions/406052/do-most-web-programmers-not-designers-use-wysiwyg-editors-or-hand-code-their/406150#406150Comment by Nick Gerakines on Do most web 'programmers' (not designers) use wysiwyg editors or hand code their HTML?Nick Gerakines2009-01-02T07:27:01Z2009-01-02T07:27:01ZThis is pretty common and a great way to not only do things quickly (it's the snippet approach) but also passively learn more about it by seeing how other people do things. Software is, for the most part, evolutionary. http://stackoverflow.com/questions/406179/how-can-i-write-a-program-that-can-detect-by-itself-that-it-has-been-changed/406187#406187Comment by Nick Gerakines on How can I write a program that can detect by itself that it has been changed?Nick Gerakines2009-01-02T07:24:55Z2009-01-02T07:24:55ZThere are ways of obscuring the validation hash/key but then it becomes a balance of functionality vs effort.http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/164658#164658Comment by Nick Gerakines on What real life bad habits has programming given you?Nick Gerakines2008-11-04T07:33:34Z2008-11-04T07:33:34ZI do the same thing.http://stackoverflow.com/questions/118512/project-retirement-or-archiving/118543#118543Comment by Nick Gerakines on Project retirement or archivingNick Gerakines2008-09-23T05:46:08Z2008-09-23T05:46:08ZThat's a really cool idea.http://stackoverflow.com/questions/116684/what-algorithm-should-i-use-to-hash-passwords-into-my-database/116699#116699Comment by Nick Gerakines on What algorithm should I use to hash passwords into my database?Nick Gerakines2008-09-22T19:58:00Z2008-09-22T19:58:00ZThat's a great article.http://stackoverflow.com/questions/113440/displaying-code-in-blog-posts/113448#113448Comment by Nick Gerakines on Displaying code in blog postsNick Gerakines2008-09-22T17:44:46Z2008-09-22T17:44:46ZThis looks great. Thanks!http://stackoverflow.com/questions/113440/displaying-code-in-blog-posts/113452#113452Comment by Nick Gerakines on Displaying code in blog postsNick Gerakines2008-09-22T06:31:42Z2008-09-22T06:31:42ZYeah, Yahoo/Google search both gave good results. I'm asking more along the lines of what do you use and why.