- HTTP triggers (routes) -> API gateway
- Time triggers (timers) -> Scheduled Events
- message queue triggers -> SQS
This file contains hidden or 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
| def measure_palindrome(prefix,postfix): | |
| i=0 | |
| while i<len(prefix) and i<len(postfix): | |
| if prefix[-i-1]!=postfix[i]: | |
| break | |
| i+=1 | |
| return i | |
| def longest_palindrome(s): | |
| longest="" |
This file contains hidden or 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 fetch from 'node-fetch' | |
| import * as crypto from 'crypto' | |
| let sha256 = (x: Buffer): Buffer => | |
| crypto.createHash('sha256').update(x).digest() | |
| interface UTXO_IN { | |
| sequence: number | |
| witness: string | |
| script: string |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <link rel="stylesheet" href="http://cmx.io/v/0.1/cmx.css"/> | |
| <script src="http://cmx.io/v/0.1/cmx.js"></script> | |
| <body> | |
| <scene id="scene1"> | |
| <label t="translate(0,346)"> | |
| <tspan x="0" y="0em">Try Comix</tspan> | |
| </label> |
This file contains hidden or 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
| class Greeter { | |
| greeting: string; | |
| constructor(message: string) { | |
| this.greeting = message; | |
| } | |
| greet() { | |
| return "Hello, " + this.greeting; | |
| } | |
| } |
https://gist.github.com/olasd/9841772 rtmp://a.rtmp.youtube.com/live2/9gk0-rugc-zs5e-b1m5
All are from Cisco official documents:
- How to Assign Privilege Levels with TACACS+ and RADIUS
- Migration Guide for the Cisco Secure Access Control System 5.3
- The security model of Lantech switches is rather simple. Each user falls into either one of the following of permissions.
- read-only: allow to view current settings but changing settings is disallowed.
- read-write: both viewing/changing settings are allowed.
- route
- webpack & npm
- https://github.com/vuejs/awesome-vue#component-collections
- Richness of UI controls
- theme
- mobile display support
as title
https://github.com/golang/crypto/tree/master/ssh/terminal looks great
please run it with
package main
import (
"fmt"
"golang.org/x/crypto/ssh/terminal"