User Nick Gerakines - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:35:53Z http://stackoverflow.com/feeds/user/9532 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/406252/using-rake-with-a-non-ruby-project 2 Using rake with a non-ruby project Nick Gerakines 2009-01-02T07:53:13Z 2009-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#408015 0 Answer by Nick Gerakines for Implementing keyword comparison scheme (reverse search) Nick Gerakines 2009-01-02T21:01:53Z 2009-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#406286 0 Answer by Nick Gerakines for ASP.NET Web Architecture Design Nick Gerakines 2009-01-02T08:23:24Z 2009-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#406233 0 Answer by Nick Gerakines for How many languages are used in your team? Nick Gerakines 2009-01-02T07:32:51Z 2009-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#406187 8 Answer by Nick Gerakines for How can I write a program that can detect by itself that it has been changed? Nick Gerakines 2009-01-02T06:38:24Z 2009-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#406127 5 Answer by Nick Gerakines for Do most web 'programmers' (not designers) use wysiwyg editors or hand code their HTML? Nick Gerakines 2009-01-02T05:45:52Z 2009-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#402125 1 Answer by Nick Gerakines for Books for 'Advanced' Programmers Nick Gerakines 2008-12-31T02:22:49Z 2008-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#402116 0 Answer by Nick Gerakines for What are your favorite programming bookmarks? Nick Gerakines 2008-12-31T02:20:19Z 2008-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#402096 3 Answer by Nick Gerakines for Is there good source code related to web development to learn from? Nick Gerakines 2008-12-31T02:09:23Z 2008-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#402084 0 Answer by Nick Gerakines for C++ and SOAP -> how to start well Nick Gerakines 2008-12-31T02:00:26Z 2008-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#402080 1 Answer by Nick Gerakines for What are some good books or resources for programming p2ptv? Nick Gerakines 2008-12-31T01:58:34Z 2008-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#399759 1 Answer by Nick Gerakines for Hosting solution for source control and project management Nick Gerakines 2008-12-30T08:10:42Z 2008-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#398559 0 Answer by Nick Gerakines for New Facebook app - FBML or iFrame? Nick Gerakines 2008-12-29T20:22:01Z 2008-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-mirror 3 How do I setup a local CPAN mirror? Nick Gerakines 2008-09-16T22:02:59Z 2008-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-posts 7 Displaying code in blog posts Nick Gerakines 2008-09-22T06:21:57Z 2008-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#122435 13 Answer by Nick Gerakines for Anyone using CouchDB? Nick Gerakines 2008-09-23T17:25:16Z 2008-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-archiving 2 Project retirement or archiving Nick Gerakines 2008-09-23T00:57:18Z 2008-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#117209 8 Answer by Nick Gerakines for Open source: Why or why not? Nick Gerakines 2008-09-22T20:02:21Z 2008-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#116515 0 Answer by Nick Gerakines for mysql replication with lots of temporary table writes Nick Gerakines 2008-09-22T18:13:32Z 2008-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#116419 0 Answer by Nick Gerakines for Did you ever switch from one programming language to another? Nick Gerakines 2008-09-22T17:59:09Z 2008-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#116359 1 Answer by Nick Gerakines for how do you get past small startup issues? Nick Gerakines 2008-09-22T17:50:19Z 2008-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#77764 0 Answer by Nick Gerakines for Recommended projects for beginning programmers? Nick Gerakines 2008-09-16T22:08:10Z 2008-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#65880 3 Answer by Nick Gerakines for Setting up an Erlang development environment Nick Gerakines 2008-09-15T19:17:42Z 2008-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#122435 Comment by Nick Gerakines on Anyone using CouchDB? Nick Gerakines 2009-07-18T23:25:18Z 2009-07-18T23:25:18Z Yes, I definitely would. http://stackoverflow.com/questions/407904/implementing-keyword-comparison-scheme-reverse-search/408015#408015 Comment by Nick Gerakines on Implementing keyword comparison scheme (reverse search) Nick Gerakines 2009-01-02T21:11:21Z 2009-01-02T21:11:21Z Even 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#402096 Comment by Nick Gerakines on Is there good source code related to web development to learn from? Nick Gerakines 2009-01-02T21:08:46Z 2009-01-02T21:08:46Z Twoorl is a pretty cool project using Yaws and ErlyWeb. http://stackoverflow.com/questions/2742/setting-up-an-erlang-development-environment/2835#2835 Comment by Nick Gerakines on Setting up an Erlang development environment Nick Gerakines 2009-01-02T21:07:31Z 2009-01-02T21:07:31Z Minor 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#407972 Comment by Nick Gerakines on Implementing keyword comparison scheme (reverse search) Nick Gerakines 2009-01-02T20:54:35Z 2009-01-02T20:54:35Z He'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#406187 Comment by Nick Gerakines on How can I write a program that can detect by itself that it has been changed? Nick Gerakines 2009-01-02T08:13:36Z 2009-01-02T08:13:36Z Not 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#406187 Comment by Nick Gerakines on How can I write a program that can detect by itself that it has been changed? Nick Gerakines 2009-01-02T08:07:00Z 2009-01-02T08:07:00Z Well, 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#406187 Comment by Nick Gerakines on How can I write a program that can detect by itself that it has been changed? Nick Gerakines 2009-01-02T07:56:30Z 2009-01-02T07:56:30Z I'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#406150 Comment by Nick Gerakines on Do most web 'programmers' (not designers) use wysiwyg editors or hand code their HTML? Nick Gerakines 2009-01-02T07:27:01Z 2009-01-02T07:27:01Z This 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#406187 Comment by Nick Gerakines on How can I write a program that can detect by itself that it has been changed? Nick Gerakines 2009-01-02T07:24:55Z 2009-01-02T07:24:55Z There 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#164658 Comment by Nick Gerakines on What real life bad habits has programming given you? Nick Gerakines 2008-11-04T07:33:34Z 2008-11-04T07:33:34Z I do the same thing. http://stackoverflow.com/questions/118512/project-retirement-or-archiving/118543#118543 Comment by Nick Gerakines on Project retirement or archiving Nick Gerakines 2008-09-23T05:46:08Z 2008-09-23T05:46:08Z That's a really cool idea. http://stackoverflow.com/questions/116684/what-algorithm-should-i-use-to-hash-passwords-into-my-database/116699#116699 Comment by Nick Gerakines on What algorithm should I use to hash passwords into my database? Nick Gerakines 2008-09-22T19:58:00Z 2008-09-22T19:58:00Z That's a great article. http://stackoverflow.com/questions/113440/displaying-code-in-blog-posts/113448#113448 Comment by Nick Gerakines on Displaying code in blog posts Nick Gerakines 2008-09-22T17:44:46Z 2008-09-22T17:44:46Z This looks great. Thanks! http://stackoverflow.com/questions/113440/displaying-code-in-blog-posts/113452#113452 Comment by Nick Gerakines on Displaying code in blog posts Nick Gerakines 2008-09-22T06:31:42Z 2008-09-22T06:31:42Z Yeah, Yahoo/Google search both gave good results. I'm asking more along the lines of what do you use and why.