- Amex Card:
^3[47][0-9]{13}$
- BCGlobal:
^(6541|6556)[0-9]{12}$
- Carte Blanche Card:
^389[0-9]{11}$
- Diners Club Card:
^3(?:0[0-5]|[68][0-9])[0-9]{11}$
- Discover Card:
^65[4-9][0-9]{13}|64[4-9][0-9]{13}|6011[0-9]{12}|(622(?:12[6-9]|1[3-9][0-9]|[2-8][0-9][0-9]|9[01][0-9]|92[0-5])[0-9]{10})$
- Insta Payment Card:
^63[7-9][0-9]{13}$
- JCB Card:
^(?:2131|1800|35\d{3})\d{11}$
- KoreanLocalCard:
^9[0-9]{15}$
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
tiktok.com | |
tiktokv.com | |
tiktoktv.com | |
tiktokcn.com | |
tiktokcdn.com | |
musical.ly |
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
0xcF2a48e8a200E830C2Bc36CC2368f2BBec9c4d37 |
I hereby claim:
- I am fred on github.
- I am frederico (https://keybase.io/frederico) on keybase.
- I have a public key ASCKg-KYS58Ub3P-nBUGn9Sg-6JWPFqWxOegmzG8ed_FeAo
To claim this, I am signing this object:
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
# Ruby Script to Get messages from SQS containing information of Cloudtrail json.gz file in S3 | |
# everytime a cloudtrail event occurs, AWS will upload the log in json.gz format to S3 and notify in SQS | |
# we use SQS to get new log events and download from S3, combine all in one json file for bulk importing to Elasticserach | |
# ready to be used with Kibana | |
# Run this houly or every 30 minutes. | |
require 'aws-sdk' | |
require 'json' |
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
require 'aws-sdk' | |
require 'json' | |
require 'uri' | |
# Your current cloudtrail S3 preffix | |
BASE="AWSLogs/xxxxxxxxxxxxxxx/CloudTrail/ap-southeast-1" | |
BUCKET_NAME="bucket_name" | |
AWS_ACCESS_ID = 'XXXXXXXXXXXXXX' | |
AWS_SECRET_KEY = 'xxxxxxxxxxxxxxxxxxxxx' |
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
#!/usr/bin/env ruby | |
# how to run: | |
# ruby ./omise_export.rb | |
# Works on Mac OS X | |
# It will generate (and overwrite) a csv file with name full_transactions.csv | |
require 'date' | |
require 'json' | |
# Update your valid Live Secret Key, this is only a test key: |
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
#!/usr/bin/env ruby | |
# how to run: | |
# ruby ./omise_export.rb | |
require 'date' | |
require 'json' | |
# CHANGE the next 4 variables | |
# just be aware of timezone overlapping between months, Omise will parse dates as UTC time | |
skey = 'your secret key' |
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
# ~/.config/fish/config.fish | |
# for mate and subl | |
set PATH $HOME/bin $PATH | |
set PATH /usr/local/bin /usr/local/sbin $PATH | |
# RBENV | |
set PATH $HOME/.rbenv/bin $PATH | |
set PATH $HOME/.rbenv/shims $PATH | |
rbenv rehash >/dev/null ^&1 |
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
_bundler_complete() | |
{ | |
if [[ ! `which bundle` ]]; then | |
return | |
fi | |
local cur prev commands | |
commands="help install update package exec config check list show outdated console open viz init gem platform" | |
cur="${COMP_WORDS[COMP_CWORD]}" | |
prev="${COMP_WORDS[COMP_CWORD-1]}" |
NewerOlder