Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex
import ... | |
@NgModule({ | |
... | |
providers: [ TitleService ], | |
}) | |
export class AppModule { | |
constructor(titleService: TitleService) { | |
titleService.init(); | |
} |
Note
to active Office without crack, just follow https://github.com/WindowsAddict/IDM-Activation-Script,
you wiil only need to run
irm https://massgrave.dev/ias | iex
const data = ( state, action ) => { | |
switch (action.type) { | |
case 'SEARCH_VIDEO': { | |
let results = []; | |
if (action.payload.query) { | |
const categories = state.data.categories | |
categories.map(category => { | |
let tempResults = category.playlist.filter(item => { | |
return item.author.toLowerCase().includes(action.payload.query.toLowerCase()) | |
}) |
// This can probably be simplified somehow. Not sure why I need to add it in the component to init the service. | |
import { Component, OnInit } from '@angular/core'; | |
import {TitleService} from "./@core/utils/title.service"; | |
@Component({...}) | |
export class AppComponent implements OnInit { | |
constructor(private titleService: TitleService) {...} |
.next | |
out |
FROM php:5.6-fpm-alpine | |
RUN apk update && apk add autoconf openssl-dev g++ make && \ | |
pecl install mongo && \ | |
docker-php-ext-enable mongo && \ | |
apk del --purge autoconf openssl-dev g++ make |
var gulp = require('gulp'); | |
var gulpif = require('gulp-if'); | |
var sourcemaps = require('gulp-sourcemaps'); | |
var util = require('util'); | |
var source = require('vinyl-source-stream'); | |
var buffer = require('vinyl-buffer'); | |
var watchify = require('watchify'); | |
var browserify = require('browserify'); | |
var browserSync = require('browser-sync'); | |
var babelify = require('babelify'); |
As configured in my dotfiles.
start new:
tmux
start new with session name:
Prereq:
apt-get install zsh
apt-get install git-core
Getting zsh to work in ubuntu is weird, since sh
does not understand the source
command. So, you do this to install zsh
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh