View grep_test.sh
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
#!/bin/bash | |
printf 'a\na\nb\nc\nd\nd' > file1 | |
printf 'b\nd' > file2 | |
echo 'Test Case 1, without sort command:' | |
grep -F -f file2 -v file1 | uniq | |
echo 'Test Case 1, with sort command:' | |
grep -F -f file2 -v file1 | sort |uniq |
View blogger-theme.xml
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
<?xml version="1.0" encoding="UTF-8" ?> | |
<!DOCTYPE html> | |
<html b:version='2' class='v2' expr:dir='data:blog.languageDirection' expr:lang='data:blog.locale' xmlns='http://www.w3.org/1999/xhtml' xmlns:b='http://www.google.com/2005/gml/b' xmlns:data='http://www.google.com/2005/gml/data' xmlns:expr='http://www.google.com/2005/gml/expr'> | |
<head> | |
<meta content='width=device-width, initial-scale=1.0' name='viewport'/> | |
<meta content='A travel blog.' name='description'/> | |
<b:include data='blog' name='all-head-content'/> | |
<link href='{{ site.baseurl }}/favicon.png' rel='shortcut icon'/> | |
<link href='https://cdn.rawgit.com/dreampulse/computer-modern-web-font/master/fonts.css' rel='stylesheet' type='text/css'/> | |
<title>travel - Dedunu Dhananjaya</title> |
View aws_rds_unused_lambda_function.py
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
"""RDS-Unused AWS Lambda Function | |
It will go through the REGION's RDS instances and check on CloudWatch for the unused | |
instances and will stop them. | |
""" | |
import json | |
from datetime import datetime, timedelta | |
from multiprocessing import Process, Pipe | |
import boto3 |
View create_privatebin.py
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 script creates a PrivateBin using Python 3. | |
Code is based on https://github.com/r4sas/PBinCLI repository. | |
Thanks a lot @r4sas! | |
Below modules should be installed in the environment. | |
requests | |
base58 | |
pycryptodome | |
""" |
View virtual.sh
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
function virt() { | |
osascript -e "tell application \"Terminal\" to set current settings of front window to settings set \"Ubuntu\"" | |
ssh -Ap 5001 vuser@virtual-server | |
osascript -e "tell application \"Terminal\" to set current settings of front window to settings set \"One Dark\"" | |
} |
View production_bridge.sh
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
function prod() { | |
ssh -A luser@laptop -C 'osascript -e "tell application \"Terminal\" to set current settings of front window to settings set \"Red Alert\""' | |
ssh -A buser@bridge.company.org | |
ssh -A luser@laptop -C 'osascript -e "tell application \"Terminal\" to set current settings of front window to settings set \"Ubuntu\""' | |
} |
View pg_loader_sample.load
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
LOAD DATABASE | |
FROM mysql://root:Password123@mysqldb.example.com/real_db | |
INTO pgsql://postgres:Password456@pgserver101.example.com/adventure_db | |
WITH include drop, create tables | |
SET search_path to 'public' | |
INCLUDING ONLY TABLE NAMES MATCHING 'user' |
View pg_loader_example.load
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
LOAD DATABASE | |
FROM mysql://<mysql_user>:<mysql_password>@<mysql_host>/<source_databases> | |
INTO pgsql://<postgres_user>:<postgres_password>@<postgres_host>/<target_database> | |
WITH INCLUDE DROP, CREATE TABLES | |
SET search_path to 'public' | |
INCLUDING ONLY TABLE NAMES MATCHING 'sample_table' |
View terraform_err.tf
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
Acquiring state lock. This may take a few moments... | |
Error: Error locking state: Error acquiring the state lock: ConditionalCheckFailedException: The conditional request failed | |
status code: 400, request id: L2CH7KK3QCAEHSC1TJ1VLBMNBRVV4CQNSO5AEMVJY66Q9ASUAAJN | |
Lock Info: | |
ID: 21e2b2bb-c123-2383-eece-7a5eaab4f645 | |
Path: s3/path/to/the/state/file | |
Operation: OperationTypePlan | |
Who: username@hostname | |
Version: 0.11.14 |
View current_trx.sql
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
SELECT * | |
FROM information_schema.innodb_trx | |
WHERE trx_mysql_thread_id = CONNECTION_ID()\G |
NewerOlder