ArchivesPosts Tagged ‘Programming’

10Dec

JQuery is often used in websites to manipulate the CSS attributes of an HTML element upon the users request. For example, if a user wants to increase the size of the font immediately so that they can read your page, or you may just want to change up the CSS on the fly to make your page stand out a little more. All these things can be done in JQuery using the css() function and css manipulation techniques. Let’s get started by creating a basic page with a link and a paragraph with some links in it like so…Continue Reading

31Oct

Often when writing JQuery code(especially for plugins) there are times when you need to execute the same block of code multiple times. Instead of writing them all out individually and making our code really terrible process wise, we can use functions and function calls to call the same block of code over and over.Continue Reading

03Jul

1. Apple Developer Tools – These are just a no-brainer here. There is a huge arsenal of apps that come standard with every mac that absolutely EVERY developer that is developing for mac os x needs. Xcode, Dashcode, Instruments, Interface Builder, etc. There are a ton more to check out if you haven’t already, and Continue Reading

04Apr

As some of you may know I am an open source advocate. The ability to modify and change the source code of your application to make it work the way you want to is a huge plus. With Microsoft being one of many companies that keeps it’s doors closed when it comes to it’s source code, it makes it extremely difficult to maintain a trustworthy relationship between customers and developers. Continue Reading