Imagine you could rebuild SoundCloud. But you’d be restricted to only three actions a user could do. Which actions would you choose and how would you design that very simple SoundCloud app. (App could mean a native app for iOS or Android or a web app for Desktop or Mobile.)
As a deliverable we would expect a concept that is outlining your choices and your thoughts for the simplified app. We want to get an idea of how you think.
Your ideas should be illustrated with screens that go beyond wireframes. We should be able to get a good idea of your interaction and visual skills. As a plus you’d build a prototype.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Find parent category for related posts | |
global $post; | |
$category = get_the_category(); | |
$cat_tree = get_category_parents($category[0]->term_id, FALSE, ':', TRUE); | |
$top_cat = split(':',$cat_tree); | |
$parent = $top_cat[0]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Problem - The variables in the location object change frequently | |
var lat = results[0].geometry.location.Xx; | |
var lng = results[0].geometry.location.Xx; | |
// Solution - Use the lat() and lng() methods instead | |
var lat = results[0].geometry.location.lat(); | |
var lng = results[0].geometry.location.lng(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var random_interval = 0; | |
var textArray = ['home','office','school','hotel','gym','daycare', "doctor's office"]; | |
$(".random").hover( | |
function () { | |
random_interval = setInterval(function(){ | |
var randomIndex = Math.floor(Math.random() * textArray.length); | |
var randomElement = textArray[randomIndex]; | |
$('.random').text(randomElement); | |
}, 300); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var userAgent = navigator.userAgent, | |
uaCheck = { | |
ios: userAgent.match(/(iPhone|iPod|iPad)/), | |
ipad: userAgent.match(/(iPad)/), | |
iphone: userAgent.match(/(iPhone)/), | |
blackberry: userAgent.match(/BlackBerry/), | |
android: userAgent.match(/Android/) | |
}; | |
// Example |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var timeout; | |
function hide() { | |
timeout = setTimeout(function () { | |
$(".tooltip").css('margin-bottom', '-160px'); | |
}); | |
} | |
$(".button").mouseover(function () { | |
clearTimeout(timeout); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% css_path = sitemap.resources.select { |p| p.source_file.match(/all[.]css$/) }.first %> | |
<style type="text/css"> | |
<%= css_path.render %> | |
</style> |
Teehan + Lax's new website — They decided to exclude their portfolio and services page for a good reason. Read more about it on their blog
Hessian by Ben Pieratt — An interesting approach to corporate identity design. The inverse has been taught for years and it is refreshing to see someone question the status quo.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get '/style.css' do | |
content_type 'text/css', :charset => 'utf-8' | |
scss :style | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var i = 0; | |
var f = 'F', | |
u = 'U', | |
c = 'C', | |
k = 'K'; | |
setInterval(function(){ | |
console.log(f + u + c + k); |
OlderNewer