Hot Koehls
  • Email
  • Feedburner
  • Linkedin
  • Twitter
  • Home
  • About
  • Archives
  • Contact
  • Software
    • S3imple Backup
    • Twitter Feed Archiver
    • FileTime
    • Flickr API Demo
Search
Home» For techies » Free and open source alternative to ShareThis, AddThis, AddToAny

Free and open source alternative to ShareThis, AddThis, AddToAny

Posted by Frank - March 25, 2009 - For techies
29

Update: Make sure you check out the comments! My post is just a launching point for some great commentary from staff at iBegin Share and Add to Any.

Every site with timely or useful content should utilize some on-site bookmark sharing tool. I’m talking about the bar of links to social networking sites like Facebook, Digg, Reddit, Twitter, etc. that you find at the end of a post. These buttons are preset to recognize the URL of the page they appear on, allowing visitors to quickly propagate your content to their digital lifestream. WordPress specifically offers a ton of plugins that offer such functionality.

The most popular tools use Javascript to display all the sites in a popup: Add to Any, AddThis, and ShareThis. Speaking in terms of pure function, these tools are great: they make sharing functionality readily available without cluttering up the display.

However these JS-based bookmarkers possess some significant downsides. First and foremost are the performance concerns. These tools are all stored remotely, and get loaded on your page as a javascript include. Here’s an example of the code from ShareThis:

Pay attention specifically to src="http://w.sharethis.com/button/sharethis.js[...]". It’s just a normal URL, like any page you visit. This means that each time the page is loaded, the user’s browser goes off to retrieve a copy of the javascript required to display the button. Aside from the obvious bump in bandwidth usage, they can cause an obvious delay in page loading. Worse, if the service is experiencing any kind of slowdown or outage, including these services can cause your site to hang and timeout. And these services do hang on a regular basis. I’ve seen it last so long on my own blog that I’ve had to disable to the plugin until service returned. That the delay is not your fault does not matter; it slows your page down, making you the laggard in the eyes of users. Not good.

But while these services are not focused on reliability and uptime, they do spend an awful lot of time on data collection/aggregation, legal, and advertising. None of these are good for you, the site owner. All activity surrounding the button on your site is tracked. They can partner with ad networks, packaging in extra ad cookies when the button is served up. Aside from the privacy issues, this again increases bandwidth. Imagery — specifically the branded icons of each service — are copyrighted, making them subject to usage restrictions and leaving you open to dealing with pain-in-the-ass take-down requests. Update: Per conversation with Add to Any Founder Pat Driven in the comments, Add to Any actually avoids this type of language entirely, limiting all their legal jargon to a plain-speak Privacy Policy.

To be clear, there’s nothing inherently wrong with any of this. These are businesses, they provide a service and have to make money to stay alive. However I think the vast majority of users just want the fancy javascript popup, everything else is excess baggage.

Enter iBegin Share, a free, open source alternative for javascript-powered bookmark sharing. Instead of going offsite to retrieve code at each page load, iBegin Share runs locally on your site, saving you bandwidth and decreasing load time. iBegin Share tracks usage like its corporate counterparts, but that data is stored in your database and used for your own data tracking purposes only, saving more bandwidth (since it doesn’t have to communicate back) and your privacy. Finally, since its open source you can modify the code any way you want: change the look, layout, color scheme — the tool includes 4 preset color schemes, plus an option for text vs. button link — even add totally new share options. A WordPress plugin version is available.

On the downside, external documentation is pretty thin at the moment, but the code is well-commented. There is also a forum, but activity there is rather limited right now — a discussion on a seemingly common issue started earlier this month has yet to receive any official word. So you’re on your own with any heavy customizing or problems, but I suppose that’s the tradeoff for eliminating any third party eyes poking around your traffic. Assuming it works as advertised, I’d argue that it’s a far better deal than the other tools, even without any customization ability.

If you decide to give iBegin Share a shot, or if you’re using it already, I’d love to hear how it’s working for you. Please share your experiences in the comments.

blogs, crappy coding, lifestream, open source, social networking, usability

