When you use docker-compose, logs are not colorized like:
However, you can get colorized logs using really-cute-'cat' solution. Instead of
docker-compose up
using
docker-compose up | cat
sudo rm -fr /Library/Java/JavaVirtualMachines/jdk-9.jdk/ | |
sudo rm -fr /Library/Internet\ Plug-Ins/JavaAppletPlugin.plugin | |
sudo rm -fr /Library/PreferencePanes/JavaControlPanel.prefPane | |
DISM commands to prepare thumbdrive for applying Pre-Staged media: | |
* tested with ADK Win 10 | |
copype amd64 \PEx64 | |
dism /mount-wim /wimfile:\PEx64\media\sources\boot.wim /index:1 /mountdir:\PEx64\mount | |
explorer \PEx64\mount\Windows\System32 | |
- copy/overwrite custom startnet.cmd | |
dism /unmount-wim /mountdir:\PEx64\mount /commit | |
- copy PreStagedMedia.swm, PreStagedMedia2.swm, and PreStagedMedia3.swm to root of thumbdrive. |
#!/usr/bin/python | |
# Author : n0fate | |
# E-Mail [email protected], [email protected] | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 2 of the License, or (at | |
# your option) any later version. |
Product: Sagitta Brutalis 1080 (PN S3480-GTX-1080-2697-128)
Software: Hashcat v3.00-beta-145-g069634a, Nvidia driver 367.18
Accelerator: 8x Nvidia GTX 1080 Founders Edition
brew install docker-machine-driver-xhyve
sudo chown root:wheel
docker run -d --privileged -p 8080:8080 --name=rancher-server rancher/server:latest
var npm = require("npm"); | |
var fs = require("fs-extra"); | |
var chokidar = require("chokidar"); | |
var packagePaths = [ | |
"../mobile-app/node_modules/shared-package/lib", | |
"../web-app/node_modules/shared-package/lib", | |
]; | |
var noop = () => {}; |
[ 0.000000] Linux version 4.6.0-rc3 (kas@kshutemo-desk) (gcc version 5.3.0 (Gentoo 5.3.0 p1.0, pie-0.6.5) ) #37 SMP PREEMPT Mon Apr 11 18:18:13 MSK 2016 | |
[ 0.000000] Command line: BOOT_IMAGE=../vmlinuz dolvm rw root=UUID=dc179bdb-77c0-4166-8d43-f828994c99a0 rootdelay=1 intel_mmu=igfx_off iommu=pt drm.debug=0xe initrd=../initramfs | |
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' | |
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. | |
[ 0.000000] x86/fpu: Using 'eager' FPU context switches. | |
[ 0.000000] e820: BIOS-provided physical RAM map: | |
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable |
import {TranslateLoader} from "ng2-translate/ng2-translate"; | |
import {Observable} from "rxjs/Observable"; | |
import fs = require('fs'); | |
export class TranslateUniversalLoader implements TranslateLoader { | |
constructor(private prefix: string = 'i18n', private suffix: string = '.json') {} | |
/** | |
* Gets the translations from the server | |
* @param lang |
/** | |
* Lodash mixins for combinatorics | |
* by: wassname & visangela | |
* url: https://gist.github.com/wassname/a882ac3981c8e18d2556/edit | |
* lodash contrib issue: https://github.com/node4good/lodash-contrib/issues/47 | |
* lic: same as lodash | |
* Inspired by python itertools: https://docs.python.org/2.7/library/itertools.html | |
* | |
* Usage: | |
* permutations([0,1,2],2) // [[0,1],[0,2],[1,0],[1,2],[2,0],[2,1]] |