Skip to content

Instantly share code, notes, and snippets.

View dabroek's full-sized avatar

Matthijs Dabroek dabroek

  • Amsterdam Area, The Netherlands
View GitHub Profile
@dabroek
dabroek / percentage-of-random-records.sql
Last active February 9, 2021 23:04
Select a percentage of random records from a table with MySQL
SELECT * FROM table WHERE RAND() <= 0.1; -- randomized 10%
@dabroek
dabroek / nav-silent.js
Created December 18, 2014 15:40
Ionic (1.0.0-beta.14) silent navigation directive to prevent pushing to the history when navigating
(function () {
'use strict';
angular.module('ionic')
// Add the nav silent directive for navigating without adding to the history.
.directive('navSilent', [
'$ionicHistory',
'$state',
'$location',