29 comments on “Free and open source alternative to ShareThis, AddThis, AddToAny”

  1. Pat Diven II says:
    March 26, 2009 at 5:18 pm

    First, you did a great job articulating some of the differences between sharing widgets and home-brewed/OSS.

    Second, iBegin Share is a sibling user of the Open Share Icon, and I’m very partial to open source.

    Third, my counter-argument. :)

    AddToAny is a deploy and forget solution. Those living in the golden age of AddToAny’s ’06 widget code still have a 100% functional sharing tool.

    The tiny cost of using AddToAny is external dependency, which has been traditionally averted anyway by locally hosting the script and receiving periodic updates (for those who can’t have dependency for policy reasons).

    The advantages are:
    * Deploying once
    * Giving your users access to the latest relevant sharing tools
    * Not having to worry about changes:
    – updates to URI schemes, services names, icons, new services, defunct services (these things change all the time)
    * Automatic updates that improve the speed, compatibility, and usefulness of the widget
    * Cheaper: you don’t have to serve the static content

    Performance-wise, AddToAny is optimized like crazy. It’s cached, minified, and served quickly. If you use the WordPress plugin or Drupal module, the external script is the last component to load (if not already cached to serve locally) so your content always loads first even if the user can’t reach static.addtoany.com.

    I won’t go into other functional/technical specifics, but versus iBegin right now, there are only 2 – 4 other HTTP requests to iBegin’s 14 when either drop-down appears. ;) I know, dear OSS brothers and sisters, that that can be helped. :)

    So in my of course biased assessment, the advantages of using AddToAny outweigh the cost of external dependency (which isn’t always requisite to utilizing AddToAny).

    Now I do have issues with some of the points you made, and I mean this politely, but frankly your 5th paragraph is full of FUD. We’ve never been focused on legal, definitely not ads, and being focused on reliability/uptime simply comes with the territory. A takedown notice for favicons? Never once in 3 years has this been an issue, and I’ve never heard of such a case.

    Aside from those glaring issues, I enjoyed reading again about iBegin and welcome your thoughts on AddToAny anytime. Thanks, Frank! :)

  2. Frank says:
    March 27, 2009 at 11:45 am

    I’m flattered that I attracted the attention of Add to Any’s founder. Glad to have you in the conversation, Pat.

    You’re quite right that tools like Add to Any are “set it and forget it” solutions in comparison to iBegin Share. The difference of course is in the download; I have to grab a code package for iBegin, while Add to Any is a copy-paste job.

    However I’d say that’s a non-starter, because they still require roughly the same amount of effort to install. The basic Add to Any button code requires me to edit at least one file and upload it to my server, I just upload a few more files with iBegin Share. The steps are identical if I use the widget/plugin versions of either one — download, optionally configure, upload to site.

    Now all that being said, bandwidth and load time penalties are still more important than saving a few seconds in setup. Add to Any will certainly sway non-technical users, and more power to you for serving that market. But most technically savvy webmasters and web developers place greater emphasis on performance, especially when the alternative has the potential to cause timeouts.

    Which is why I found this part of your response so interesting…

    The tiny cost of using Add to Any is external dependency, which has been traditionally averted anyway by locally hosting the script and receiving periodic updates (for those who can’t have dependency for policy reasons).

    Are you saying that I can download and serve a complete copy of the Add to Any code locally from my own server, without any URL requests? If so, the Add to Any site is doing a horrible job of advertising this functionality. After reading this I scoured it looking for how I might go about implementing it and came up empty. Again, savvy webmasters would be interested in this type of functionality for all the reasons I’ve described.

    Regarding my comments on the use of ads and tracking, it’s not FUD if it’s true. The Terms of Service for both ShareThis and AddThis contain verbage speaking to the concerns I raised. The ShareThis Privacy Policy also has some language worth considering. In contrast and to your credit, Add to Any only contains a Privacy Policy, and uses much less legal jargon and verbage in general. I’ve updated the post accordingly.

    Finally I have to call you on some FUD of your own…

    I won’t go into other functional/technical specifics, but versus iBegin right now, there are only 2 – 4 other HTTP requests to iBegin’s 14 when either drop-down appears.

    iBegin Share doesn’t make any HTTP requests. At the end of share.js, there are 14 calls to a method called addService. Each call corresponds to one of the 14 services that appear in the latest version of iBegin Share. This method is used to add those services to the menu. One of the arguments is a preformatted URL string representing the submission link for each service, and is used to create the link for each service. Note the __TITLE__ and __URL__ strings in there, which are replaced at runtime with the title and URL of the page being served. No external communication occurs in this process.

    I’ve been through the code several times now to be sure, but let me know if you’re referring to something else. Assuming we’re on the same page, the correct number of HTTP requests is actually 2 – 4 in Add to Any vs iBegin’s none.

  3. Pat Diven II says:
    March 27, 2009 at 5:23 pm

    “Are you saying that I can download and serve a complete copy of the Add to Any code locally from my own server, without any URL requests?”

    Yep, we help with that on a case-by-case basis, and you’re right that it’s not something we’ve advertised yet.

    Friendly performance comparisons:

    iBegin initially:
    share.css
    share.js

    iBegin on drop-down:
    20 requests – all images

    Keep in mind that all iBegin files ideally need to be cached, and minified or smushed.

    AddToAny initially:
    page.js

    AddToAny on drop-down:
    2-4 requests
    – 1 transparent pixel
    – 1 sprite image of icons
    – 1 optional Digg API lookup for # of diggs/comments
    – 1 optional Delicious API lookup for # of saves

  4. Frank says:
    March 27, 2009 at 10:45 pm

    Yep, we help with that on a case-by-case basis, and you’re right that it’s not something we’ve advertised yet.
    Just my $0.02: you need to publicly launch that feature yesterday. You and I can talk load times and compression all day, but I’d wager that the majority of users don’t see much difference between you and your competitors: a pretty button that reveals a pretty menu. The ability to run the code locally is a real differentiator.

    Alright so your 14 http requests argument has become 20 image downloads. The story’s changed a little, but I’ll grant your point: Add to Any eliminates multiple images using an image map, and reduces all the surrounding imagery (menu borders, etc.) to CSS definitions. Good optimizations, to be sure.

    A little balance to your performance comparison: I tested iBegin and found that their code also does not download the images until the menu is loaded. Activate “Network Monitoring” in Firebug and check out the image load timeline.

    As for the images themselves, Add to Any has all the icons in a single PNG — http://static.addtoany.com/menu/icons_15.png — and weighs in at 24.94 KB. Great example of CSS image mapping, btw.

    iBegin has 7 images (7.91 KB total) that load each time automatically, and an additional 14 images (12.48 KB total) when the menu loads. That’s 20.39 KB total, so total imagery in iBegin weighs slightly less.

    Of course image size is only part of the puzzle; we’re not accounting for JS file size, CSS code size, minifying, etc. iBegin only displays 14 total services but utilizes a larger display. Add to Any can expand to show a ton really obscure networking sites, but the font size is excruciating at larger resolutions. 21 small images versus 1 that’s slightly bigger…

    My point in all this? The performance comparison is so close and so nuanced as to be negligible, and makes external dependency the deciding factor. No matter how much optimization you do, if your service goes down and I’m serving the Add to Any button, my pages timeout.

    Add to Any’s functionality would have to attain an interstellar level of awesomeness to overcome this shortcoming in a side-by-side comparison. I’m not worried if my users can’t link directly to Shyftr, or Eskobo, or Rasasa (until they tip anyway), so local hosting wins.

    Which again brings me back to your unofficial local hosting feature. If you begin to support that on a broad scale, I’m out of arguments. There’s more share options, no legal concerns, and its continuously supported. That’s some of the juiciest low hanging fruit I’ve seen in a while.

  5. AhmedF says:
    March 31, 2009 at 11:45 pm

    Fun times – fun times :)

    Thanks for the wonderfully glowing review Frank – it has motivated me to get a better job done.

    I kind of find it unfair that AddtoAny compared graphic sizes – we have big bold graphics, and as we are a customizable system (adding your own services is pretty easy), using one image and CSS would break everything. This of course does not mention our big easy-to-remember icons vs the smaller ones for AddToAny.

    Lastly, and I believe this is most important – iBegin Share was a little script we developed to use on the site – but never did end up using (as priorities changed). ShareThis, AddToAny, et all are fully functional websites/companies – and yet at the end of the day the offerings are quite identical. Fun times.

  6. David Cramer says:
    April 1, 2009 at 12:44 am

    Just a quick note, we fixed a few issues tonight, including the issue with My PC and Printer not showing up in the WordPress plugin.

    Thanks for the support!

  7. Frank says:
    April 1, 2009 at 2:27 am

    This is quickly becoming one of my favorite posts. :)

    Ahmed, David, glad to see you both made your way over here. I completely missed the fact that the customizability pretty much requires individual images, so I’m glad you decided to chime in.

    Let me take this opportunity to give my heartfelt thanks for the work you’ve done on this product thus far. It’s fantastic. I hope it provides the professional exposure you deserve for the work.

    To be fair, I think Pat does an excellent job articulating the strengths of his software, and those arguments are not without some merit. I do genuinely believe that Add to Any could break away from the pack if they started pushing the localized version of their software.

    But open source software always provides a unique advantage over any corporate product. All things being equal — which in this case I’d say they are — open source always has the advantage.

    David, I’ve installed the update and it works beautifully. Thanks for the fixes!

  8. Pat Diven II says:
    April 1, 2009 at 3:14 pm

    Touché. ;)

  9. Sacha says:
    April 2, 2009 at 6:23 am

    You wrote:

    Pay attention specifically to src=”http://w.sharethis.com/button/sharethis.js[...]“. It’s just a normal URL, like any page you visit. This means that each time the page is loaded, your web server goes off to retrieve a copy of the javascript required to display the button

    This isn’t true; it’s the user’s browser that fetches the URL, so there is no impact on your server’s bandwidth. There is an impact on the page load time for the user, and on w.sharethis.com’s bandwidth, but not on your web server.

  10. Frank says:
    April 2, 2009 at 10:09 am

    You’re absolutely right, Sacha. Remote javascript is download by the browser at the request of the page being served by your web server. The server’s only job is to tell the browser, “Hey, get this from over there.”

    My verbage was simply a typo, consequence of a train of thoughts getting smashed together while writing the post. I’ve changed the entry, and thanks for pointing it out.

  11. Shannon says:
    May 4, 2009 at 11:06 am

    Thanks for this informative post. We’ve been debating which bookmarking plugin to use for our wordpress powered blog and this gives us something to work from.

    What I initially like about iBegin Share over the others is the ability to convert posts to pdf and word docs, which is an important features to offer our users. We’re a travel blog and letting them make their own travel guides this way is useful in travel planning.

    Thanks, Frank, for all this.

  12. oliva says:
    May 14, 2009 at 8:38 pm

    awesome article and many comments that are useful
    i have realized that flashy shiny icon as social bookmarking slowed my page down, so right now i am testing various one, including ibegin.

    great site

  13. Patrick Miller says:
    July 30, 2009 at 4:29 pm

    Thanks. Great discussion. I’ve been researching the Flash tracking issue with AddThis and have pretty much decided to switch to AddToAny. For me, the AddToAny design is so well resolved, and the fact that it updates itself is so helpful, I just can’t resist it. The level of polish is significant and very appealing. Having that 99% of the time is good enough for me (I’ve actually never had it go down for me on any of the sites I see using it.)

    Now about the external dependency issue, the important thing to me is to choose my external dependency wisely. For example, unless I’m missing something, this page uses reCaptcha, which is an external dependency, right? I assume it’s being used because there is no free alternative? At my office we’re not allowed to use this reCaptcha tool because of the external dependency problem (so we had to buy a commercial version). However, we are allowed to use AddThis or AddToAny. For us, a security tool like captcha is more important than a sharing tool, so we disallow the external dependency for security-related functions and allow it for non-critical functions like sharing.

    For sharing we go for beauty and user experience over all else, and that’s where I think AddToAny really shines.

    Thanks again for the great site!

  14. eliZZZa says:
    October 7, 2009 at 3:05 pm

    Hi Frank,
    great article! Just found it, when I was desperately searching for a solution for a loading time of >1 minute for my site nadelspiel.com (seeing the attempt to loading static.addtoany in the browser bar).
    Changed to ShareThis immediately (WP plugin) – loading time perfect now.
    Will let you know, how it works for me…

    Kind regards from Austria,
    eliZZZa

  15. Stephan Sokolow says:
    January 24, 2010 at 11:12 am

    If you have even rudimentary JS skills, Another option for solving the loading-time issue on scripts which may not be deferrable, is to use the noscript tag and a static, inline document.write to display a throbber if JS is enabled (I suggest one of the mid-sized circular ones from http://ajaxload.info/) and then, using an onDOMComplete wrapper (I use jQuery’s $(document).ready()), inject the AddThis/AddToAny code after the page has been fully rendered.

    That’s what I’ll be doing as soon as I can find the time to implement it as a WordPress plugin. (I don’t like having to remember that I’m using a modified theme and jQuery doesn’t come standard)

  16. Philip Borris says:
    March 9, 2010 at 7:40 am

    Fantastic post Frank!

    Great to hear the opinions from the developers too.

    I’m doing a little research into the major social sharing providers such as: AddThis, ShareThis, AddToAny etc.

    There’s no ‘About Us’ on the iBegin site.

    Can someone provide details regarding:

    01. Who founded iBegin?
    02. Key People?
    03. Current reach (how many users have installed it?)
    04. Sites (how many sites is it on?),
    05. Alexa Traffic rank?
    06. Plugins / Extension supported?
    07. Any examples of iBegin in use in the real world – on big named sites?
    08. How often it’s updated
    09. Last significant update
    10. Future plans…Addtoany, sharethis and addthis have some good added value services e.g. ShareThisStream.

    I prefer the iBegin model it’s faster and slicker and the large icons are great. (printer icon could do with being revised) but, I’m concerned that iBegin lacks features and will not be able to compete with aforementioned social sharing providers.

    Cheers

  17. Gero says:
    March 17, 2010 at 7:52 am

    HI Frank,

    I just linked over to you from my (German speaking) blog. I was desperately searching for a locally installed, non data mining “Share” button – if possible together with a WordPress plugin.

    … The rest is history. I will apply Enthropia Share (as it doesn’t seem to be called iBegin Share officially now) to a couple of business websites I administer pretty soon. From Germany, Web Analytics of any kind and unaskedly giving away visitor’s IP addresses to third parties outside European jurisdiction has become more and more a red rag for attorneys and judges. I just quit Google Analytics for the same reason and switched over to Piwik piwik.org – which can even be modified to anonymize incoming IP addresses to become compliant with the German Federal Data Protection Act (Bundesdatenschutzgesetz – BDSG). But then, there were the AddThis buttons, basically doing the same external web analytics without telling so.

    Bottom line is: With iBegin Share instead of AddThis and Piwik instead of Google Analytics, I’ll sleep much better from now on.

    All the best!

  18. Jim Howard says:
    June 2, 2010 at 5:09 pm

    Great article and very informative. iBegin Share (or perhaps it is really Enthropia Share, as pointed out by Gero!) seems to be going through some transitional issues of some sort, but I’ve been assured that their very useful forum area will be up and running again soon.
    Based on the information in this article I also installed and am using AddToAny on another site I webmaster. This was very easy to install and use, and now provides a vital function.
    Well done to both of these products and their authors!

  19. Coding Strategist says:
    June 4, 2010 at 6:10 am

    I totaly agree that is not the safest option to have third party JavaScript running in your website. However for people who do not have the time, budget or programming skills to implement a sharing tool on their own server, services like addThis can be very valuable. I did a test on the most well know hosted bookmarking services out there and found out that ShareThis is the fastest loading one. It also has most features the other services offer. So if you have to choose for a hosted option … go for AddThis. For the full speed report see: http://codingstrategist.com/social-bookmarking-services

  20. Alois Kratochwill says:
    August 7, 2010 at 1:53 am

    Interesting article, thanks.
    I wanted to try iBegin´s scripts on my server but iBegin´s database server has a problem for weeks, no downloads possible.

  21. Patrick Phelan says:
    August 12, 2010 at 1:42 pm

    I would love to try out iBegin Share but can’t seem to get the download link to work. Is there an alternate way to access it?

  22. Pat says:
    August 20, 2010 at 3:23 pm

    This is classic open source. Load up the shotgun with fine, handmade shot. Polish the barrel to an attractive shine. Call everyone from miles around to come see your superior tool in the open bazaar…

    Then, point it downward and blow off the end of your own foot.

    The site’s been jacked for weeks now. No sign that the developers are even aware of it much less care one way or the other.

    This sort of renders all arguments about functionality and efficiency moot, no?

  23. David says:
    September 13, 2010 at 12:59 am

    Regarding Pat’s reply (August 20th): It is true that the links in the original post don’t seem to work. As pointed out in one of the other comments, it seems that the app is being handled by Enthropia now. (Some sort of biz transition perhaps?)

    Download and documentation can be found on their site:

    http://www.enthropia.com/labs/share/

    Regards! :-)

  24. Steve says:
    November 13, 2010 at 6:18 am

    I’d like an open-source non-tracking alternative to AddToAny, etc. So I read all this with great interest. I then went enthropia and checked out the demo. I wasn’t impressed with the (default?) button, but that would obviously be customizable. I also wasn’t impressed with the order of the buttons on the first tab. No logic at all – Facebook first, Twitter last, and everything in btwn, like Digg, etc. Finally, and most importantly, the short email I tried to send failed due to a problem with, it said, “the database”. I was advised to click the refresh link, but that just led to another, more final, error message and apology. Guess I’ll go w/ AddtoAny, and use the instructions I’ve seen for disabling the tracking (http://neoacademic.com/2010/06/20/removing-secret-behavioral-marketing-from-wordpress-addtoany/). And later I’ll contact the company for help in setting up the script on my own server….

    Btw, it seems like the whole internet is being taken over by list developers. The consequences are actually enormous, I think. Consider one example: the USA is taking no action on global warming because, it seems, [1] a large percentage of the population is in an echo chamber (created via browser tracking, etc.) that denies the reality of human-caused climate change. And [2] the rest of the country seems to have fallen for very effective marketing campaigns which have turned debates over environmental politics into debates over environmental products. And these marketing campaigns, too, have been enabled w/ browser tracking, etc.

  25. Srikanth says:
    December 29, 2010 at 5:40 pm

    OMG……looks like AddToAny hired a bunch of comment-goons to advertise themselves.

    First of all, great job Frank. I totally agree on every point of yours. Summary: Services like AddToAny, ShareThis and AddThis are great for totally “i-read-web-designer-for-dummies, i-am-a-web-designer” type of non-technical people who prefer ease over performance. But for a sane average technical person, the dependency issues that arise out of these “simple” plugins are downright unacceptable.
    :) I am pretty sure that my remarks will be made obsolete by the goons of the big giants. Checking out iBeginShare. Superb post. Thanks.

  26. Brian W says:
    April 18, 2011 at 3:03 pm

    I ended up ditching ShareThis/AddToAny, etc. due to privacy concerns of our clients. Not being aware of iBegin Share, we ended up just building our own WordPress plugin, Trackable Social Share icons.

    In our version, we ended up ditching the pop-up box since none of our clients wanted it (they tend to only display twitter, facebook, and maybe email). We also handled tracking entirely through Google Analytics (which can be turned off), which lets you manage all of your web analytics in the one spot that you probably are anyway.

    At any rate, we just tossed our version up at: http://wordpress.org/extend/plugins/trackable-social-share-icons/

    Think it’s a worthy competitor, or should we just be using Ibegin Share anyway?

  27. cheesus says:
    April 20, 2011 at 6:33 pm

    Hello,

    the share code has a problem on Safari when the page is not scrolled up (i.e. a page that is longer than the screen and the share is in the footer)

    I found a fix by “someone” (another anonymous coder, it seems) in
    https://onyx.ets.org/onyx/rsc10/share/Document1.txt

    Well, iBegin Labs/Enthropia seems to be dead for some time now (forum link dead, not a single email address anywhere…), so wouldn’t it be the time to upload the current version to some open source hosting site (google code, codehaus, …) …?!?

    I guess some people would be interested in extending it, fixing bugs, make new skins, add more services…

    I’ve (tried to) email both the people at iBegin and at ets.org.
    Let’s see if I get some response.

    If I receive none, what do you people think ?

    My eMail is tom@eicherde

    Cheers, Tom.

  28. cheesus says:
    April 20, 2011 at 6:35 pm

    Aargh, should have known better than to use HTML brackets to obfuscate my email. try again:

    My eMail is tom@FIRSTNAMEAGAINHEREeicherDOTde

  29. Paul says:
    April 25, 2011 at 5:33 pm

    Thanks for the Post. AddThis ist during this time not running :(

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Categories

  • For entrepreneurs
  • For everyone
  • For techies

Latest Tweets

  • The word traps planners plan themselves into | Life. Then strategy http://t.co/iANAdASb
    May 8, 2012 - 2:43 pm
  • Random network security tip for those about to appear on TV - Boing Boing http://t.co/tC1lXFQ4
    May 8, 2012 - 1:42 pm
  • A Picture http://t.co/H846Uy69
    April 27, 2012 - 12:25 pm
  • The Broken "Buy-One, Give-One" Model: 3 Ways to Save Toms Shoes | Co.Exist: World changing ideas and innovation http://t.co/RI0sVMW6
    April 10, 2012 - 12:23 pm

Recent Comments

  • whiz on What 255 characters looks like
  • Andrew on Find the second (or third, or fourth) occurence in a string
  • IanArcher on Get number of message parts in an email using PHP
  • Usama on Remove parent directories from tar archives
  • Frank on It’s dangerous to go alone

Recent Posts

  • It’s dangerous to go alone
  • Create Self-Signed Wildcard SSL Certificate
  • What comes after the yottabyte?
  • Write code like they do in Hollywood
  • Brian Rolle machine gun celebration
(c) 2012 Frank Koehl. All Rights Reserved.
  • Contact Us
  • Sitemap