Software

More details for Samsung Galaxy S 4 Zoom discovered -
More details for Samsung Galaxy S 4 Zoom discovered -
about 1 hour ago
22+ Excellent Icon Tutorials to Learn
22+ Excellent Icon Tutorials to Learn
about 1 hour ago
LOOT! RT @skittlesolives: “@Greenfaery: Happy Birthday! @JurieOnGames :)
LOOT! RT @skittlesolives: “@Greenfaery: Happy Birthday! @JurieOnGames :)
about 1 hour ago
SEO
The marketing team here at Compete compiled a list of the most popular digital marketing stories online this week. Enjoy and happy competing, marketers! 67% of smartphone users would rather see advertisements than pay for premium content...
The marketing team here at Compete compiled a list of the most popular digital marketing stories online this week. Enjoy and happy competing, marketers! 67% of smartphone users would rather see advertisements than pay for premium content. A new study revealed that consumers are willing to exchange personal information for free digital content. The percentage is even higher for tablet users: 70%. The most popular content people will view digital ads for is paperback books. How to use content for sales enablement, lead nurturing  and retention. As marketers, we often think of content as simply driving traffic to our site and optimizing SEO. But, that content helps later in the path to purchase by nurturing marketing automation, enabling your sales team to engage further with prospects, and keeping customers informed. Learn how to take content beyond lead generation on the Marketo Blog. The next generation of Chief Marketers will need to take on more than the traditional responsibilities. The Kellogg School of Management launched a new program to help current and prospective CMOs aquire new skills in a world where consumers are empowered to demand more from brands. In the future, successful CMOs must drive top-line growth, anticipate and implement new technologies, and quickly transition into the the executive suite and demonstrate progress. Yahoo’s challenge will be building Tumblr’s advertising business. The biggest news of the week was Yahoo’s $1.1 billion purchase of the blogging site, Tumblr. It seemed that everyone online had an opinion about the aquisition while WordPress saw a massive influx of users transferring their blogs from Tumblr. Regardless, marketers are very excited to advertise on Tumblr, which has a high traffic of the coveted 18-24 year old demographic. The site was on track to generate $100 million in advertising revenue this year before the deal. But, will Yahoo damage the sites credibility? Will Tumblr be fruitful for advertisers, despite that it doesn’t have loads of targetting information like Facebook? Read the L.A. Times analysis of the advertising deal.
about 1 hour ago
2013/05/25 -- Tamar Fraenkel
2013/05/25 -- Tamar Fraenkel
about 1 hour ago
Kyocera Hydro Elite on its way to Verizon -
Kyocera Hydro Elite on its way to Verizon -
about 2 hours ago
Fonts form a major part of any web design and for this reason most of the web designers concentrate on choosing the right font styles. It is possible to take an ordinary design to an extra ordinary level just with the help of efficient a...
Fonts form a major part of any web design and for this reason most of the web designers concentrate on choosing the right font styles. It is possible to take an ordinary design to an extra ordinary level just with the help of efficient and effective typography as it contributes to near about 70-80% of the web design. Despite the fact that there are a few standard font styles which are used by the web designers more often but at times there is a need of different and unique font styles to make the design extraordinary and unique from other designs.
about 2 hours ago
SMS message icon
SMS message icon
about 2 hours ago
Whenever I want to work on some package, I usually clone its git repository, make my changes, then push and upload the Debian package. I don’t keep those repositories around in order to avoid cruft and also to have a 100% clean, up-to-da...
Whenever I want to work on some package, I usually clone its git repository, make my changes, then push and upload the Debian package. I don’t keep those repositories around in order to avoid cruft and also to have a 100% clean, up-to-date setup whenever I start working on something. Everytime I clone such a repository, I struggle with the setup. For example, I usually forget the --pristine-tar flag for gbp-clone. Also, I usually forget to push other branches (working on “debian”, forgetting “upstream”) and, even more often, I forget pushing tags. I spent some time on this and figured out that one can use the following to make --pristine-tar the default: cat >> ~/.gbp.conf Avoiding my other pain points is not so easy apparently, so I wrote a little shell function (only tested with zsh!) which uses debcheckout to get the git URL, gbp-clone to actually clone it and a few git config calls to make me able to just “git push” when I am done and not worry about anything: # Clones the git sources of a Debian package # needs debcheckout from devscripts and gbp-clone from git-buildpackage function d-clone() { local package=$1 if debcheckout --print $package >/dev/null then set -- $(debcheckout --print $package) if [ "$1" != "git" ] then echo "$package does not use git, but $1 instead." return fi echo "cloning $2" gbp-clone $2 || return # Change to the newest git repository cd $(dirname $(ls -1td */.git | head -1)) || return # This tells git to push all branches at once, # i.e. if you changed upstream and debian (after git-import-orig), # both upstream and debian will be pushed when running “git push”. git config push.default matching || return # This tells git to push tags automatically, # so you don’t have to use “git push; git push --tags”. git config --add remote.origin.push "+refs/heads/*:refs/remotes/origin/*" || return git config --add remote.origin.push "+refs/tags/*:refs/tags/*" || return echo "d-clone set up everything successfully." else echo "debcheckout $package failed. Is $package missing Vcs tags?" fi } With that function, starting work on a package becomes as easy as “d-clone golang-doc”.
about 2 hours ago
25 Free Vintage Style Fonts
25 Free Vintage Style Fonts
about 2 hours ago