by via Awwwards - Sites of the day
"Mr Branding" is a blog based on RSS for everything related to website branding and website design, it collects its posts from many sites in order to facilitate the updating to the latest technology.
To suggest any source, please contact me: Taha.baba@consultant.com
Sunday, February 12, 2017
Saturday, February 11, 2017
YouTube Mobile Live Streaming: This Week in Social Media
Welcome to our weekly edition of what’s hot in social media news. To help you stay up to date with social media, here are some of the news items that caught our attention. What’s New This Week YouTube Expands Mobile Live Streaming and Launches Super Chat: YouTube rolled out mobile live streaming to “every creator with more [...]
This post YouTube Mobile Live Streaming: This Week in Social Media first appeared on .
- Your Guide to the Social Media Jungle
by Grace Duffy via
Friday, February 10, 2017
12 Wowzer Web Design Trends That Will See A Rise In 2017!
[ This is a content summary only. Visit our website http://ift.tt/1b4YgHQ for full links, other content, and more! ]
by Guest Author via Digital Information World
GridTab – Grid Based Responsive Tabs with jQuery
GridTab is a lightweight jQuery plugin to create grid based responsive tabs.
by via jQuery-Plugins.net RSS Feed
Giveaway: Get a New Logo from 99designs for Free
Exciting news: the SitePoint team has partnered up with 99designs to offer a free Silver level logo contest (usually worth US$499) to one of our loyal readers!
If you’ve been working on your business for a little while — whether it’s an agency, an ecommerce site, software, anything goes — and wish your logo reflected your brand a little bit better, we want to hear from you.
99designs offers creators access to the best designers from around the world, and you’ll be in good company: heard of Docker? StackOverflow? Flippa?
They all worked with top-tier designers on 99designs.
What you’ll get
One reader will receive a voucher for a 99designs logo contest. Here’s what happens next:
- Complete a brief on 99designs to help designers understand your brand
- Designers battle it out to submit the perfect design, while you offer real-time feedback to guide them in the right direction
- Seven days later, you’ll have a competitive selection of logos to choose from. If you can’t pick a winner, let the SitePoint community decide your fate with a poll.
That’s it!
You’ll have a brand-new logo that reflects your brand and communicates your story, completely free of charge.
To help show it off, we’ll feature your company in an exclusive article on SitePoint.
How to Enter and Eligibility
Enter by leaving a comment on this post (make sure to use an email address where we can contact you!) telling us about your company and why we should give you a new logo.
We’ll pick a winner at random by Friday February 17 (Pacific standard time) and contact them via email.
This giveaway is open to US residents only. We know that means many of you can't enter, and we wish it could be otherwise! Giveaway laws are unfortunately very complicated.
See official rules for contest details
[special]Can’t wait until then to get started? Live outside the US and want to get 99designs' best deal? [/special]
[special]99designs are offering SitePoint readers their best deal ever: a $99 upgrade to any design contest, to make sure you reach the most elite designers on the platform. [/special]
Continue reading %Giveaway: Get a New Logo from 99designs for Free%
by Ophelie Lechat via SitePoint
Taming the Snoo: Playing with the Reddit API
Reddit is a social networking, entertainment, and news website where the content is almost exclusively submitted by users. According to this report, in February 2016 Reddit had 36 million user accounts, 231 million unique monthly visits, and 11.464 active communities. A recent study also showed that 80% of Reddit users get their news from there.
Reddit also offers its own API. This way, we can use all the information available on Reddit to enrich our own websites or build our own Reddit clients. In this article, we will tackle some basic Reddit API usage with PHP.
The Reddit API
The Reddit API is extensive and very well documented, from private methods that are only accessible through authentication (Reddit uses OAuth2), to public methods that we can use with a basic HTTP call.
In this article, we'll first focus on the search method. While this is a public call (it does not require authentication), it is also one of the most powerful ones, since it allows us to access all of the history of Reddit posts in every subreddit.
The search method
The search method is available through a basic HTTP request and has a lot of properties. Looking at the documentation, we can see that it supports the HTTP GET method and is available through
http://ift.tt/2kQDSbz
We also have the following arguments available: after, before, count, include_facets, limit, q, restrict_sr, show, sort, sr_detail, syntax, t, and type. The table below can be found in the documentation, and shows every argument with more detail.
| Argument | Receives |
|---|---|
| after | full name of a thing |
| before | full name of a thing |
| count | a positive integer (default: 0) |
| include_facets | boolean value |
| limit | the maximum number of items desired (default: 25, maximum: 100) |
| q | a string no longer than 512 characters |
| restrict_sr | boolean value |
| show | (optional) the string all |
| sort | one of (relevance, hot, top, new, comments) |
| sr_detail | (optional) expand subreddits |
| syntax | one of (cloudsearch, lucene, plain) |
| t | one of (hour, day, week, month, year, all) |
| type | (optional) comma-delimited list of result types (sr, link) |
We will focus on the q, limit, sort and restrict_sr arguments.
The q argument is the most important one and indicates the query for which we will search the subreddit in question. An example of usage would be:
http://ift.tt/2l1OPZY
This particular call will search for the oop expression in the php subreddit. If you try to make the call using your browser, you will see the results (just copy and paste the link in your browser).
The limit argument limits the number of posts that the returned list will have. An example of usage would be:
http://ift.tt/2kQpjEF
This particular search would return the first 5 results of searching for the oop expression in the php subreddit.
Continue reading %Taming the Snoo: Playing with the Reddit API%
by Claudio Ribeiro via SitePoint