Skip to content

Instantly share code, notes, and snippets.

View ts050's full-sized avatar

V ts050

  • Hyderabad
View GitHub Profile
sscm get /DB_Objects/sql/COPY_TEST1.sql '-bFlexDeploy-EBusiness Suite' -f -d/u01/app/flexdeploy/work/401736/24155/temp/SUPPORT '-pEnterpriseApplications/Ebusiness Suite/SUPPORT_HID_TOP' -v3 -i- -r -zusirvsprdttp01.ad.global:4900 -yS-HID-FlxDpy-SCM0001:<PASSWORD>
sscm get /XML_Publisher/XXHIDPORR.rtf -f -d/u01/app/flexdeploy/work/401736/24520/temp/SUPPORT '-pEnterpriseApplications/Ebusiness Suite/SUPPORT_HID_TOP' -v2 -i- -r -zusirvsprdttp01.ad.global:4900 -yS-HID-FlxDpy-SCM0001:<PASSWORD>
@ts050
ts050 / Terraform-setup.sh
Created September 24, 2019 05:20
Terraform setup
#!/bin/bash
declare -A ARCH_MAPPING=( ["arm"]="arm"
["aarch64_be"]="arm"
["aarch64"]="arm"
["i386"]="386"
["i686"]="386"
["x86_64"]="amd64")
OS="linux"
ARCH=$(uname -m)
// XPath CheatSheet
// To test XPath in your Chrome Debugger: $x('/html/body')
// http://www.jittuu.com/2012/2/14/Testing-XPath-In-Chrome/
// 0. XPath Examples.
// More: http://xpath.alephzarro.com/content/cheatsheet.html
'//hr[@class="edge" and position()=1]' // every first hr of 'edge' class
@ts050
ts050 / Deploy_Oracle.sh
Created July 1, 2019 04:50 — forked from samisalkosuo/Deploy_Oracle.sh
Oracle 12c silent installation files, including response files. Start installation executing Deploy_Oracle.sh. See also here: http://sami.salkosuo.net/silent-service/.
#!/bin/sh
#Set up Linux and oracle
echo "Deploying Oracle..."
if [[ "$1" != "" ]] ; then
DEFAULT_PWD=$1
echo "Using user specified default password"
else
DEFAULT_PWD=passW0RD
#!/bin/bash
if [ ! -f /etc/centos-release ]; then
echo "The current OS is not a CentOS"
exit 0
fi
if [ "$EUID" -ne 0 ]; then
echo "Please run as root"
exit 0
@ts050
ts050 / Matrix.md
Created May 23, 2018 13:05 — forked from nadavrot/Matrix.md
Efficient matrix multiplication

High-Performance Matrix Multiplication

This is a short post that explains how to write a high-performance matrix multiplication program on modern processors. In this tutorial I will use a single core of the Skylake-client CPU with AVX2, but the principles in this post also apply to other processors with different instruction sets (such as AVX512).

Intro

Matrix multiplication is a mathematical operation that defines the product of