RxJS 5 Operators By Example
A complete list of RxJS 5 operators with easy to understand explanations and runnable examples.
#!/usr/env python | |
############################################################################################################### | |
## [Title]: linuxprivchecker.py -- a Linux Privilege Escalation Check Script | |
## [Author]: Mike Czumak (T_v3rn1x) -- @SecuritySift | |
##------------------------------------------------------------------------------------------------------------- | |
## [Details]: | |
## This script is intended to be executed locally on a Linux box to enumerate basic system info and | |
## search for common privilege escalation vectors such as world writable files, misconfigurations, clear-text | |
## passwords and applicable exploits. |
# coding=utf8 | |
# the above tag defines encoding for this document and is for Python 2.x compatibility | |
# See it in action https://regex101.com/r/ObowxD/5 | |
import re | |
regex = r""" | |
(?xm) | |
(?:\s|^) | |
([-+]*(?:\d+\.\d*|\.?\d+)(?:[eE][-+]?\d+)?) |
/** | |
* The MIT License (MIT) | |
* | |
* Copyright (c) 2015 Smac89 | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and | |
* associated documentation files (the "Software"), to deal in the Software without restriction, | |
* including without limitation the rights to use, copy, modify, merge, publish, distribute, | |
* sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is | |
* furnished to do so, subject to the following conditions: |
const CopyWebpackPlugin = require('copy-webpack-plugin'); | |
const path = require('path'); | |
const PATHS = { | |
src: path.join(__dirname, 'src'), //absolute path to RepoDir/src | |
dist: path.join(__dirname, 'dist') //absolute path to RepoDir/dist | |
} | |
module.exports = { | |
entry: { | |
//Webpack will automatically resolve it to RepoDir/src/js/index.js (if file name is not specified) |
scala> val myRegex = """Foo=([0-9]+) Bar=([A-Z]+)""".r | |
myRegex: scala.util.matching.Regex = Foo=([0-9]+) Bar=([A-Z]+) | |
scala> "Foo=123 Bar=ABC" match { | |
| case myRegex(foo, bar) => | |
| println("foobar looks like %s-%s".format(foo,bar)) | |
| case _ => println("not a match") | |
| } | |
foobar looks like 123-ABC |
# Change YOUR_TOKEN to your prerender token | |
# Change http://example.com (at the end of the last RewriteRule) to your website url | |
<IfModule mod_headers.c> | |
RequestHeader set X-Prerender-Token "YOUR_TOKEN" | |
</IfModule> | |
<IfModule mod_rewrite.c> | |
RewriteEngine On |
A complete list of RxJS 5 operators with easy to understand explanations and runnable examples.
This is not a getting started guide, just notes to myself. Due to my limited knowledge there could be mistakes and better ways to do things. I have configured aurutils
to the best of my knowledge after reading the manpages and forums. Please refer to aurutils(7) manpages for installation and configuration.
Reference: aurutils(7)
aurutils
Install the aurutils
using the normal AUR package installation procedure. Until I found aurutils
, I used to create a separate directory ~/aur/
for all AUR packages.
from BaseHTTPServer import BaseHTTPRequestHandler | |
import urlparse, json | |
class GetHandler(BaseHTTPRequestHandler): | |
def do_GET(self): | |
parsed_path = urlparse.urlparse(self.path) | |
message = '\n'.join([ | |
'CLIENT VALUES:', | |
'client_address=%s (%s)' % (self.client_address, |
sudo add-apt-repository ppa:ubuntu-toolchain-r/test | |
sudo apt-get update | |
sudo apt-get install gcc-5 g++-5 | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5 |