This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import {tap} from 'rxjs/operators'; | |
export function rxjsDebug<T>(context: string) { | |
return tap<T>( | |
v => { | |
console.log(`next(${context})`, v); | |
}, | |
e => { | |
console.log(`error(${context})`, e); | |
}, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This grub.cfg file was created by Lance http://www.pendrivelinux.com | |
# Suggested Entries and the suggestor, if available, will also be noted. | |
set timeout=10 | |
set default=0 | |
set pager=1 | |
## Gentoo things | |
function load_video { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
zend_extension=/usr/lib64/php5.3/lib/extensions/no-debug-non-zts-20090626/xdebug.so | |
xdebug.auto_trace="0" | |
xdebug.trace_output_dir="/tmp" | |
xdebug.trace_output_name="trace.%c" | |
xdebug.trace_format="0" | |
xdebug.trace_options="0" | |
xdebug.collect_includes="1" | |
xdebug.collect_params="0" | |
xdebug.collect_return="0" | |
xdebug.collect_vars="0" |