Strategy. $$ can sometimes shift focus from long term strategy to short term strategy. Usually, a successful company is known for something. If you are the best, do not compromise…
Post navigation
previous post
A lesson for life, spanning a generation.
next post
Should vs Could. Deadlines, Budget and the Small Dev Team
If you are a non-technical leader trying to start a tech org, it can be difficult. Here is a blueprint.
- Posted in
Only have Sysomos tweet context? Extract username from URL.
- Posted byby John Steinmetz
- 1 min
Using regular expressions you can extract the username from a twitter URL. var twitterURL = item.link; var twitterName = twitterURL.match(/https?:\/\/(www\.)?twitter\.com\/(#!\/)?@?([^\/]*)/)[3];