<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SAI Digital &#187; twitter</title>
	<atom:link href="http://saidigital.co/tag/twitter/feed/" rel="self" type="application/rss+xml" />
	<link>http://saidigital.co</link>
	<description>Digital Marketing, Social Media, Web Development, QR Code Solutions, Digital Advertising in Northwest Georgia</description>
	<lastBuildDate>Sat, 04 Feb 2012 03:38:34 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to Customize Twitter Bootstrap for Website Development</title>
		<link>http://saidigital.co/2012/01/customize-twitter-bootstrap/</link>
		<comments>http://saidigital.co/2012/01/customize-twitter-bootstrap/#comments</comments>
		<pubDate>Sat, 28 Jan 2012 04:18:09 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Labs]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[LESS]]></category>
		<category><![CDATA[npm]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[web development]]></category>

		<guid isPermaLink="false">http://saidigital.co/?p=4216</guid>
		<description><![CDATA[      
            
      Twitter&#8217;s Bootstrap CSS toolkit has been extremely popular recently, and for good reason. It allows you to build very good]]></description>
			<content:encoded><![CDATA[      
            
      <p>Twitter&#8217;s <a href="https://github.com/seabre/bootstrap/tree/bootstrap-js">Bootstrap CSS toolkit</a> has been extremely popular recently, and for good reason. It allows you to build very good looking web apps quickly. We&#8217;ve been incorporating it into several of our projects. I&#8217;ve been using it in several personal projects as well. Aesthetics and page layouts are generally the last thing I want to think about and it&#8217;s perfect if I have an idea I want to push out in a short amount of time.</p>
<p>Bootstrap is great, but there will be times where I don&#8217;t want to use <em>everything</em>. Recently, I needed to implement a modal dialog box. It didn&#8217;t need to be complicated and needed to look nice. Bootstrap has one, and it fit all of my criteria. Alas, I can&#8217;t just shove a gigantic CSS sheet that overrides (probably) everything I have already implemented on an existing app.</p>
<p>Fortunately, Twitter Bootstrap is written with <a href="http://esscss.org">LESS</a>. LESS is a superset of CSS that adds all kinds of gorgeous dainties (Variables! Mixins! Nested Rules!) to CSS that makes life in Webdevland more awesome. Bootstrap is modular, so it can be easily modified to remove components that aren&#8217;t needed.</p>
<p>My modified Bootstrap includes only the CSS styling for the <a href="http://twitter.github.com/bootstrap/javascript.html">UI/Javascript components</a>. You can find it <a href="https://github.com/seabre/bootstrap/tree/bootstrap-js">here</a>. If you&#8217;d like to use it, clone the repository and include the bootstrap-js.min.css stylesheet and the Javascript components you want in your HTML and you&#8217;re good to go.</p>
<p>You can customize Bootstrap yourself. It&#8217;s simple. You will need to install npm and LESS first.</p>
<h2>Installing npm and LESS</h2>
<p><a href="http://npmjs.org/">npm</a> is a package manager for <a href="http://nodejs.org/">node</a>. Other than installing it, that&#8217;s about all you need to know about npm for this exercise. It won&#8217;t set nuclear missiles on a trajectory targeted to your house. <em>I promise</em>. If you have the latest version of Ubuntu, you can open up a terminal and install npm with apt-get:</p>
<p><code>sudo apt-get install npm</code></p>
<p>If you&#8217;re not on a recent iteration of Ubuntu and you&#8217;re on a modern UNIX-like platform, the following line will work given you have curl installed:</p>
<p><code>curl http://npmjs.org/install.sh | sh</code></p>
<p>Follow the instructions. If everything installed successfully, you should have a copy of npm installed on your machine.</p>
<p>Now we need to install LESS. npm makes this easy for us. Pop open an ice-cold and refreshing terminal and run this:</p>
<p><code>npm install less</code></p>
<p>If everything went as expected, if you haven&#8217;t been paying attention this <strong>always</strong> means <em>successfully</em>, then we&#8217;re almost setup to start hacking on Twitter Bootstrap.</p>
<h2>Making Modifications to Twitter Bootstrap</h2>
<p>We need a copy of Twitter&#8217;s Bootstrap repository, which is hosted on Github. I&#8217;m assuming you have Git installed. If you don&#8217;t, go <a href="http://git-scm.com/download">install it right now</a>. You can either fork it on Github or clone it to make your modifications only local to your machine. For this tutorial, let&#8217;s just clone their repository:</p>
<p><code>git clone git://github.com/twitter/bootstrap.git</code></p>
<p>Now, you should have a directory named bootstrap containing its project files. The files we interested in are located in the lib directory of the bootstrap project. This directory contains all of the LESS files needed to generate the bootstrap CSS. Open up bootstrap.less and you should see a bunch of imports. It looks like this:</p>
<pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"><code>/*!
 * Bootstrap @VERSION
 *
 * Copyright 2011 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 * Date: @DATE
 */

// CSS Reset
@import &quot;reset.less&quot;;

// Core variables and mixins
@import &quot;variables.less&quot;; // Modify this for custom colors, font-sizes, etc
@import &quot;mixins.less&quot;;

// Grid system and page structure
@import &quot;scaffolding.less&quot;;

// Styled patterns and elements
@import &quot;type.less&quot;;
@import &quot;forms.less&quot;;
@import &quot;tables.less&quot;;
@import &quot;patterns.less&quot;;
</code></pre>
<p>Since I just want the UI components, namely the modal box, I only really want the patterns.less file. Since the patterns.less file references variables and mixins in variables.less and mixins.less, you must keep the references to these files. Remove all references except variables.less, mixins.less, patterns.less My modified bootstrap.less file looks like this:</p>
<pre style="font-family: Andale Mono, Lucida Console, Monaco, fixed, monospace; color: #000000; background-color: #eee;font-size: 12px;border: 1px dashed #999999;line-height: 14px;padding: 5px; overflow: auto; width: 100%"><code>/*!
 * Bootstrap-js @VERSION
 *
 * Copyright 2011 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 * Modified by @seabre to remove everything except what is needed for the extra UI components.
 * Date: @DATE
 */

// Core variables and mixins
@import &quot;variables.less&quot;; // Modify this for custom colors, font-sizes, etc
@import &quot;mixins.less&quot;;

@import &quot;patterns.less&quot;;
</code></pre>
<p>Save the file. Now we need to build it. You can build this two different ways. You can either build it directly with LESS, or you can use make. I&#8217;ll show both.</p>
<h3>Building with LESS</h3>
<p>Run the following in a terminal within the lib directory of the bootstrap project:</p>
<p><code>lessc bootstrap.less &gt; my-customized-bootstrap.min.css --compress</code></p>
<p>You can also leave out the <code>--compress</code> flag if you don&#8217;t want minified CSS:</p>
<p><code>lessc bootstrap.less &gt; my-customized-bootstrap.css</code></p>
<p>If you want to keep the original bootstrap.less file and create another one for your modified bootstrap, you will have to use this method unless you customize the Makefile. You can use the Makefile I edited as a reference <a href="https://github.com/seabre/bootstrap/tree/bootstrap-js">in my project</a> if you wish.</p>
<h3>Building with Make</h3>
<p>Go to the parent directory of the bootstrap project and run:</p>
<p><code>make</code></p>
<p>It will generate bootstrap.css (not minified) and bootstrap-min.css (minified). You may find this method easier.</p>
<p>This should get you going on modifying Twitter Bootstrap. You should include a note in the less source about your changes and that it was you who made them. This is a requirement of the Apache license.</p>
]]></content:encoded>
			<wfw:commentRss>http://saidigital.co/2012/01/customize-twitter-bootstrap/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top Ten Things You Should Know About Twitter Right Now</title>
		<link>http://saidigital.co/2010/09/ten-tweets-about-twitter-from-founder/</link>
		<comments>http://saidigital.co/2010/09/ten-tweets-about-twitter-from-founder/#comments</comments>
		<pubDate>Wed, 15 Sep 2010 00:39:41 +0000</pubDate>
		<dc:creator>Tricia</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://saidigital.co/?p=2299</guid>
		<description><![CDATA[Today the Founder of Twitter, Evan Williams, counted down ten facts about Twitter before unveiling the newest version of the company that gave us tweets, fail whales, blue birds, and followers. Read more to learn about new features, structure, and uses. ]]></description>
			<content:encoded><![CDATA[      
            
      <blockquote><p>I&#8217;m about to send 10 tweets about Twitter.</p></blockquote>
<p>Evan Williams warned an hour ago as the world waited to hear the next big announcement from the company. Like a countdown, he moved from big picture to statistic to the kind of definitions that would make Emily Dickinson proud.  She was great at saying a lot with very few words and would have thrived in a 140-character environment.  <a href="http://saidigital.co/wp-content/uploads/2010/09/TweetsByEv.jpg"><img class="alignright size-medium wp-image-2300" title="TweetsByEv" src="http://saidigital.co/wp-content/uploads/2010/09/TweetsByEv-300x285.jpg" alt="" width="330" height="314" /></a></p>
<p>10. Twitter is getting better—and bigger.</p>
<p>9. Twitter mobile users are up 250% this year.</p>
<p>8. Twitter is a real-time information network.</p>
<p>7. Twitter levels the playing field between creators and consumers of content.</p>
<p>6. You don’t need to tweet to get value from Twitter any more than you need to make a web page to use the web.</p>
<p>5. A lot of people are tweeting, though. <a href="http://www.flic.kr/p/8B132d" target="_blank">flic.kr/p/8B132d</a></p>
<p>4. Twitter is the best way to discover what’s new in your world.</p>
<p>3. Infrastructure and performance are our biggest investment. They provide the foundation for new things.</p>
<p>2. Twitter.com has always been the most popular Twitter client. 78%  of active users have used it in the last 30 days. <a href="http://www.flic.kr/p/8B12ZY " target="_blank">flic.kr/p/8B12ZY </a></p>
<p>1. Today we’re launching a new Twitter.com—a faster, easier, and richer way to discover what’s new in your world. <a title="Twitter Search Results for #NewTwitter" href="http://twitter.com/#search?q=%23NewTwitter" target="_blank">#NewTwitter </a></p>
<h5>Check out the video that does the best job of visualizing the changes in functionality and integration with photo, video, and follower sharing:</h5>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/rIpD7hfffQo&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="600" height="385" src="http://www.youtube.com/v/rIpD7hfffQo&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://saidigital.co/2010/09/ten-tweets-about-twitter-from-founder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter: Why It Matters To Your Business.</title>
		<link>http://saidigital.co/2009/11/twitter-why-it-matters-to-your-business/</link>
		<comments>http://saidigital.co/2009/11/twitter-why-it-matters-to-your-business/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 19:42:25 +0000</pubDate>
		<dc:creator>JF Steele</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[social media for business]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://saidigital.co/?p=884</guid>
		<description><![CDATA[Steele Agency takes an in-depth look at the questions: 
What is Twitter, 
Why should I use it for my business?]]></description>
			<content:encoded><![CDATA[      
            
      <p>As the Internet continues to grow and mature in its ever-expanding ability to bring the world to your fingertips, the challenge becomes keeping up with what’s out there and how it can benefit you and your business.  As the cat and mouse game can seem surmounting at times…never fear, we are here to help see you through murky weeds of unnecessary Internet tools and into bright business clarity.</p>
<p>We start by examining one tool that has the ability for dynamic growth and impact of one site in particular and that is- twitter. You may have or have not heard about this site, but with close to 19% of all Internet users using this medium according to a <a href="http://www.pewinternet.org/Infographics/Twitter-demographics--Fall-2009.aspx" target="_blank">Pew Internet &amp; American Life</a> report, it’s difficult for some to see business potential. Of course, to understand its potential, we first must establish what it is exactly and how to best use it for your business.</p>
<p>First off, Twitter is a social media site. Social media as <a href="http://searchenginewatch.com/3633223" target="_self">searchenginewatch.com</a> defines is, “a category of sites that is based on user participation and user-generated content.” However, while they share these same qualities, they’re different in their approaches on how to share in<img class="alignright" style="border: 5px solid white; margin-top: 5px; margin-bottom: 5px;" title="what is twitter?" src="http://myblabs.files.wordpress.com/2009/09/twitter21.jpg" alt="" width="270" height="206" />formation.</p>
<p><a href="http://twitter.com/about#about">Twitter</a> describes itself as a service for friends, family, and co–workers to communicate and stay connected through the exchange of quick, frequent answers to “one simple question: What are you doing?” That may sound vague and unclear so think of Twitter as <a href="http://mashable.com/what-is-twitter/">mashable.com</a> describes it: just conversation in a new shape and being able to listen to the conversation of others in new ways.</p>
<p>While the Age of Information is in full swing, there is often an overload of information as opposed to timely, relevant information for the person attempting to stay current with what’s going on in the world. Twitter filters this information by allowing for only the pertinent information to be seen. It does this by limiting the number of written characters to 140 for every post. With such little amount of writing space, it forces users and businesses to expose the meat of an idea and often with links and sources to offer more defined details.</p>
<p>Generating such specific content, Twitter gives users the chance to see only the information they value and can easily stay current with what is happening in that chosen field or market.  This presents a great opportunity to use Twitter to connect your business to its clientele.</p>
<p>“When you combine messages that are quick to write, easy to read, public, controlled by the recipient and exchangeable anywhere, you’ve got a powerful, real-time way to communicate. And real-time communication is turning out to be ground-breaking for users and businesses alike,” <a href="http://www.business.twitter.com/">www.business.twitter.com</a>.</p>
<p>Look out for our next installments &gt;&gt; “<a href="http://saidigital.co/2009/12/the-twonderful-tworld-of-twitter/">The Twonderful Tworld of Twitter</a>”</p>
<p>To be followed by&gt;&gt; specific examples of successful business strategies on Twitter.</p>
]]></content:encoded>
			<wfw:commentRss>http://saidigital.co/2009/11/twitter-why-it-matters-to-your-business/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Explaining the news: how Twitter affected Iranian protests</title>
		<link>http://saidigital.co/2009/07/twitteriran/</link>
		<comments>http://saidigital.co/2009/07/twitteriran/#comments</comments>
		<pubDate>Tue, 07 Jul 2009 05:29:30 +0000</pubDate>
		<dc:creator>Caroline Herndon</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[iran]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://saidigital.co/?p=600</guid>
		<description><![CDATA[Western media says Twitter had a large role in recent Iranian protests. The facts say that's only part of the story. A (brief) history on the conflict and how twittering replaced mainstream journalism in a day.]]></description>
			<content:encoded><![CDATA[      
            
      <h3><span style="color: #333333;">Western media says Twitter had a large role in recent Iranian protests. The facts say that&#8217;s only part of the story.<img class="alignright" style="border: 0pt none; margin: 6px;" title="Twitter on Iran Flag" src="http://saidigital.co/wp-content/uploads/TwitterIran.jpg" alt="" width="300" height="200" /></span></h3>
<h2><strong>The Election</strong></h2>
<address><em>“Mousavi &#8211; I call for free elections overseen by a fair national council &#8211; not one which has an agenda of its own,” #Iranelection 2:13 AM Jun 21st from web</em></address>
<p>Less than two hours after the polls closed, President Mahmoud Ahmadinejad announced that he won 63 percent to Mir Hossein Mousavi’s 34 percent. Mousavi’s supporters say he won 60 percent. While Iranian elections were never fair and private, voters were enraged that Iran did not even make a pretense to count all the votes. Urban intellectuals, students, women from all backgrounds and others are contesting over ten million votes, while most rural Iranians are happy with the results.</p>
<h2><strong>The Powder Keg</strong></h2>
<address> <em>“The only question now is how will the end happen &#8211; peacefully or with civil war,” #Iranelection11:10 AM Jun 23rd from web</em></address>
<p>Westerners who claim Twitter as the coup de gras fail to account for a more important variable &#8211; demographics. During and following Iran’s eight year war with Iraq, Iranian clerics urged high birth rates to supply the military. When the resulting 1980s baby boom caused a crisis for the war-torn population, clerics reversed their council. Around the same time, literacy rates in Iran escalated. Coupled with the tremendous death toll from war, political executions and an earthquake, most urban Iranians alive today are educated twenty-something’s – a common recipe for protests.</p>
<p>As a BBC timeline shows, Ahmadinejad’s 2005 election ushered in a conservative lock-down at the same time most Iranians were becoming politically aware. Unlike their parents, younger Iranians don’t remember the 1979 Islamic Revolution. They didn’t live under the Shah’s oppression, but they do know journalists imprisoned today. It was only a matter of time before this simmering anger erupted.</p>
<h2><strong>How Iranians used Twitter</strong></h2>
<address> “<em>Today Gov hackers broke into our profile &#8211; after several hours of hard work we hacked back into our own profile,” #Iranelection5:05 PM Jun 22nd from web</em></address>
<p>Twitter let the world in on the protests. Its 140 character format was perfect for tiny updates, and Iranians can tweet with a cell phone while on the street. With grainy pictures and blunt descriptions of police brutality, Iranians supply Western media with information free from clerical propaganda. However, most on-the-ground communication is simpler: text messages, quickly scribbled notes and word of mouth. Furthermore, Twitter isn’t just a minority protest tool: Ahmadinejad used Twitter in his election campaign, and his supporters use Twitter to defend the election. The information sharing portal only gained significance once traditional journalists were no longer permitted into the flurry of activity.</p>
<h2>The Significance</h2>
<p>While only 8,600 Twitter users say they are from Iran &#8212; and many of these cannot navigate their government’s blocks &#8212; the site is one more step away from so called &#8220;traditional&#8221; journalism (for better or worse) and all those in &#8220;information disseminating&#8221; roles, albeit marketing, public relations, news, sales, advertising or otherwise would do well to respond.</p>
<p>It can&#8217;t be denied that Twitter is a powerful tool for information sharing from a few to many. While the focus should remain on people, not their tools, knowing the tools available often allows for greater focus on the people themselves.</p>
<p><em>Oh, and if you want to follow the Twitter News Coverage, check out <a href="http://iran.twazzup.com/" target="_blank">http://iran.twazzup.com/</a></em></p>
]]></content:encoded>
			<wfw:commentRss>http://saidigital.co/2009/07/twitteriran/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Twitter Story</title>
		<link>http://saidigital.co/2009/03/the-twitter-story/</link>
		<comments>http://saidigital.co/2009/03/the-twitter-story/#comments</comments>
		<pubDate>Sun, 08 Mar 2009 22:08:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[entrepreneurship]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://saidigital.co/?p=449</guid>
		<description><![CDATA[      
            
      Here&#8217;s a link to a great article written by the CEO of Twitter, the leader in real-time searching and &#8220;ambient]]></description>
			<content:encoded><![CDATA[      
            
      <p>Here&#8217;s a link to a great article written by the CEO of Twitter, the leader in real-time searching and &#8220;ambient findability&#8221;. He seems to pinpoint the real deal about entrepreneurship: a series of accidents used well. He also might serve as the poster child for the &#8220;college is a waste of time&#8221; line of thought that makes most parents cringe.</p>
<p><a href="http://www.nytimes.com/2009/03/08/jobs/08bosses.html?_r=2" target="_blank">Click: Twitter CEO tells his story.</a></p>
<p>And some facts about Twitter:</p>
<p><a href="http://www.nevillehobson.com/2008/02/21/the-continuing-growth-of-twitter/" target="_blank">Neville Hobson on the Growth of Twitter<br />
</a><a href="http://blog.wired.com/business/2008/10/twitter-to-get.html" target="_blank">How Much Is Twitter Worth (in 2008)<br />
Twitter in 2009</a></p>
<p>So, the question is, how does this work in Northwest Georgia? How do we encourage lucky accidents, patient investors, techno-social savvy?<br />
Please feel free to respond.</p>
]]></content:encoded>
			<wfw:commentRss>http://saidigital.co/2009/03/the-twitter-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

