create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| // Taken from the commercial iOS PDF framework http://pspdfkit.com. | |
| // Copyright (c) 2014 Peter Steinberger, PSPDFKit GmbH. All rights reserved. | |
| // Licensed under MIT (http://opensource.org/licenses/MIT) | |
| // | |
| // You should only use this in debug builds. It doesn't use private API, but I wouldn't ship it. | |
| // PLEASE DUPE rdar://27192338 (https://openradar.appspot.com/27192338) if you would like to see this in UIKit. | |
| #import <objc/runtime.h> | |
| #import <objc/message.h> |
| { | |
| "title": "Apache logs", | |
| "services": { | |
| "query": { | |
| "list": { | |
| "0": { | |
| "query": "*", | |
| "alias": "", | |
| "color": "#7EB26D", | |
| "id": 0, |
| <powershell> | |
| write-output "Running User Data Script" | |
| write-host "(host) Running User Data Script" | |
| cmd.exe /c net user /add vagrant FooBar@123 | |
| cmd.exe /c net localgroup administrators vagrant /add | |
| Set-ExecutionPolicy -ExecutionPolicy bypass -Force | |
| # RDP |
| filter { | |
| ## WebLogic Server Http Access Log | |
| if [type] == "weblogic-access" { | |
| grok { | |
| match => [ "message", "%{IP:client} - - \[(?<timestamp>%{MONTHDAY}[./-]%{MONTH}[./-]%{YEAR}:%{TIME}\s+%{ISO8601_TIMEZONE})] \"%{WORD:verb} %{URIPATHPARAM:uri}\s+HTTP.+?\" %{NUMBER:status} %{NUMBER:response_time}" ] | |
| } | |
| date { | |
| match => [ "timestamp" , "dd/MMM/yyyy:HH:mm:ss Z" ] | |
| } | |
| } |
| <? | |
| ///////////////////// | |
| // slack2html | |
| // by @levelsio | |
| ///////////////////// | |
| // | |
| ///////////////////// | |
| // WHAT DOES THIS DO? | |
| ///////////////////// | |
| // |
| require 'inifile' | |
| require 'date' | |
| Vagrant.configure("2") do |config| | |
| config.vm.box = "dummy" | |
| config.vm.guest = "windows" | |
| config.vm.boot_timeout = 600 | |
| config.vm.provider :aws do |aws, override| |
| #build us a binary for https://github.com/bitly/oauth2_proxy/pull/277 | |
| FROM golang | |
| WORKDIR /go/src/github.com/bitly | |
| RUN git clone https://github.com/kindlyops/oauth2_proxy.git | |
| WORKDIR /go/src/github.com/bitly/oauth2_proxy | |
| RUN git checkout github-teams-tweaks | |
| RUN go get | |
| # include patch from https://github.com/bitly/oauth2_proxy/pull/295 | |
| RUN curl https://github.com/donaldguy/oauth2_proxy/commit/8965e6b58a3afd8ad9f0f326f91b25253c88d523.patch | git apply --apply - | |
| RUN go build |
| @echo off | |
| REM PeopleTools Object Type export script | |
| REM Find object type numbers | |
| REM Definition Type Selections on PeopleTools 8.54: Application Designer Developer's Guide - Appendix B | |
| REM https://docs.oracle.com/cd/E55244_01/psft/acrobat/pt854tapd-b0714.pdf | |
| REM example - To create a project via application designer containing all PTF objects (104=Test Definitions,105=Test Framework Test Cases) | |
| set pside=E:\apps\psoft\PT85509\bin\client\winx86\pside.exe | |
| set export_path=E:\TEMP\out\export | |
| set log_path=E:\TEMP\out |