SQL: Find duplicates
Description To find duplicate entries in your database Example SELECT a.firstname, a.lastname, a.address FROM list a INNER JOIN list b ON a.address = b.address WHERE a.id b.id
Description To find duplicate entries in your database Example SELECT a.firstname, a.lastname, a.address FROM list a INNER JOIN list b ON a.address = b.address WHERE a.id b.id
Description A directive to validate a field quickly Preview Image Validation Options Required Email Number – 0.00 Date – yyyy-mm-dd Time – hh:mm HTML Javascript .directive(‘validateAs’, function () { var link = function (scope, element, attrs, ngModel) { var validateAsTypes … Continued
Description Alternates between a basic text input and actual Bootstrap UI date picker on click to reduce watchers on a page with multiple date pickers Dependencies AngularJS Bootstrap Bootstrap UI Preview Image HTML Javascript /** * Date Picker Directive * … Continued
Here are a few pointers on understanding and using bootstrap 3 classes. When to use the classes container and row? container or container-fluid is a container of row elements. container-fluid will span the full width of the screen row elements are containers of … Continued
https://www.airpair.com/angularjs/posts/top-10-mistakes-angularjs-developers-make AngularJS is one of the most popular Javascript frameworks available today. One of AngularJS’s goals is to simplify the development process which makes it great for prototyping small apps, but its power allows scaling to full featured client side … Continued
Summary: You can change your API to include additional parameters to limit the scope of data returned by your application. You could add limit and offset parameters to fetch just a little part. myapi.co.uk/messages?limit=10&offset=20 Another way to decrease the payload would … Continued
http://stackoverflow.com/questions/25909167/angularjs-how-to-check-for-unique-inputs-and-if-there-is-a-duplicate-mark-both Problem: a user needs to enter input into text areas created by ng-repeat. If the user enters a value that has already been entered both the new and existing values should be validated as false. If one of … Continued
Shutdown your Mac Insert memory stick with new OS X files Start up the mac and hold down alt Choose Disk Util – Run disk util and format drive (erase main drive) – Partition new drive (partition 1: Macintosh HD … Continued
Controllers AngularJS controllers is a function that adds additional functionality to the scope of the view. It sets up an initial state and adds custom behavior to the scope object. [NOTE: best-practice to name our controllers as [Name]Controller, rather than [Name]Ctrl.] app.controller(‘RowController’, … Continued
Getting started with CleverStack Prerequisites cleverstack-cli depends on NPM, GruntJS and Bower. $npm install bower -g $npm install grunt-cli -g *Note: In windows, these commands are best executed in a cygwin terminal interface such as git bash 1. Install … Continued