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
'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) { |
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
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', |
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
<!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"> |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<script> | |
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 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" |
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 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]..." |
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
/** | |
* 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 | |
*/ |
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
{"lastUpload":"2021-10-18T02:40:03.205Z","extensionVersion":"v3.4.3"} |
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
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= |
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 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" |