type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
type below:
brew update
brew install redis
To have launchd start redis now and restart at login:
brew services start redis
| var debounceTimeoutHolder = {}; | |
| function debounceSimple(id, wait, cb) { | |
| if (debounceTimeoutHolder[id]) { | |
| clearTimeout(debounceTimeoutHolder[id]); | |
| } | |
| debounceTimeoutHolder[id] = setTimeout(function() { | |
| cb(); | |
| }, wait); | |
| } |
| function configureOpenRenderedLinksInDefaultBrowser() { | |
| const aAll = document.querySelectorAll("a.link-view"); | |
| if (aAll && aAll.length) { | |
| aAll.forEach(function(a) { | |
| a.addEventListener("click", function(event) { | |
| if (event.target) { | |
| event.preventDefault(); | |
| let link = event.target.href; | |
| require("electron").shell.openExternal(link); | |
| } |
| [{"state":{"name":"Abia State","id":1,"locals":[{"name":"Aba South","id":1},{"name":"Arochukwu","id":2},{"name":"Bende","id":3},{"name":"Ikwuano","id":4},{"name":"Isiala Ngwa North","id":5},{"name":"Isiala Ngwa South","id":6},{"name":"Isuikwuato","id":7},{"name":"Obi Ngwa","id":8},{"name":"Ohafia","id":9},{"name":"Osisioma","id":10},{"name":"Ugwunagbo","id":11},{"name":"Ukwa East","id":12},{"name":"Ukwa West","id":13},{"name":"Umuahia North","id":14},{"name":"Umuahia South","id":15},{"name":"Umu Nneochi","id":16}]}},{"state":{"name":"Adamawa State","id":2,"locals":[{"name":"Fufure","id":1},{"name":"Ganye","id":2},{"name":"Gayuk","id":3},{"name":"Gombi","id":4},{"name":"Grie","id":5},{"name":"Hong","id":6},{"name":"Jada","id":7},{"name":"Lamurde","id":8},{"name":"Madagali","id":9},{"name":"Maiha","id":10},{"name":"Mayo Belwa","id":11},{"name":"Michika","id":12},{"name":"Mubi North","id":13},{"name":"Mubi South","id":14},{"name":"Numan","id":15},{"name":"Shelleng","id":16},{"name":"Song","id":17},{"name":"Toung |
| angular | |
| .module('app') | |
| .factory('AuthInterceptor', AuthInterceptor); | |
| function AuthInterceptor($injector, $q) { | |
| var $state; | |
| var service = { | |
| responseError: responseError | |
| }; |
| using Ninject.Modules; | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Reflection; | |
| using System.Web; | |
| using System.Web.Http; | |
| using System.Web.Http.Dependencies; | |
| // A small Library to configure Ninject (A Dependency Injection Library) with a WebAPI Application. |
| using System; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Text; | |
| using System.Web; | |
| using System.Web.Mvc; | |
| using System.Web.Routing; | |
| namespace System.Web.Mvc | |
| { |