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
/* Based on https://gist.github.com/rishabhmhjn/7028079 */ | |
function HashtagLinky($filter, $sce) { | |
'ngInject' | |
return function(text, target) { | |
if (!text) return text; | |
var replacedText = $filter('linky')(text, target); | |
var targetAttr = ""; | |
if (angular.isDefined(target)) { |
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 OnScrollToBottom() { | |
'ngInject'; | |
let spacing = 40; | |
return { | |
restrict: 'A', | |
link: function (scope, element, attrs) { | |
const fn = attrs.onScrollToBottom, |
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
# Example Dockerfile | |
FROM hello-world |
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
var dreamsPath = DriveApp.getFolderById('THE-ACTUAL-DRIVE-FOLDER-ID-CAN-BE-COPIED-FROM-URL'); | |
var budgetTemplateFile = DriveApp.getFileById('THE-ACTUAL-DRIVE-BUDGET-FILE-ID-CAN-BE-COPIED-FROM-URL'); | |
var budgetNewFileName = 'Budget - '; | |
function createDream(dreamerEmail, dreamId, dreamName) { | |
Logger.log("Got called with " + dreamerEmail +" " + dreamId + " " + dreamName); | |
var newFolder = createFolder_(dreamerEmail, dreamId,dreamName); | |
var templateFiles = copyTemplateFilesToFolder_(newFolder, dreamerEmail, dreamName); | |
var result = {}; | |
result['id'] = newFolder.getUrl(); |
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 'googleauth/stores/file_token_store' | |
require 'googleauth/token_store' | |
# Implementation of google auth storage backed by ENV variable | |
# Gal Bracha | |
class EnvTokenStore < Google::Auth::TokenStore | |
@token = '' | |
def initialize(options = {}) |
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
/* | |
* Based on Fisher-Yates (Aka Knuth) shuffle | |
* https://github.com/Daplie/knuth-shuffle | |
*/ | |
Array.prototype.shuffle = function() { | |
let currentIndex = this.length, temporaryValue, randomIndex; | |
// While there remain elements to shuffle... | |
while (0 !== currentIndex) { |
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
/** | |
* Generate Google Docs based on a template document and data incoming from a Google Spreadsheet | |
* | |
* License: MIT | |
* | |
* Copyright 2013 Mikko Ohtamaa, http://opensourcehacker.com | |
* | |
* Modified by Gal Bracha for http://dreams.midburnerot.com | |
* This is the source file from which we generate the Safety file template | |
* https://docs.google.com/document/d/1jTb-7Y3ApVchQwqfw7CcKstBNAt8-rmwtLMYU4oi2jk/edit?usp=sharing |
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
#ifndef _WIN32_WINNT | |
# define _WIN32_WINNT 0x500 | |
#endif | |
#include "Winuser.h" | |
#include "windef.h" | |
class ofxMouse | |
{ | |
public: | |
static enum MouseEventFlags |
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
/** | |
* Write a description of class BusArrival here. | |
* | |
* @author (your name) | |
* @version (a version number or a date) | |
*/ | |
/*# Joni: no API documentation */ | |
public class BusArrival | |
{ |
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
/* | |
Simple WhatsApp Web Spam Bot Originally written by Pablode. Modified by Gal Bracha. | |
Use with love <3. Do not act reckless. | |
==================================================================================== | |
DISCLAIMER: I do not take any responsibility for any damage caused with this script. | |
WhatsApp might be able identify script users if this becomes a problem. Do only use | |
this if you are aware of the consquences. | |
==================================================================================== | |
Usage: Copy all of this script (Ctrl+A, Ctrl+C). Add a new Bookmark. In the URL section, | |
write "javascript:" and paste (Ctrl+V) this script. Visit WhatsApp Web, select your |