we're not kids anymore.

tannertan36

Love Begins
PUT YOUR BEARD IN MY MOUTH
Xuebing Du

祝日 / Permanent Vacation

#extradirty
Aqua Utopia|海の底で記憶を紡ぐ

★

ellievsbear
$LAYYYTER

Discoholic 🪩
taylor price
Today's Document

shark vs the universe

Origami Around
almost home

Kaledo Art
Claire Keane
2025 on Tumblr: Trends That Defined the Year

seen from Malaysia
seen from Türkiye

seen from Russia
seen from United States

seen from United States

seen from Malaysia
seen from United States

seen from France

seen from United States
seen from Poland
seen from United States

seen from United Kingdom
seen from Germany

seen from United States

seen from Malaysia

seen from Malaysia
seen from South Korea

seen from Indonesia
seen from Spain
seen from China
@nawtproject
CustomMade design sprint with Google Ventures Design Studio (by DesignStaffBlog)
Wordpress Posts 2 Posts
$projects = p2p_type('pages_to_projects')->set_direction('to')->get_related($post);
$people = p2p_type('projects_to_people')->set_direction('to')->get_related($post);
p2p_distribute_connected($projects->posts, $people->posts, 'people');
foreach($projects->posts as $project){
get_the_title($project)
foreach($project->people as $person){
get_the_title($person)
}
}
This is a way to access nested post to post relationships when using the wordpress posts 2 posts plugin
Issue with Hammer.js on Android 4.X browser
Was having trouble getting multi or single touch drag events to register on Motorola Xoom with Ice Cream Sandwich with Hammer.js.
Solution: needed to disable default browser events with the "prevent_default" option:
var hammer = new Hammer($('#touch-layer').get(0),{prevent_default:true});
One way to add additional context variables to a view in Django
This was a bit of a gotcha. If your /robots.txt url does not return a robots.txt file or a 200 or 404 response then the google bot will be polite and not crawl your site. In wrangling a Django site I had it returning a 500 response -- which should be rectified to return a 404 page -- so my site dropped off the google index. Shame.