The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
ng-class="tadaONchange" <---use this on an item | |
<button ng-click="tadaOnChange()"class="button">tada</button> | |
$rootScope.tadaOnChange = function(){ | |
console.log("$scope.tadaONchange: ",$scope.tadaONchange); | |
$scope.tadaONchange = "tada"; | |
$timeout(function () { |
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
promiseExmple(){ | |
return new Promise((resolve, reject) => { | |
setTimeout(()=>{reject('its been 5 sec')},5000) | |
}); | |
} | |
/* ------------- */ | |
this.user.promiseExmple().then((result)=>{ | |
console.log("result: ",result) | |
}).catch((err)=>{ | |
console.log("promise failed: ",err) |
'use strict'; | |
// simple express server | |
var express = require('express'); | |
var app = express(); | |
var router = express.Router(); | |
app.use(express.static('public')); | |
app.get('/', function(req, res) { | |
// res.sendfile('./public/index.html'); |
{% comment %} | |
{% assign productsPerPage = settings.collection-products-number-of-rows | times: settings.collection-products-per-row %} | |
{% endcomment %} | |
{% assign productsPerPage = 370 %} | |
{% paginate collection.products by productsPerPage %} | |
{% assign platforms = 0 %} | |
{% if settings.share-widget-facebook %}{% assign platforms = platforms | plus: 1 %}{% endif %} | |
{% if settings.share-widget-twitter %}{% assign platforms = platforms | plus: 1 %}{% endif %} | |
{% if settings.share-widget-pinterest %}{% assign platforms = platforms | plus: 1 %}{% endif %} | |
{% if settings.share-widget-fancy %}{% assign platforms = platforms | plus: 1 %}{% endif %} |
import * as mongoose from 'mongoose'; | |
export let Schema = mongoose.Schema; | |
export let ObjectId = mongoose.Schema.Types.ObjectId; | |
export let Mixed = mongoose.Schema.Types.Mixed; | |
export interface IHeroModel extends mongoose.Document { | |
name: string; | |
power: string; |
Garrett, | |
Don’t shoot the messenger. This is a preliminary list of change requests I have received so far… | |
Let me know what you can to address and what will require additional costs. Some of this we might be able to do if you show us how to navigate, I tried to put this together in a way similar to navigating the site. A lot of it is UI/UX stuff. | |
Logo: Insert our old Used-Radios.com logo so we don’t have to rebrand all of our marketing documentation. |
Terminal
remove file rm -rf [folder] find mdfind -onlyin [file]
alias Create an alias •