The White House just open sourced their first Github repo
1–10 of 127 posts
Re: The White House just open sourced their first Github repo
#2Re: The White House just open sourced their first Github repo
#3Re: The White House just open sourced their first Github repo
#4"The project utilizes code licensed under the terms of the GNU General Public License and therefore is licensed under GPL v2 or later."
While I applaud this effort and wish to see more like it in the future, is there a possible issue with licensing here?
[1] http://www.gnu.org/licenses/old-licenses/gpl-2.0-faq.html#GP...
Re: The White House just open sourced their first Github repo
#5Re: The White House just open sourced their first Github repo
#6I've never seen the name "Obama" and "licensed under GPL v2 or later" in the same document before -- cool.
Re: The White House just open sourced their first Github repo
#7Moving from MongoDB to MySQL. I never understood why people felt they need MongoDB/NoSQL for their projects. Does anyone have an example where it was really necessary/advantageous?
Personally I have used it to speed up development. It allows very fast iterations early on and integrates much more nicely with most languages then a SQL based solution. Also its a lot faster the MySQL.
Re: The White House just open sourced their first Github repo
#8Moving from MongoDB to MySQL. I never understood why people felt they need MongoDB/NoSQL for their projects. Does anyone have an example where it was really necessary/advantageous?
I created a webapp where a user can author a form (with several different kinds of fields), then it syncs with a mobile app that downloads the forms and allows for data collecting.CouchDB supports synchronizing with a server very easily and already has mobile support to. If/when the user changes the number of fields in the webapp, starting to collect that data makes it very trivial... no need to schema 'alter' statements in the server and synced back to the sqlite db in the phone. It all runs couch and it "just works".
Mind you, I am very skeptical about NoSQL in general, but for this particular example, for the first time in my life, I saw a clear advantage.
Re: The White House just open sourced their first Github repo
#9Moving from MongoDB to MySQL. I never understood why people felt they need MongoDB/NoSQL for their projects. Does anyone have an example where it was really necessary/advantageous?
I can see the benefits of using something like NoSQL for temporary datastores (in memory only), but MySQL can function just fine as a key->value store as well to the best of my understanding.