<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom"><generator uri="http://www.habariproject.org/" version="0.10-alpha">Habari</generator><id>tag:newlyancient.com,2015-02-05:atom/a6c0e3ff41506815fc284c01ffa64cadf2f8ec03</id><title>Newly Ancient</title><updated>2014-04-09T16:00:34-04:00</updated><link rel="alternate" href="http://newlyancient.com/"/><link rel="self" href="http://newlyancient.com/feed/all"/><link rel="first" href="http://newlyancient.com/feed/all?page=1" type="application/atom+xml" title="First Page"/><link rel="next" href="http://newlyancient.com/feed/all?page=2" type="application/atom+xml" title="Next Page"/><link rel="last" href="http://newlyancient.com/feed/all?page=6" type="application/atom+xml" title="Last Page"/><entry><title>Spiped + &lt;span class="caps"&gt;SSH&lt;/span&gt; = Secure&#xA0;Proxy</title><link rel="alternate" href="http://newlyancient.com/2014/04/09/spiped-ssh-secure-proxy"/><link rel="edit" href="http://newlyancient.com/spiped-ssh-secure-proxy/atom"/><author><name>morgante</name><uri>http://newlyancient.com</uri></author><id>tag:newlyancient.com,2014:spiped-ssh-secure-proxy/1397073634</id><updated>2014-04-09T16:00:34-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2014-04-09T17:31:54-04:00</app:edited><published>2014-04-09T16:00:34-04:00</published><category term="technical"/><category term="security"/><category term="spiped"/><content type="html">&lt;p&gt;Recently, I&amp;#8217;ve been getting more concerned in security. As an American living in a Middle Eastern &lt;em&gt;monarchy&lt;/em&gt;, multiple government agencies are likely monitoring my internet traffic&#x2014;not to mention that I frequently connect to servers from sketchy internet cafes while traveling in the developing world. To mitigate these risks, I proxy all my traffic through a secure server&#x2014;but with the recent &lt;a href="http://www.vox.com/2014/4/8/5593654/heartbleed-explainer-big-new-web-security-flaw-compromise-privacy"&gt;heartbleed bug&lt;/a&gt;, I decided to step my security up a&amp;nbsp;notch.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Now, all traffic is routed through &lt;a href="http://www.tarsnap.com/spiped.html"&gt;spiped&lt;/a&gt;, a simple and secure utility. Using Docker, I&amp;#8217;ve automated most of the setup for this system, so you can easily route your traffic securely as&amp;nbsp;well.&lt;/p&gt;&#xD;
&#xD;
&lt;h3&gt;Server&amp;nbsp;Setup&lt;/h3&gt;&#xD;
&#xD;
&lt;p&gt;Setting up the server for this is quite simple, assuming you have &lt;a href="http://docker.io"&gt;Docker&lt;/a&gt;&amp;nbsp;installed.&lt;/p&gt;&#xD;
&#xD;
&lt;ol&gt;&#xD;
&lt;li&gt;&#xD;
&lt;p&gt;Clone my Dockerfile, which handles setting up a Socks proxy (with &lt;span class="caps"&gt;SSH&lt;/span&gt;) and the spiped&amp;nbsp;server.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;code&gt;git clone https://github.com/morgante/spiped-docker&amp;nbsp;/home/spiped&lt;/code&gt;&lt;/p&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;li&gt;&#xD;
&lt;p&gt;Enter the spiped directory, where the magic&amp;nbsp;happens:&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;code&gt;cd&amp;nbsp;/home/spiped&lt;/code&gt;&lt;/p&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;li&gt;&#xD;
&lt;p&gt;Generate a secure key for the spiped socket to use for communication across the&amp;nbsp;internet.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;code&gt;dd if=/dev/urandom bs=32 count=1&amp;nbsp;of=spiped.key&lt;/code&gt;&lt;/p&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;li&gt;&#xD;
&lt;p&gt;Build the Docker image (it will automatically load the key you just&amp;nbsp;generated)&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;code&gt;docker build -t spiped&amp;nbsp;.&lt;/code&gt;&lt;/p&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;li&gt;&#xD;
&lt;p&gt;Start the spiped server with&amp;nbsp;Docker:&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;code&gt;docker run -d -p 49168:8089 -t&amp;nbsp;spiped&lt;/code&gt;&lt;/p&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;/ol&gt;&lt;p&gt;You now have a fully functional &lt;span class="caps"&gt;SOCKS&lt;/span&gt; proxy listening on port 49168 and secured using a private&amp;nbsp;key.&lt;/p&gt;&#xD;
&#xD;
&lt;h3&gt;Client&amp;nbsp;Setup&lt;/h3&gt;&#xD;
&#xD;
&lt;p&gt;On the client, all you need to do is installed spiped and connect to the server. These instructions are for &lt;span class="caps"&gt;OS&lt;/span&gt; X, but the process should be similar for other operating&amp;nbsp;systems.&lt;/p&gt;&#xD;
&#xD;
&lt;ol&gt;&#xD;
&lt;li&gt;&#xD;
&lt;p&gt;Install spiped (with&amp;nbsp;&lt;a href="http://brew.sh"&gt;Homebrew&lt;/a&gt;).&lt;/p&gt;&#xD;
&lt;p&gt;&lt;code&gt;brew install&amp;nbsp;spiped&lt;/code&gt;&lt;/p&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;li&gt;&#xD;
&lt;p&gt;Copy the private key from your&amp;nbsp;server.&lt;/p&gt;&#xD;
&lt;p&gt;&lt;code&gt;scp username@server.name:/home/spiped/spiped.key&amp;nbsp;~/spiped.key&lt;/code&gt;&lt;/p&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;li&gt;&#xD;
&lt;p&gt;Start the spiped&amp;nbsp;client:&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;&lt;code&gt;spiped -e -s '[0.0.0.0]:8089' -t '[107.170.94.89]:49168' -k&amp;nbsp;~/spiped.key&lt;/code&gt;&lt;/p&gt;&#xD;
&lt;/li&gt;&#xD;
&lt;li&gt;In System Preferences, configure your network to connect to a &lt;span class="caps"&gt;SOCKS&lt;/span&gt; proxy at&amp;nbsp;&lt;strong&gt;localhost:8089&lt;/strong&gt;.&lt;/li&gt;&#xD;
&lt;/ol&gt;&lt;p&gt;Now all your internet activity is securely routed through your server. If you want to automate this slightly more, I have written a very simple &lt;a href="https://github.com/morgante/dotfiles/blob/master/home/.tunnel-start"&gt;start&amp;nbsp;script&lt;/a&gt;.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;In my experience, the spiped tunnel is highly reliable and recovers more gracefully than a standard &lt;span class="caps"&gt;SSH&lt;/span&gt;&amp;nbsp;tunnel.&lt;/p&gt;&#xD;
&#xD;
&lt;p&gt;Leave any questions in the comments and I&amp;#8217;ll do my best to&amp;nbsp;answer.&lt;/p&gt;</content></entry><entry><title>My HackNY&#xA0;Application</title><link rel="alternate" href="http://newlyancient.com/2013/11/19/hackny"/><link rel="edit" href="http://newlyancient.com/hackny/atom"/><author><name>morgante</name><uri>http://newlyancient.com</uri></author><id>tag:newlyancient.com,2013:my-hackny-application/1384842855</id><updated>2013-11-19T01:35:54-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-11-19T01:35:54-05:00</app:edited><published>2013-11-19T01:13:09-05:00</published><category term="application"/><category term="hackny"/><category term="tech"/><category term="startups"/><category term="work"/><content type="html">&lt;p&gt;This past summer, I had the awesome privilege of being a &lt;a href="http://hackny.org/a/fellows/"&gt;hackNY fellow&lt;/a&gt;. Besides providing &lt;em&gt;free&lt;/em&gt; housing to a group of fantastic hackers, the hackNY fellowship program is the perfect introduction to the New York City tech community. HackNY directly led to my current job as a software engineer at &lt;a href="http://businessinsider.com"&gt;Business Insider&lt;/a&gt;, gave me a group of fantastic techie friends, and inspired me to seriously pursue my own startup (&lt;a href="http://socialcitadel.com"&gt;Social Citadel&lt;/a&gt;. If you&amp;#8217;re a student hacker, there is no better way to spend your summer: &lt;a href="http://apply.hackny.org/"&gt;apply&amp;nbsp;today&lt;/a&gt;.&lt;/p&gt;&#xD;
&lt;p&gt;Since I&amp;#8217;ve been getting a lot of questions about what hackNY looks for in applicants, and inspired by &lt;a href="http://theycallmeswift.com/2013/11/18/my-hackny-application/"&gt;Swift&lt;/a&gt;, I&amp;#8217;m sharing my application below. Hope it&amp;nbsp;helps!&lt;/p&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;h3&gt;Tell us about a time you built something awesome in code. How did you choose it? Why did you enjoy&amp;nbsp;it?&lt;/h3&gt;&#xD;
&lt;p&gt;I firmly believe that we write the best code for ourselves&#x2014;when we&#x2019;re the client, it&#x2019;s easy to rapidly iterate based on client feedback. One such project was creating FundShift, an investment management platform. Having been running a small investment fund since 2011, I was sick of inefficiently creating records of transactions, generating tax forms, and communicating with my partners. Therefore, being the nerd I am, I built a custom platform (using Kohana, a &lt;span class="caps"&gt;PHP&lt;/span&gt; framework, with a MySQL backend) which automatically manages all the details of our fund for me, allowing me to focus on managing the fund while it communicates with partners and gives them realtime information on the fund&#x2019;s performance. This was truly enjoyable because I love the thrill of seeing something entirely new come together, of creating something where nothing existed before. I also loved the challenge of fitting all the different pieces together, from querying finance APIs to building a reliable, realtime front-end in Javascript. Plus, the client really liked the&amp;nbsp;work.&lt;/p&gt;&#xD;
&lt;h3&gt;Tell us about what you hope to learn this summer and why is hackNY right for&amp;nbsp;you.&lt;/h3&gt;&#xD;
&lt;p&gt;Though I&#x2019;ve been coding for years, I look forward to learning more about the &#x201C;soft&#x201D; skills which it takes to build great software&#x2014;working with a team and collaborating to create something better than I could make by myself. Of course, I hope such skills will help me in developing my own startup in the future (FundShift), while also making me a better programmer, especially when it comes to scaling software to many users while maintaing speed and usability. HackNY is perfect for me because I love the satisfaction of seeing the joy which software can bring to someone by filling a gap in their lives. In a startup, I&#x2019;ll have the opportunity to work on problems directly affecting users and see my solutions actually deployed&#x2014;a rare opportunity at larger corporations. Having started my own companies in the past, and worked with Vermont startups, I look forward to working hard in a New York startup, learning from older developers, and taking the initiative to start my own&amp;nbsp;projects.&lt;/p&gt;&#xD;
&lt;h3&gt;Is there a particular technology or industry you&amp;#8217;re currently interested in? How come? Where do you see it heading in the&amp;nbsp;future?&lt;/h3&gt;&#xD;
&lt;p&gt;The financial sector is ripe for innovation, as its one of the few areas in our world yet to see true disruption. While technology has certainly changed the way financial firms work, it has yet to change the way they act. Indeed, technology, by enabling esoteric instruments and high-frequency trading, has only widened the gulf between individual investors and large banks. Thus, in the next few years, we&#x2019;ll see populist dissatisfaction with the financial system translated into new business patterns where capital moves fluidly throughout the system and where information is readily available to investors large and small. We&#x2019;re already seeing the starts of this with sites like SecondMarket and AngelList, but the potential for innovation is far greater. Indeed, that&#x2019;s part of what I&#x2019;m trying to accomplish with my startup FundShift by creating a platform where starting a fund is easy as making a Kickstarter project and communicating with investors is as simple as Twitter. Crowdfunding has already begun, but now crowdmanagement&#x2014;where even small investors can easily get reliable information and education from managers&#x2014;is ready to expand. Like most innovation, this won&#x2019;t come from the top, but from the bottom-end of the market, with people who only have a few thousand dollars to invest but still demand respect and information from&amp;nbsp;managers.&lt;/p&gt;&#xD;
&lt;h3&gt;Discuss your technical skills/proficiencies/languages and&amp;nbsp;experience&lt;/h3&gt;&#xD;
&lt;p&gt;I&#x2019;ve been programming for a decade, primarily through my own web development company. My strongest skills are in &lt;span class="caps"&gt;HTML&lt;/span&gt;, &lt;span class="caps"&gt;CSS&lt;/span&gt;, and JavaScript, which I&#x2019;ve been using for many years to put together rich, interactive websites. I&#x2019;m also quite experienced with &lt;span class="caps"&gt;PHP&lt;/span&gt; (including the &lt;span class="caps"&gt;MVC&lt;/span&gt; libraries Kohana and CakePHP) and, in addition to programming for a local startup and building multiple Facebook applications, have contributed dozens of plugins and fixes to WordPress and Habari, all of which are object-oriented and based around MySQL and SQLite. I&#x2019;m also an expert at using APIs, having built on top of everything from GitHub to Simplenote. Most recently, I&#x2019;ve learned Node.js and Ruby to put together a few speedy projects using MongoDB as the&amp;nbsp;backend.&lt;/p&gt;&#xD;
&lt;h3&gt;When you&amp;#8217;re not coding, what do you like to do for&amp;nbsp;fun?&lt;/h3&gt;&#xD;
&lt;p&gt;Though I&#x2019;m also extremely interested in economics &lt;span class="amp"&gt;&amp;amp;&lt;/span&gt; politics, I treasure my time spent backpacking. Besides resting my eyes from all the time immersed in screens and books, backpacking always offers a fresh challenge, even after the hundreds of miles I&#x2019;ve hiked (including the 270-mile Long Trail and a month in Alaska). Backpacking demands that I look up at a mountain&#x2019;s sky-piercing summit and deny that height, seeing only the easy inevitability of the next step. But the reward for taking that step, and the next, and the next, is to eventually emerge into a new world. A world above the clouds, with its own weather and laws. A world where poverty is unknown and everyone is equal in physical triumph. A world which even the most atheistic among us cannot deny the spirituality of. Though I wish I could live in that world forever, &amp;#8220;you cannot always stay on the summit.&#x201D; (Ren&#xE9; Daumal) Therefore, when I come down, I bring the memory of that world&amp;thinsp;&amp;#8212;&amp;thinsp;its peace, its freedom, its love&amp;thinsp;&amp;#8212;&amp;thinsp;with me and use it to inform how I live my life. Next to the beauty of that world, and the challenge of reaching it, even the best software and hardest challenges are mere&amp;nbsp;anthills.&lt;/p&gt;&#xD;
&lt;h3&gt;We&amp;#8217;re looking for applicants who are restless builders. Please provide links and a brief description of at least two code samples in the language of your&amp;nbsp;choice.&lt;/h3&gt;&#xD;
&lt;p&gt;Much of my work is visible at &lt;a href="http://lab.morgante.net"&gt;http://lab.morgante.net&lt;/a&gt;, but here&amp;#8217;s a selection of my open source contributions. (Sadly, my more substantive projects aren&amp;#8217;t publicly&amp;nbsp;accessible.)&lt;/p&gt;&#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;&lt;a href="https://github.com/habari-extras/habaribox"&gt;HabariBox&lt;/a&gt; is a plugin I wrote which integrates Habari (&lt;span class="caps"&gt;PHP&lt;/span&gt;) with DropBox, allowing users to easily share images from it and even update their blog by just adding a file to their&amp;nbsp;DropBox&lt;/li&gt; &#xD;
&lt;li&gt;In Node.js, I built this simple status site for student government projects which pulls information from GitHub. (&lt;a href="https://github.com/nyuadsg/status"&gt;https://github.com/nyuadsg/status&lt;/a&gt;)&lt;/li&gt; &#xD;
&lt;li&gt;Mpango is the (&lt;span class="caps"&gt;PHP&lt;/span&gt;) plugin which powers my lab site by pulling information from GitHub and generating documentation. (&lt;a href="http://lab.morgante.net/mpango"&gt;http://lab.morgante.net/mpango&lt;/a&gt;)&lt;/li&gt; &#xD;
&lt;li&gt;In Node.js, I wrote a centralized authentication system for students&#x2019; use at &lt;span class="caps"&gt;NYUAD&lt;/span&gt;. It authenticates against &lt;span class="caps"&gt;NYU&lt;/span&gt;&#x2019;s servers (using a roundabout method) and serves an OAuth server for all student projects here (&lt;a href="https://github.com/nyuadsg/passport"&gt;https://github.com/nyuadsg/passport&lt;/a&gt;)&lt;/li&gt;&#xD;
&lt;li&gt;PolyMatch is a Facebook application which analyzes responses to a few basic questions and identifies respondent&amp;#8217;s partisanship through an algorithm and database of 50,000 voters. (&lt;a href="https://github.com/morgante/polymatch"&gt;https://github.com/morgante/polymatch&lt;/a&gt;)&lt;/li&gt;&#xD;
&lt;li&gt;LinkBlog is a (&lt;span class="caps"&gt;PHP&lt;/span&gt;) implementation of linkblogging for Habari, which includes Atom syndication and traffic tracking. (&lt;a href="http://lab.morgante.net/linkblog"&gt;http://lab.morgante.net/linkblog&lt;/a&gt;)&lt;/li&gt; &#xD;
&lt;li&gt;SimplyNoted is a (&lt;span class="caps"&gt;PHP&lt;/span&gt;) plugin which uses Simplenote&amp;#8217;s &lt;span class="caps"&gt;API&lt;/span&gt; to integrate author&amp;#8217;s notes into the Habari publishing process. (&lt;a href="http://lab.morgante.net/simplynoted"&gt;http://lab.morgante.net/simplynoted&lt;/a&gt;)&lt;/li&gt; &#xD;
&lt;li&gt;Shield is a theme with &lt;span class="caps"&gt;JS&lt;/span&gt;/&lt;span class="caps"&gt;CSS&lt;/span&gt;/&lt;span class="caps"&gt;PHP&lt;/span&gt; which I wrote for my personal blog and the Habari platform (&lt;a href="https://github.com/morgante/shield"&gt;https://github.com/morgante/shield&lt;/a&gt;)&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;hr&gt;&#xD;
&lt;p&gt;I still feel pretty happy about these answers, though &lt;a href="http://fundshift.co"&gt;FundShift&lt;/a&gt; is defunct due to regulatory issues. Node.js and &lt;span class="caps"&gt;PHP&lt;/span&gt; are still my primary programming environment (for pleasure and work,&amp;nbsp;respectively).&lt;/p&gt;</content></entry><entry><title>This Is&#xA0;Water</title><link rel="alternate" href="http://newlyancient.com/2013/05/12/this-is-water"/><link rel="edit" href="http://newlyancient.com/this-is-water/atom"/><author><name>morgante</name><uri>http://newlyancient.com</uri></author><id>tag:newlyancient.com,2013:this-is-water/1368356840</id><updated>2013-05-12T07:09:04-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2013-05-12T07:09:04-04:00</app:edited><published>2013-05-12T06:56:40-04:00</published><category term="life"/><category term="dfw"/><category term="speech"/><category term="advice"/><content type="html">&lt;p&gt;Listening to &lt;a href="http://vimeo.com/65576562"&gt;this speech&lt;/a&gt; by David Forster Wallace taught (maybe, reminded) me why I&amp;#8217;m here and pulled me out of a slump.&lt;footnote&gt;I&amp;#8217;ve been having a very difficult time lately, as my first year of university is nearly over yet I don&amp;#8217;t seem to have learned a thing.&lt;/footnote&gt; While the &lt;a href="http://vimeo.com/65576562"&gt;video&lt;/a&gt; is great, I recommend reading &lt;a href="http://web.archive.org/web/20080213082423/http://www.marginalia.org/dfw_kenyon_commencement.html"&gt;the full speech&lt;/a&gt; (paired with &lt;a href="http://www.youtube.com/watch?v=4B6E0mijV5A"&gt;this song&lt;/a&gt;) to get the full&amp;nbsp;impact.&lt;/p&gt;&#xD;
&lt;blockquote&gt;It is about the real value of a real education, which has almost nothing to do with knowledge, and everything to do with simple awareness; awareness of what is so real and essential, so hidden in plain sight all around us, all the time, that we have to keep reminding ourselves over and over: &amp;#8220;This is water.&amp;#8221;&lt;/blockquote&gt;&lt;p&gt;&lt;a href="http://newlyancient.com/2013/05/12/this-is-water?refer=atom"&gt;Permalink&lt;/a&gt;&lt;/p&gt;</content></entry><entry><title>Twitter&#xA0;Consolidating</title><link rel="alternate" href="http://newlyancient.com/2012/08/21/twitter-consolidating"/><link rel="edit" href="http://newlyancient.com/twitter-consolidating/atom"/><author><name>morgante</name><uri>http://newlyancient.com</uri></author><id>tag:newlyancient.com,2012:twitter-consolidating/1345594198</id><updated>2012-08-21T20:12:34-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-08-21T20:12:34-04:00</app:edited><published>2012-08-21T20:05:11-04:00</published><category term="technology"/><category term="business"/><category term="twitter"/><category term="social-media"/><content type="html">&lt;p&gt;Regarding Twitter, Chuck Soda &lt;a href="http://chuckskoda.com/entry/twitter-clients-farewell/"&gt;makes&lt;/a&gt; a (more succinctly) similar point to &lt;a href="http://newlyancient.com/2012/08/20/twitter-me"&gt;mine&lt;/a&gt; about Twitter consolidating rather than&amp;nbsp;innovating:&lt;/p&gt;&#xD;
&lt;blockquote&gt;They should have a vision for what the future of communicating and sharing looks like, and be building it. But from the looks of it, they aren&#x2019;t. They&#x2019;re just trying to protect what they&#x2019;ve already built. That&#x2019;s always a losing position&#x2026; Always.&lt;/blockquote&gt;&#xD;
&lt;p class="via note"&gt;&lt;span&gt;(Via &lt;a href="http://shawnblanc.net/2012/08/skoda-twitter/"&gt;Shawn Blanc&lt;/a&gt;.)&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;a href="http://newlyancient.com/2012/08/21/twitter-consolidating?refer=atom"&gt;Permalink&lt;/a&gt;&lt;/p&gt;</content></entry><entry><title>Twitter &lt;span class="amp"&gt;&amp;&lt;/span&gt;&#xA0;Me</title><link rel="alternate" href="http://newlyancient.com/2012/08/20/twitter-me"/><link rel="edit" href="http://newlyancient.com/twitter-me/atom"/><author><name>morgante</name><uri>http://newlyancient.com</uri></author><id>tag:newlyancient.com,2012:twitter-me/1345435580</id><updated>2012-08-20T19:25:13-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-08-20T19:25:13-04:00</app:edited><published>2012-08-20T00:05:24-04:00</published><category term="api"/><category term="web"/><category term="habari"/><category term="twitter"/><category term="appnet"/><content type="html">&lt;p&gt;Since (in both the chronological and causal sense) Twitter &lt;a href="https://dev.twitter.com/blog/changes-coming-to-twitter-api"&gt;announced&lt;/a&gt; changes to its &lt;span class="caps"&gt;API&lt;/span&gt; last Wednesday, the Internet intelligentsia has been &lt;a href="http://daringfireball.net/linked/2012/08/16/twitter-drop-dead"&gt;raising&lt;/a&gt; a &lt;a href="http://thenextweb.com/twitter/2012/08/17/twitter-4/"&gt;ruckus&lt;/a&gt;. Justifiably so. Though the outlines of these changes have been on the &lt;a href="http://techcrunch.com/2011/03/11/twitter-ecosystem-guidelines/"&gt;horizon&lt;/a&gt; for a while, this new move clearly shows where Twitter is heading as a company and service. And I&amp;#8217;m not quite sure that&amp;#8217;s a direction I want to be&amp;nbsp;following.&lt;/p&gt;&#xD;
&#xD;
&lt;h3&gt;The&amp;nbsp;Company&lt;/h3&gt;&#xD;
&lt;p&gt;With this move, Twitter is making it clear that it means &lt;del&gt;business&lt;/del&gt;enterprise. Just the fact that the announcement is written in &lt;a href="http://dashes.com/anil/2012/08/what-twitters-api-announcement-could-have-said.html"&gt;MBAease&lt;/a&gt; clarifies that Twitter now thinks of itself more as a corporation than a startup. Indeed, its &lt;a href="http://unsuck-it.com/matrix/"&gt;infamous&lt;/a&gt; quadrant with &lt;em&gt;social &lt;span class="caps"&gt;CRM&lt;/span&gt;&lt;/em&gt; and &lt;a href="http://klout.com"&gt;social influence ranking&lt;/a&gt; makes it clear that the company is focused more on monetizing and consolidating than on continuing to innovate. Of course, we know how well that went for &lt;a href="http://brooksreview.net/2012/08/twitter-bullshit/"&gt;other&amp;nbsp;companies&lt;/a&gt;.&lt;/p&gt;&#xD;
&#xD;
&lt;h3&gt;The&amp;nbsp;Service&lt;/h3&gt;&#xD;
&lt;p&gt;There&amp;#8217;s nothing inherently wrong with attempting increased monetization except when it ends up being counter-productive. For Twitter, increased attempts at consolidation will quite possibly kill&amp;nbsp;it.&lt;/p&gt;&#xD;
&lt;p&gt;The first problem for Twitter is that its service depends upon the very environment it&amp;#8217;s seeking to quash. Many of its best features, from &lt;a href="http://log.maniacalrage.net/post/26935842947/the-real-history-of-the-reply-on-twitter"&gt;@replies&lt;/a&gt; to &lt;a href="http://gigaom.com/2010/04/30/the-short-and-illustrious-history-of-twitter-hashtags/"&gt;#hashtags&lt;/a&gt;, originally came from users. And it was the simple accessibility of the &lt;span class="caps"&gt;API&lt;/span&gt; which quickly made Twitter nearly ubiquitous&#x2014;&lt;a href="http://blog.ifttt.com/post/25506427600/thenewifttt"&gt;even your house can Tweet now&lt;/a&gt;. Without this robust ecosystem, Twitter is essentially just a text field&#x2014;something that any freshman &lt;span class="caps"&gt;CS&lt;/span&gt; student could pull together in an afternoon.&lt;footnote&gt;Yes, I realize there&amp;#8217;s more complexity to it than that, mainly related to diseconomies of scale. Continue reading.&lt;/footnote&gt; Microsoft, for example, can afford to have MBAs run the company, because the switching costs are high. For Twitter, they&amp;#8217;re negligible. Anyone can build a text&amp;nbsp;box.&lt;/p&gt;&#xD;
&lt;p&gt;Twitter&amp;#8217;s second major problem is one of direction: it&amp;#8217;s astronomically easier to go from closed to open than from open to closed. Apple can get away with &lt;a href="https://twitter.com/anildash/status/236266262861324289"&gt;tight restrictions&lt;/a&gt; because before the App Store existed nobody felt entitled to install applications on their phone. Even in going from open to closed, Twitter could potentially succeed if that change provided a meaningful benefit to users. Facebook was more restricted than Myspace, but those restrictions came with the benefit of not having my eyeballs seared out from using it. Twitter is going in the opposite direction: it&amp;#8217;s restricting us to its main website which is, for your average alpha user, shittier than it was a few years&amp;nbsp;ago.&lt;/p&gt;&#xD;
&lt;p&gt;Though these problems won&amp;#8217;t prompt an immediate exodus from Twitter (indeed, only &lt;a href="http://thenextweb.com/twitter/2012/07/23/only-an-estimated-23-of-tweets-are-posted-using-third-party-twitter-clients/"&gt;23% of posts&lt;/a&gt; come from external apps), Twitter should still be worried. It was that 23% which first left Myspace, Yahoo, and &lt;span class="caps"&gt;AOL&lt;/span&gt;. Particularly for a service as simple as Twitter&amp;#8217;s, they really matter&#x2014;what your tech-savvy friend is using has a greater impact than where Bieber is. Especially if we start to see a chilling effect where new developers don&amp;#8217;t include Twitter functionality in their apps due to the possibility of it being cut out of the&amp;nbsp;ecosystem.&lt;/p&gt;&#xD;
&lt;h3&gt;Ownership&lt;/h3&gt;&#xD;
&lt;p&gt;My biggest objection to the changes is mostly philosophical. With the new &lt;a href="https://dev.twitter.com/terms/display-guidelines"&gt;display requirements&lt;/a&gt;, Twitter is asserting ownership over my content there. I agree with &lt;a href="http://www.marco.org/2012/08/16/twitter-api-changes"&gt;Marco&amp;#8217;s reading&lt;/a&gt;: rule 5b would seem to preclude me from quoting my own tweets on my own blog without their wrapper. This seems more like something an archaic &lt;a href="http://myfla.ws/blog/2008/06/16/burying-the-ap-a-grave-of-its-making/"&gt;wire service&lt;/a&gt; might try than the policy of a tech startup. Indeed, it make Twitter&amp;#8217;s viewpoint quite clear: our content and attention is their property to be sold to corporations for advertising and &amp;#8220;social &lt;span class="caps"&gt;CRM&lt;/span&gt;&amp;#8221; (whatever that&amp;nbsp;is).&lt;/p&gt;&#xD;
&lt;h3&gt;App.net&lt;/h3&gt;&#xD;
&lt;p&gt;Twitter&amp;#8217;s announcement came at the perfect time for &lt;a href="https://join.app.net/"&gt;app.net&lt;/a&gt;, which easily met its funding goal thanks to the general outcry in the web crowd. But I really don&amp;#8217;t think the way it&amp;#8217;s being portrayed matches either its potential or position. Despite what internet bloggers and campaign commercials say, there&amp;#8217;s nothing inherently virtuous about running an old-fashioned business where customers &lt;em&gt;pay you&lt;/em&gt;. Thus, app.net isn&amp;#8217;t even truly quixotic: it&amp;#8217;ll likely fail, but it was never&amp;nbsp;virtuous.&lt;/p&gt;&#xD;
&lt;p&gt;Probably the biggest reason it will fail is that for the vast majority of people, the $50 annual cost for the service far exceeds the utility it provides. Thus, the service will end up being the playground of the people &lt;a href="http://tessrinearson.com/blog/?p=516"&gt;with $50&lt;/a&gt; to spare for an empty text box. While Twitter might end up being &lt;a href="https://alpha.app.net/benbrooks/post/77250"&gt;filled&lt;/a&gt; with only &lt;q&gt;people following Bieber&lt;/q&gt; I likely follow a couple of Bieber-fans and wouldn&amp;#8217;t enjoy a platform without some of the &lt;em&gt;regular&lt;/em&gt;&amp;nbsp;people.&lt;/p&gt;&#xD;
&lt;p&gt;My other major problem with app.net is that it isn&amp;#8217;t even doing what it purports to do. Instead of only charging users, it&amp;#8217;s charging &lt;a href="http://blog.intercom.io/surviving-thriving-in-two-sided-markets/"&gt;both sides of the market&lt;/a&gt;. Thus, members are being sold the &lt;q&gt;privilege&lt;/q&gt; of being sold to app developers for up to $1000. That might not seem like much for a legitimate business, but it&amp;#8217;s the sort of cost which is prohibitively expensive for quick projects and will seriously limit the ecosystem around app.net&#x2014;you won&amp;#8217;t see the ubiquitous support which Twitter currently&amp;nbsp;enjoys.&lt;/p&gt;&#xD;
&lt;h3&gt;My&amp;nbsp;Plans&lt;/h3&gt;&#xD;
&lt;p&gt;I don&amp;#8217;t know where things are headed, but I&amp;#8217;m guessing the future is neither Twitter or app.net. Until the future comes around, I&amp;#8217;m putting my time where my mouth is and spent the weekend building a Twitter &lt;a href="http://lab.morgante.net/microblog"&gt;clone&lt;/a&gt; for &lt;a href="http://habariproject.org"&gt;Habari&lt;/a&gt;. The system I&amp;#8217;ve designed has a couple of&amp;nbsp;benefits:&lt;/p&gt;&#xD;
&lt;ul&gt;&#xD;
&lt;li&gt;I control the content, through Habari, so Twitter certainly can&amp;#8217;t complain about me quoting their&amp;nbsp;material.&lt;/li&gt;&#xD;
&lt;li&gt;For now, microposts are posted over to Twitter. Once the future comes, it&amp;#8217;ll be easy enough to post them there as&amp;nbsp;well.&lt;/li&gt;&#xD;
&lt;li&gt;For ease of mobile use, I can take advantage of the Twitter ecosystem by posting to a secret account which will be subsequently mirrored over here and on my main Twitter&amp;nbsp;account.&lt;/li&gt;&#xD;
&lt;/ul&gt;&#xD;
&lt;p class="note conclusion"&gt;&lt;span&gt;This is likely a violation of Twitter&amp;#8217;s new requirements, so go ahead and &lt;a href="http://newlyancient.com/atom/micro"&gt;subscribe&lt;/a&gt; to my microposts over &lt;a href="http://newlyancient.com/micro"&gt;here&lt;/a&gt;. &lt;strong&gt;And get started on inventing the future&lt;/strong&gt;&#x2014;or just &lt;a href="https://github.com/habari-extras/microblog"&gt;fork mine&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;</content></entry><entry><title>An Invitation to&#xA0;Imitation</title><link rel="alternate" href="http://newlyancient.com/2012/07/25/shield-2"/><link rel="edit" href="http://newlyancient.com/shield-2/atom"/><author><name>morgante</name><uri>http://newlyancient.com</uri></author><id>tag:newlyancient.com,2012:shield-20/1343205389</id><updated>2012-07-25T04:44:14-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-07-25T04:44:14-04:00</app:edited><published>2012-07-25T04:44:14-04:00</published><category term="meta"/><category term="blogging"/><category term="design"/><category term="habari"/><category term="theme"/><category term="shield"/><content type="html">&lt;p&gt;Although over the past two years of my studies I&amp;#8217;ve been drawn toward more &lt;em&gt;human&lt;/em&gt; fields (primarily economics), I continue to love coding. Indeed, the times I spend coding are some of the best moments I have, partially because time disappears. While I&amp;#8217;ve enjoyed dabbling in other areas, coding up &lt;em&gt;something&lt;/em&gt; is still my favorite way to spend a&amp;nbsp;night.&lt;/p&gt;&#xD;
&lt;p&gt;All this merely serves as an explanation of why I spent several hours converting the theme for this site into one anybody can use. It&amp;#8217;s a fairly-customizable theme for &lt;a href="http://habariproject.org"&gt;Habari&lt;/a&gt; which I designed to take advantage of the innovations on that platform, particularly modules and&amp;nbsp;areas.&lt;/p&gt;&#xD;
&lt;p&gt;So, if you&amp;#8217;re interested in imitating the design of this site, just head on over to the &lt;a href="http://lab.morgante.net/shield"&gt;project page&lt;/a&gt; and download &lt;strong&gt;Shield&lt;/strong&gt;. Though I doubt many people will end up using this (if only because of Habari&amp;#8217;s minuscule reach), it&amp;#8217;s been fun to develop and will also give me an incentive to start designing a new theme for this site (after all, I can&amp;#8217;t have &lt;em&gt;too&lt;/em&gt; many&amp;nbsp;imitators).&lt;/p&gt;&#xD;
&lt;p&gt;Also, I must say I&amp;#8217;m quite proud of my &lt;a href="http://lab.morgante.net/"&gt;project lab&lt;/a&gt;. As it serves as the home for numerous projects (primarily Habari bookmarks and plugins), constantly updating it would take too much work. Thus, I have developed a system on top of Habari which pulls in all the data, including releases and help information, from &lt;a href="http://github.com/morgante"&gt;GitHub&lt;/a&gt;. If you want something similar, check out the &lt;a href="http://lab.morgante.net/mpango"&gt;plugin&lt;/a&gt; and &lt;a href="http://lab.morgante.net/scientist"&gt;theme&lt;/a&gt; which power&amp;nbsp;it.&lt;/p&gt;&#xD;
&lt;p class="note"&gt;&lt;span&gt;So, check out my &lt;a href="http://lab.morgante.net/shield"&gt;theme&lt;/a&gt;. I promise more substantive posts will be coming soon (I have a ton queued up in &lt;a href="http://lab.morgante.net/simplynoted"&gt;Simplenote&lt;/a&gt;).&lt;/span&gt;&lt;/p&gt;</content></entry><entry><title>EuroTrip</title><link rel="alternate" href="http://newlyancient.com/2012/06/06/eurotrip"/><link rel="edit" href="http://newlyancient.com/eurotrip/atom"/><author><name>morgante</name><uri>http://newlyancient.com</uri></author><id>tag:newlyancient.com,2012:eurotrip/1338970123</id><updated>2012-06-06T04:08:43-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-06-06T04:08:43-04:00</app:edited><published>2012-06-06T04:08:43-04:00</published><content type="html">&lt;p&gt;I&amp;#8217;m currently on a 6-week trip across Europe and will be posting updates on my&amp;nbsp;&lt;a href="http://whatever.morgante.net/"&gt;Tumblr&lt;/a&gt;. &lt;/p&gt;&lt;p&gt;&lt;a href="http://newlyancient.com/2012/06/06/eurotrip?refer=atom"&gt;Permalink&lt;/a&gt;&lt;/p&gt;</content></entry><entry><title>The Future in&#xA0;History</title><link rel="alternate" href="http://newlyancient.com/2012/05/30/historical-futures"/><link rel="edit" href="http://newlyancient.com/historical-futures/atom"/><author><name>morgante</name><uri>http://newlyancient.com</uri></author><id>tag:newlyancient.com,2012:historical-futures/1338416631</id><updated>2012-05-30T18:44:18-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-05-30T18:44:18-04:00</app:edited><published>2012-05-30T18:12:06-04:00</published><category term="history"/><category term="science-fiction"/><category term="cold-war"/><category term="climate-change"/><category term="literature"/><content type="html">&lt;div class="image small flow left"&gt;&#xD;
&lt;a href="http://io9.com/5911520/a-chart-that-reveals-how-science-fiction-futures-changed-over-timew"&gt;&lt;img alt="Historical SF" src="http://dl.dropbox.com/u/190441/images/historysf.jpeg" width="140"&gt;&lt;/a&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;p&gt;I love reading historical science fiction, as it can reveal the direction of aspirations and fears during a particular period. Of course, it&amp;#8217;s also interesting to note when those stories of the future were set. This &lt;a href="http://io9.com/5911520/a-chart-that-reveals-how-science-fiction-futures-changed-over-timew"&gt;analysis&lt;/a&gt; reveals, for example, that in the 1980s the majority of science fiction concerned a near-future setting in the early 21st century. The change in obsession with the near-future is particularly intriguing to note, as it increases with the rise of Cold War tensions in the second half of the 20th century. This seems to make sense, as that time period contained a real possibility of a world being dramatically altered in the near future, possibly by nuclear war. In contrast, since the end of the Cold War, science fiction has turned more towards the far future, perhaps reflecting the long-term nature of current human concerns such as climate&amp;nbsp;change.&lt;/p&gt;&lt;p&gt;&lt;a href="http://newlyancient.com/2012/05/30/historical-futures?refer=atom"&gt;Permalink&lt;/a&gt;&lt;/p&gt;</content></entry><entry><title>Playing Life as a Straight White&#xA0;Male</title><link rel="alternate" href="http://newlyancient.com/2012/05/17/playing-life-as-a-straight-white-male"/><link rel="edit" href="http://newlyancient.com/playing-life-as-a-straight-white-male/atom"/><author><name>morgante</name><uri>http://newlyancient.com</uri></author><id>tag:newlyancient.com,2012:playing-life-as-a-straight-white-male/1337234573</id><updated>2012-05-17T05:15:35-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2012-05-18T07:27:31-04:00</app:edited><published>2012-05-17T05:15:35-04:00</published><category term="life"/><category term="difficulty"/><category term="video-games"/><category term="privilege"/><category term="kottke"/><category term="gender"/><category term="race"/><content type="html">&lt;p&gt;John Scalzi &lt;a href="http://whatever.scalzi.com/2012/05/15/straight-white-male-the-lowest-difficulty-setting-there-is/"&gt;offers&lt;/a&gt; an excellent explanation of privilege through the conceit of a video&amp;nbsp;game:&lt;/p&gt;&#xD;
&lt;blockquote&gt;&#xD;
Okay: In the role playing game known as The Real World, &amp;#8220;Straight White Male&amp;#8221; is the lowest difficulty setting there is.&lt;br /&gt;You can lose playing on the lowest difficulty setting. The lowest difficulty setting is still the easiest setting to win on. The player who plays on the &amp;#8220;Gay Minority Female&amp;#8221; setting?&amp;nbsp;Hardcore.&lt;/p&gt;&#xD;
&lt;/blockquote&gt;&#xD;
&lt;p&gt;Although I didn&amp;#8217;t choose it, I&amp;#8217;m lucky enough to be playing life on the easiest difficulty setting. Still, I&amp;#8217;m trying to use the many starting points handed to me to explore &lt;a href="http://newlyancient.com/2012/04/25/nyuad"&gt;new&lt;/a&gt; parts of the map where I&amp;#8217;m not necessarily playing on the lowest difficulty setting. Hopefully, this can help me to make other difficulty settings a little less hard, with the side effect of making a pretty easy game a little more&amp;nbsp;fun.&lt;/p&gt;&#xD;
&lt;p class="note via"&gt;&lt;span&gt;This excellent &lt;a href="http://whatever.scalzi.com/2012/05/15/straight-white-male-the-lowest-difficulty-setting-there-is/"&gt;explanation&lt;/a&gt; was recommended by &lt;a href="http://kottke.org/12/05/straight-white-male-the-game-of-lifes-lowest-difficulty-setting"&gt;Jason&amp;nbsp;Kottke&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;&lt;a href="http://newlyancient.com/2012/05/17/playing-life-as-a-straight-white-male?refer=atom"&gt;Permalink&lt;/a&gt;&lt;/p&gt;</content></entry><entry><title>Delicate&#xA0;Decisions</title><link rel="alternate" href="http://newlyancient.com/2012/04/25/nyuad"/><link rel="edit" href="http://newlyancient.com/nyuad/atom"/><author><name>morgante</name><uri>http://newlyancient.com</uri></author><id>tag:newlyancient.com,2012:nyuad/1335345143</id><updated>2012-04-26T16:29:46-04:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2014-05-04T14:24:37-04:00</app:edited><published>2012-04-25T05:09:20-04:00</published><category term="college"/><category term="nyu"/><category term="nyuad"/><category term="abu-dhabi"/><category term="decision"/><category term="dartmouth"/><content type="html">&lt;p class="note"&gt;&lt;span&gt;I disavow this post and highly discourage people from studying at New York University Abu Dhabi. While it was founded with noble ambitions, changes of leadership have led to a significant pivot wherein students are extremely constrained in their opportunities for global&amp;nbsp;education.&lt;/span&gt;&lt;/p&gt;&#xD;
&lt;div class="image small flow left"&gt;&#xD;
&lt;a href="http://nyuad.nyu.edu"&gt;&lt;img alt="NYUAD" src="http://newlyancient.com/user/files/nyuad/crest.gif" width="140"&gt;&lt;/a&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;p&gt;This fall, I will fly halfway across the globe to attend college as a member of the third graduating class of &lt;a href="http://nyuad.nyu.edu/"&gt;&lt;span class="caps"&gt;NYU&lt;/span&gt; Abu Dhabi&lt;/a&gt;. This is a choice which neither my friends nor family could have predicted, and not just because the college was only opened two years ago. Yet, here I am: choosing the road less travelled which not even I could have envisioned myself on a year ago. I&amp;#8217;ll be turning down offers from some of the most well-know and well-established universities in the world, and not for financial reasons. Rather, I am choosing to seize the reigns of my own education and embark on an adventure across the&amp;nbsp;globe.&lt;/p&gt;&#xD;
&lt;h3&gt;Culture and its&amp;nbsp;Consequences&lt;/h3&gt;&#xD;
&lt;p&gt;This decision was, in fact, significantly influenced by my visit to &lt;a href="http://dartmouth.edu"&gt;Dartmouth&lt;/a&gt;, my other top choice. It probably represents the apotheosis of an American college education: on a beautiful New England campus,&lt;footnote&gt;Dartmouth&amp;#8217;s campus was described by President Eisenhower as &lt;q&gt;what a college should look like&lt;/q&gt; and I quite agree.&lt;/footnote&gt; highly intelligent students talk and learn from world-class faculty. Assured of a job post-graduation by the extensive alumni network, Dartmouth students are free to enjoy their life in a Hanover bubble. &lt;span class="caps"&gt;NYUAD&lt;/span&gt; lacks most of these features&#x2014;it has no alumni to speak of and the academic program is still taking shape&#x2014;but it also lacks two things which made the difference for&amp;nbsp;me:&lt;/p&gt;&#xD;
&lt;ol&gt;&#xD;
	&lt;li&gt;Demographic gravity&amp;nbsp;and&lt;/li&gt;&#xD;
	&lt;li&gt;Institutional&amp;nbsp;inertia&lt;/li&gt;&#xD;
&lt;/ol&gt;&#xD;
&lt;h3&gt;Gravity &lt;span class="amp"&gt;&amp;amp;&lt;/span&gt;&amp;nbsp;Grounding&lt;/h3&gt;&#xD;
&lt;p&gt;To elaborate on my first physical fear,&lt;footnote&gt;According to my statemate at &lt;span class="caps"&gt;UWC&lt;/span&gt;-&lt;span class="caps"&gt;USA&lt;/span&gt;, I am overly fond of speaking in terms of physics and technology, despite the fact that science is my weakest subject.&lt;/footnote&gt; at Dartmouth you feel an overwhelming center of gravity. White, upper middle class Americans dominate the social atmosphere of the school, and even those who don&amp;#8217;t come from that background feel a certain pressure to adopt its cultural norms.&lt;footnote&gt;Indeed, there are more &lt;a href="http://now.dartmouth.edu/2012/03/dartmouth-offers-2180-students-acceptance-to-the-class-of-2016/"&gt;students&lt;/a&gt; from New England alone than from all other countries combined.&lt;/footnote&gt; As a member of that demographic group, it would be all too easy to blend into the crowd, join a fraternity, maintain my current worldview, and graduate&#x2014;possibly with a drinking problem. However, having attended international school for the past two years, I don&amp;#8217;t want things to be that easy. I would miss the thrill of constantly reassessing my place in the world through the lenses of friends from dozens of&amp;nbsp;countries.&lt;/p&gt;&#xD;
&lt;p&gt;Thankfully, as &lt;span class="caps"&gt;NYU&lt;/span&gt; president John Sexton is fond of pointing out, &lt;span class="caps"&gt;NYUAD&lt;/span&gt; lacks a &lt;q&gt;center of gravity.&lt;/q&gt; With no central demographic to revolve around, as the school&amp;#8217;s 450 students hail from dozens of countries, students are constantly thrown into different cultural combinations and forced to adjust their norms accordingly. This ability to rapidly recalibrate in diverse cultures is expanded by opportunities for extensive study abroad&#x2014;by graduation, I could have studied in upwards of five different countries. In an increasingly globalized world, I believe the opportunities for intensive internationalism which &lt;span class="caps"&gt;NYUAD&lt;/span&gt; affords will become increasingly valuable, even if I might begin to lose my cultural&amp;nbsp;center.&lt;/p&gt;&#xD;
&lt;div class="image full"&gt;&#xD;
&lt;a href="http://newlyancient.com/user/files/nyuad/map.png"&gt;&lt;img alt="Map of NYUAD Students" src="http://newlyancient.com/user/files/nyuad/map.png" width="620px" /&gt;&lt;/a&gt;&#xD;
&lt;p class="caption below"&gt;&lt;strong&gt;Above&lt;/strong&gt;: &lt;span class="caps"&gt;NYUAD&lt;/span&gt; students &lt;a href="http://nyuad.nyu.edu/news.events/student.profiles/"&gt;hail&lt;/a&gt; from all corners of the&amp;nbsp;globe.&lt;/p&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;h3&gt;Inertia &lt;span class="amp"&gt;&amp;amp;&lt;/span&gt;&amp;nbsp;Innovation&lt;/h3&gt;&#xD;
&lt;p&gt;Although internationalism is certainly valuable to me, the sense of innovation at &lt;span class="caps"&gt;NYUAD&lt;/span&gt; is even more alluring. The centuries of history which our country&amp;#8217;s greatest institutions point to as their strength is also their greatest weakness. With that history comes a tremendous amount of institutional inertia which makes substantive change and innovation highly challenging&#x2014;just look at the difficulties Dartmouth faces in dealing with hazing. Yet, the modern era increasingly requires entrepreneurship and innovation in all sectors. As &lt;a href="http://thedartmouth.com/2012/04/20/news/lecture"&gt;Carl Schramm&lt;/a&gt; emphasized in a lecture I attended at Dartmouth, &lt;q&gt;academic institutions do not teach entrepreneurship properly or take it seriously,&lt;/q&gt; instead emphasizing rigidity and channeling them into careers in established fields (especially Wall&amp;nbsp;Street).&lt;/p&gt;&#xD;
&lt;p&gt;Of the universities which do focus on innovation, perhaps the most famous is Stanford. With its close connections to Silicon Valley, the university has a rich history of entrepreneurs emerging from its faculty and students. Thus, the curriculum and culture places a far greater emphasis on innovation than many of the great East Coast universities. While this is certainly admirable, in the process the university has perhaps lost its way as an educational institution, as a recent New Yorker &lt;a href="http://www.newyorker.com/reporting/2012/04/30/120430fa_fact_auletta?currentPage=all"&gt;article&lt;/a&gt; highlights. &lt;q&gt;Close ties between the industry and the university&lt;/q&gt; have become almost too close, with pragmatic innovation becoming the driving force of the university, rather than higher learning. In short, it seems that Stanford is simply allowing innovation &lt;em&gt;in&lt;/em&gt;&amp;nbsp;education.&lt;/p&gt;&#xD;
&lt;p&gt;In contrast, &lt;span class="caps"&gt;NYUAD&lt;/span&gt; is truly emphasizing innovation &lt;em&gt;on&lt;/em&gt; education. The curriculum remains firmly rooted in a liberal arts &lt;a href="http://nyuad.nyu.edu/academics/catalog/core.html"&gt;core&lt;/a&gt;, including such non-utilitarian courses as &lt;em&gt;&lt;a href="http://nyuad.nyu.edu/academics/catalog/course.html?id=220"&gt;Becoming Human&lt;/a&gt;&lt;/em&gt;. In concert with this liberal arts curriculum, significant educational innovations are encouraged, including pushing the power of technology while simultaneously recognizing the importance of place through study trips within the Middle East. Thus, &lt;span class="caps"&gt;NYUAD&lt;/span&gt; encourages innovation on the traditional liberal arts education in an interconnected&amp;nbsp;world.&lt;/p&gt;&#xD;
&lt;h3&gt;Students &lt;span class="amp"&gt;&amp;amp;&lt;/span&gt;&amp;nbsp;Support&lt;/h3&gt;&#xD;
&lt;p&gt;Of course, the students are responsible for much of this innovation. Starting a school from scratch, we are pioneering in developing its culture, clubs, and credentials. While this is truly exciting, it is only made possible through the support provided by such an intimate school. &lt;span class="caps"&gt;NYUAD&lt;/span&gt; students are truly given the resources to succeed. Some of this comes from the substantial funding and small classes (the student&#x2013;faculty ratio is 3&#x2013;1), but it is also driven by the mentality of everyone associated with the school. The school&amp;#8217;s success is entirely contingent upon the success of its students, and with only 450 students every single one can receive the individualized attention necessary to succeed. In the process of making a decision, I have been treated with genuine care by everyone associated with the university, as have my &lt;a href="http://polymaththinktank.wordpress.com/2012/04/25/discussions-with-desert-falcons-a-deeper-look-at-nyuad/"&gt;future classmates&lt;/a&gt;. &lt;span class="caps"&gt;NYUAD&lt;/span&gt; has gone out of its way to ensure that I can make a well-informed choice, even offering to help coordinate with other college visits. As an example of their dedication to students, when my flight back from an accepted student event was cancelled, an admissions officer worked with me on his Sunday night (well past midnight) to ensure I was taken care of. In short, I truly feel that my individual needs and desires will be fully respected at &lt;span class="caps"&gt;NYUAD&lt;/span&gt;. Or, as John Sexton would likely put it, I&amp;#8217;ll be loved.&lt;footnote&gt;I don&amp;#8217;t even know the names of the university presidents at other schools, while at &lt;span class="caps"&gt;NYU&lt;/span&gt; the president personally hugged each accepted student.&lt;/footnote&gt;&lt;/p&gt;&#xD;
&lt;div class="image bigger col1"&gt;&#xD;
&lt;a href="http://newlyancient.com/user/files/nyuad/AD-moonlight.jpeg"&gt;&lt;img alt="Skyline of Abu Dhabi" src="http://newlyancient.com/user/files/nyuad/AD-moonlight.jpeg" width="460" /&gt;&lt;/a&gt;&#xD;
&lt;p class="caption left"&gt;&lt;strong&gt;Right&lt;/strong&gt;: The skyline of my future&amp;nbsp;&lt;a href="http://nyuad.nyu.edu/admissions/studentguide/location.html"&gt;home&lt;/a&gt;&lt;/p&gt;&#xD;
&lt;/div&gt;&#xD;
&lt;p&gt;So, I am ready to embark on an adventure to the Middle East. But I choose &lt;span class="caps"&gt;NYUAD&lt;/span&gt; not for its generous financial aid, its small classes, or its location, but for the opportunity it presents: the chance to reimagine&amp;nbsp;education.&lt;/p&gt;&#xD;
&lt;p class="note prompt question"&gt;&lt;span&gt;But before I embark on a new adventure, I must wrap up my current one, which I will be hopefully &lt;a href="http://newlyancient.com/2012/04/10/return"&gt;reflecting&lt;/a&gt; on a little more now that classes have concluded. So, if you want to know about living with 200 students from 70+ nationalities in New Mexico, just &lt;a href="http://newlyancient.com/2012/04/25/nyuad#respond"&gt;ask&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;</content></entry></feed>
