Yes, I have heard it more times than I can count:
How many projects do you have?
The answer is, too many, of course! When you are a person like me, your mind is constantly racing and you see ideas and opportunity everywhere. Or at least I like to think that it is that…and not just insanity.
I started a new project recently, called My City Headlines.
The idea behind the project is to aggregate specific city’s news in one place. This provides people with a single location to get their local news without having to search multiple sites.
I am inspired by Guy Kawasaki’s AllTop.com. They pick a subject, any subject, and find the top news/blog sites on that subject from around the web and aggregate their headlines on one page. This is a really cool idea and it seems to be doing well. If you follow Guy Kawasaki on Twitter, you will quickly notice that they are constantly adding new subjects to their site.
I wanted to take this idea, without completely ripping it off, and provide a similar service in my own way. Not only do I aggregate the news from a city on a single page, but I provide subject based RSS feeds that aggregate the headlines and excerpts into a single feed.
I hope that people find this site useful. For more information or to see if your city is added yet, please visit http://www.mycityheadlines.com. If you want your city added, you can comment on this post and I will add your city ASAP.
Sphere: Related Content
I was replying to a friend on Twitter using trim, and I had a <script> tag in the post. I realized when I submitted that the tag made everything after it in my tweet dissapear. If you want to see the actual tweets, you can find them in my twitter feed here: Matt Bernier’s Twitter Feed
First thougt was, “No Way!”. Second thought was, “What Else Can I do?”.
So, I tried basic HTML with this tweet:
-
<h2>Testing whether HTML breaks tr.im</h2> B/c my
-
<script> tag did earlier</script>
-
<span style="color:blue;"> ScreenShot coming</script>
This got me this result:

Just HTML in the Tweet
Then I tried an alert:
-
<script type="text/javascript">
-
alert('does this work?');
-
</script>
That got me this result:

Javascript Alert in a tweet
Then lastly, I tried a little more JS, pay attention though. To make it fit, I used a tr.im URL!!
-
<script type="text/javascript">
-
document.body.select('img').each(function(e){e.src="http://tr.im/evmz"});
-
alert('check the images')
-
</script>
Which got me this result:

Replaced Tr.im's images with Google's!
I have submitted this information to tr.im. I did very mundane, topical things to the page I was looking at, and did not even attempt anything more dangerous. My hope is that you will see the humor in this, urge tr.im to fix this issue and to continue the amazing job that they do.
UPDATE: The Tr.im developers are quick to read their emails, respond, and fix issues. It took all of twenty minutes from when I sent the email to them, for a response saying that this issue was fixed.
Sphere: Related Content