I hereby claim:
- I am vsaw on github.
- I am vsaw (https://keybase.io/vsaw) on keybase.
- I have a public key whose fingerprint is 7ACA 2C01 7BB1 97C0 6C77 F77D FA20 0470 B801 7CCC
To claim this, I am signing this object:
#!/bin/sh | |
# If Millisecond precision is required for the output uncomment the following | |
# line | |
# | |
# awk '{ system("date +%T.%N"); print strftime("%Y-%m-%dT%H:%M:%S"), $0; fflush(); }' | |
# Regular second precision timestamps | |
awk '{ print strftime("%Y-%m-%dT%H:%M:%S"), $0; fflush(); }' |
I hereby claim:
To claim this, I am signing this object:
I recently received a spam/phising Mail to my personal account. If anyone's interested in investigating here's what I got from it.
The original mail contained the following contents
Dear Client,
This e-mail is pursuant to your contract with Foreman&Clark Ltd. for our services date November 15, 2015 for the amount of $5,282. Your failure to pay as per the December 1, 2015 invoice equals to the breach of our contract.
Please, acknowledge the receipt of this e-mail within three business days. Please, make your payment to the corresponding account, stated in the invoice attached no later than January 2, 2016.
#!/bin/bash | |
# | |
# Clean up old, unused Linux Kernel version in Ubuntu | |
# =================================================== | |
# | |
# My system keeps running out of space on the boot partition as Ubuntu Linux | |
# does not remove unused Kernel version on a Kernel update. This small script | |
# will remove them for you. It's insipired by | |
# http://tuxtweaks.com/2010/10/remove-old-kernels-in-ubuntu-with-one-command/ | |
# |
import { Injectable, Inject, Optional, NgZone } from '@angular/core'; | |
import { CanActivate, ActivatedRouteSnapshot, RouterStateSnapshot, Router } from '@angular/router'; | |
import { Observable, of, pipe, UnaryFunction } from 'rxjs'; | |
import { map, switchMap, take, observeOn, shareReplay } from 'rxjs/operators' | |
import { User } from 'firebase/app'; | |
import { ɵAngularFireSchedulers, FirebaseOptions, FirebaseAppConfig, FIREBASE_OPTIONS, FIREBASE_APP_NAME, ɵfirebaseAppFactory, ɵZoneScheduler } from '@angular/fire'; | |
export type AuthPipeGenerator = (next: ActivatedRouteSnapshot, state: RouterStateSnapshot) => AuthPipe; | |
export type AuthPipe = UnaryFunction<Observable<User | null>, Observable<boolean | any[]>>; |