Skip to content

Instantly share code, notes, and snippets.

View bvenkatr's full-sized avatar
🏠
Working from home

Venkat bvenkatr

🏠
Working from home
View GitHub Profile
@bvenkatr
bvenkatr / transactions in loopback
Created August 3, 2017 04:58
testing a transaction with natvie sql query and built in ORM methods
'use strict';
let uuid = require("uuid");
/**
* 'use strict';
let uuid = require("uuid");
module.exports = function (Todos) {
Todos.testTransaction = function () {
Todos.beginTransaction(Todos.Transaction.READ_COMMITTED, function (err, tx) {
const {google} = require("googleapis");
const path = require("path");
// const {getCredentials} = require("./GoogleAuthenticator");
// Requiring json file is not working here, as google.auth.getClient accepts file path
// let keyFile = require("./google-service-account-credentials.json");
let keyFile = path.join(__dirname, "google-service-account-credentials.json");
// console.log(keyFile);
let scopes = [
'https://www.googleapis.com/auth/spreadsheets',
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script id="jsbin-javascript">
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<script>
@bvenkatr
bvenkatr / post-merge
Created February 7, 2019 07:31 — forked from sindresorhus/post-merge
git hook to run a command after `git pull` if a specified file was changed.In this example it's used to run `npm install` if package.json changed and `bower install` if `bower.json` changed.Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`.
#!/usr/bin/env bash
# MIT © Sindre Sorhus - sindresorhus.com
# git hook to run a command after `git pull` if a specified file was changed
# Run `chmod +x post-merge` to make it executable then put it into `.git/hooks/`.
changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)"
check_run() {
echo "$changed_files" | grep --quiet "$1" && eval "$2"
#!/usr/bin/env bash
######################################################
#
# https://wiki.bash-hackers.org/howto/getopts_tutorial
# https://sookocheff.com/post/bash/parsing-bash-script-arguments-with-shopts/
######################################################
function help() {
echo -e "Project Initial Setup....\n"
echo -e "Usage: $0 COMMAND [PARAMETERS]..."
@bvenkatr
bvenkatr / webscrapeOfSongs.js
Created July 29, 2019 11:32
scraping Mohammed_Rafi songs
/**
* Get the URL for Rafi's song list that matches with your first letter of your name
* Main songs list url: https://en.wikipedia.org/wiki/List_of_songs_recorded_by_Mohammed_Rafi
* Make a request to get data from the given URL and find the link that is relavent for
* list of songs
*
* @params startLetter - This is the letter to get the link for
* @return URL for list of songs matches with first letter of your name
*/
@bvenkatr
bvenkatr / cloudSettings
Last active October 18, 2021 02:40
Visual Studio Code Settings Sync Gist
{"lastUpload":"2021-10-18T02:40:03.205Z","extensionVersion":"v3.4.3"}
@bvenkatr
bvenkatr / reset bitbucket password
Created December 4, 2019 11:54
To bitreset bitbucket password, useful to enter at the git command line when asked for https urls
https://id.atlassian.com/login/resetpassword?application=bitbucket&continue=https%3A%2F%2Fid.atlassian.com%2Fopenid%2Fv2%2Fop%3Fopenid.sreg.optional%3Dfullname%2Cnickname%2Cemail%26openid.return_to%3Dhttps%3A%2F%2Fbitbucket.org%2Fsocialauth%2Fcomplete%2Fatlassianid%2F%3Fjanrain_nonce%253D2019-12-04T11%25253A46%25253A28ZpvV1ql%26openid.realm%3Dhttps%3A%2F%2Fbitbucket.org%26openid.ns.sreg%3Dhttp%3A%2F%2Fopenid.net%2Fextensions%2Fsreg%2F1.1%26openid.ns.crowdid%3Dhttps%3A%2F%2Fdeveloper.atlassian.com%2Fdisplay%2FCROWDDEV%2FCrowdID%252BOpenID%252Bextensions%2523CrowdIDOpenIDextensions-login-page-parameters%26openid.ns%3Dhttp%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%26openid.mode%3Dcheckid_setup%26openid.identity%3Dhttp%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select%26openid.crowdid.application%3Dbitbucket%26openid.claimed_id%3Dhttp%3A%2F%2Fspecs.openid.net%2Fauth%2F2.0%2Fidentifier_select%26openid.assoc_handle%3D23003747&email=chethan4046%40gmail.com&errorCode&prompt=&tenant=
@bvenkatr
bvenkatr / edx-course-backup.sh
Created December 30, 2019 10:35
Taking edx courses backup
#!/usr/bin/env bash
######################################################
#
# https://wiki.bash-hackers.org/howto/getopts_tutorial
# https://sookocheff.com/post/bash/parsing-bash-script-arguments-with-shopts/
######################################################
function help() {
echo -e "EdX Course Backup Script\n"