Apples 2014 product line up announcements were some of the worse kept secrets in the companies history. The leaks were more or less accurate to what we saw revealed.
Two new iPhone models dubbed the iPhone 6 and iPhone 6 Plus (notice the lack of a C variant) and of course the worse kept secret of them all: the iWatch.
I actually switched to a Samsung Galaxy S4 a year or so ago after using an iPhone since the beginning because of lack of control, NFC and the small size of the phone itself. I actually kind of hoped the success of the Galaxy and HTC One would mean Apple finally starts competing and innovating again.
As most developers already know, Google offer a nice list of CDN assets that include jQuery and jQuery UI as well as AngularJS.
Although it isn’t publicly listed on Google’s CDN libraries list located here, separate modules like ngRoute and ngResource are also hosted and can be included. Why Google don’t publicly state this fact beats me.
Please ensure you change the version number to reflect the current version of AngularJS, at the time of writing this it was version 1.2.23.
The web industry is rife with job titles. Front End Ninja, Front End Overlord, Front End Engineer, Front End Developer, I could go on. The two I am focusing on are Front End Engineer and Front End Developer.
Is there are a difference between the two, and if so, what is the difference?
The definition of “engineer” according to Wikipedia is:
An engineer is a professional practitioner of engineering, concerned with applying scientific knowledge, mathematics, and ingenuity to develop solutions for technical, societal and commercial problems. Engineers design materials, structures, and systems while considering the limitations imposed by practicality, regulation, safety, and cost.
Once upon a time Compass was an invaluable value add to any SASS project. Rather than looking up vendor prefixes all of the time or understanding the priority order, you could just include a Compass mixin and away you went. It was a great timesaving tool, but now the time has come to move on.
The one tool that I use nowadays is Autoprefixer. Basically what it will do is go through your CSS and add in vendor prefixes where required. This means you can write standard prefix-free CSS and not have to worry about finding fallback vendor prefixes or different syntax (I’m lookin at you Internet Explorer and Flexbox).
Chances are if you’re a web developer, front-ender, PHP programmer, web expert or whatever your title is, you use Sublime Text Editor and there is also a chance you’re using a single digit percentage of its true power.
This isn’t an overly complex or comprehensive list of shortcuts, just shortcuts I believe every developer should know. Knowing how to select a line or delete an entire line just using your keyboard is invaluable in itself.
Provided nothing is pushed back, the WordPress JSON REST API plugin is being integrated into the WordPress core and is slated for version 4.1.
As WordPress becomes more and more like a PHP application framework, the robustness of WordPress continues to grow. The JSON REST API will be a massive feature that will make creating single page websites and applications a whole lot easier. Being able to fetch a page, archive or single post as JSON and then use that to create fast and lean single page websites will be a welcome addition.
The common mistake that newbies make when using MySQL is using the same username and password for all of their connected applications. Generally, I’ve seen the default “root” user used as the user in an application like WordPress with permissions to modify all databases. This is bad.
Before we proceed, we want to login as the root MySQL user (the super admin). We achieve this by typing: mysql -u root -p – you will be asked for the root user password. Once you are in, this is where the magic happens. We are now logged in as the MySQL super-boss.
I have been writing a lot about Laravel lately and recently I was asked about database table seeding. Chances are you already use the awesome migrations feature, but probably don’t use database seeding. I have seen people using migrations to seed a table, but it’s messy and not exactly ideal. Using the seeding functionality in Laravel, you’ll discover how easy it actually is.
When should I use seeding? I personally use seeding in Laravel quite extensively during the development phase of a web application. Being able to add in mock user accounts, pages and other data for testing purposes is a lot easier than manually doing it every time.
As the web continues to evolve and front-end development continues to become even more complicated, the need to adapt and implement processes for workflow grows immensley.
Photoshop is dead We are well and truly living in the golden age of front-end web development. Photoshop is dying, designers and developers now design on the fly using HTML and CSS. This isn’t to say Photoshop is going away completely overnight, but the transition is well and truly in motion.
In Bootstrap 3, the buttons (well a lot of elements) have a border radius value giving them rounded corners. Now I don’t know about you, but I find rounded corners on buttons horrible.
If you are using the LESS version of Bootstrap, set the following variables:
@border-radius-base: 0px; @border-radius-small: 0px; @border-radius-large: 0px; If you are using Bootstrap SASS port, set the following variables:
$border-radius-base: 0px; $border-radius-small: 0px; $border-radius-large: 0px;