almost home
art blog(derogatory)

blake kathryn
taylor price
noise dept.

Kiana Khansmith
dirt enthusiast
No title available
Jules of Nature
Acquired Stardust
🪼
Peter Solarz

oozey mess

tannertan36
Lint Roller? I Barely Know Her

No title available
hello vonnie

JBB: An Artblog!

ellievsbear
I'd rather be in outer space 🛸
seen from Indonesia

seen from United Kingdom
seen from Netherlands

seen from Malaysia

seen from Malaysia

seen from United States

seen from Türkiye
seen from United States

seen from Norway
seen from Chile
seen from Australia

seen from Canada
seen from United States

seen from United States

seen from Türkiye

seen from Türkiye
seen from United States

seen from India
seen from United Kingdom

seen from United States
@nerdjournal
The latest from the Campaign Monitor blog.
(via Multiple File Uploads With Paperclip (Screencast) | Emersonlackey.com)
Moving all my 'Nerd Journal' posts to jiggabits.tumblr.com
... To document all my work in one place. All 'nerd journal' notes will be tagged as such. I'll keep this alive for future reference, though.
Visit jiggabits.tumblr.com
A tool for looking up a user's numeric Instagram ID.
.htaccess is a configuration file for use on web servers running the Apache Web Server software. When a .htaccess file is placed in a directory which is in turn 'loaded via the Apache Web Server', then the .htaccess file is detected and executed by the Apache Web Server software. These .htaccess files can be used to alter the configuration of the Apache Web Server software to enable/disable additional functionality and features that the Apache Web Server software has to off...
(via Download iOS 7 icons | Icon2s | Search over 10,000 free PNG icons, icon search engine, image resizer, image to icon tool)
produces key: value, key: value array
Intro to Objective-C
Here are a few key ideas about Objective-C that I've become expose
.h - public .m - private
Examples of instantiating: PlayViewController *nameOfController
@property (nonatomic, strong) Class *Object
@end
Command - Click takes you to where a class is defined
Console.log: NSLog('string here', parameter);
call an obeject's method: [objectName sayHello]
Defining a method: - (void) sayHello: (NSString *)name
Calling a public method: [objectName sayHello:@"MichaelJackson"]
Why do you say (void)? If you do nothing with the returned stuff
self is almost like this %@ - append/concatenate stuff
Define a delegate in interface files
@interface PianoViewController()<PianoViewControllerDelegate> {}
Take business classes. Thicken your skin. Develop your own unique style as if you were creating a language, with all the nouns and verbs and adjectives and gerunds and articles and participles and conjunctions. Don’t undervalue yourself. If you aren’t good with people, find an agent. If you aren’t…