Skip to content

Instantly share code, notes, and snippets.

@olore
olore / ruby_pwned.rb
Created March 11, 2019 20:10
Have I Been Pwned, ruby style
#!/usr/bin/env ruby
require 'net/http'
require 'digest'
url = 'https://api.pwnedpasswords.com/range'
input = ARGV[0] ? ARGV : ARGF.read.split
input.each do |pw|
@olore
olore / cloudSettings
Created September 14, 2018 18:15
Visual Studio Code Settings Sync Gist
{"lastUpload":"2018-09-14T18:15:52.424Z","extensionVersion":"v3.1.2"}
@olore
olore / webpack.config.js
Last active August 22, 2019 05:46
webpack step 1 - refactor
var webpack = require('webpack');
var StringReplacePlugin = require("string-replace-webpack-plugin");
module.exports = {
output: {
filename: 'build/static/app/[name]'
},
entry: {
@olore
olore / gist:94f3eb7233eb32184011
Created April 2, 2015 20:20
what i do - before
if (Math.floor(moment.duration(expectedLogoutTime - +(new Date())).asSeconds()) <= 0) {
logger.info('timeout service - openDialog called but past logout time');
sessionStoreService.ensureSessionIsValid();
return $q.reject();
}
@olore
olore / gist:98e8f19db2936a5a92e1
Created April 2, 2015 20:18
what i do - after
if (dateHasPassed(expectedLogoutDate)) {
logger.info('timeout service - openDialog called but past logout time');
sessionStoreService.ensureSessionIsValid();
return $q.reject();
}
function dateHasPassed(date) {
return moment().isAfter(moment(date));
}
@olore
olore / .vimrc
Created May 30, 2014 10:55
my vimrc
"Suppress persistent highlighting of searched terms"
set nohlsearch
set nocompatible
set backspace=indent,eol,start
set ruler
let mapleader = ","
set tabstop=2 shiftwidth=2 expandtab
@olore
olore / alls_you_gotta_do
Last active December 18, 2015 16:29
AngularJS 1.1.x + Cordova
# This is how I got AngularJS 1.1.x and Cordova working together
#
sudo npm install -g grunt cordova
cordova create angular-app
cd angular-app
cordova platform add android # create android files
cordova ripple android # see the hello world phonegap application
@olore
olore / gist:5731268
Created June 7, 2013 18:16
trying to do string concatenation with UTF-8 (arabic in this case) characters
# encoding: utf-8
# See http://stackoverflow.com/questions/16989935/ruby-concat-strings-with-utf-8-characters-results-in-strange-ordering
arabic = "أَبْجَدِيَّة عَ"
puts "A #{arabic} end " + " Goodbye " #This is OK because it starts with A
puts "#{arabic} end " + " Goodbye " #" end" is displayed first :(
@olore
olore / config.yml
Created September 8, 2011 02:32
Find the price of the cheapest room at a "Value Resort" in Disney World
#Specify a "Value" resort to get prices for, or "any" to find the cheapest
resort: Pop Century
#resort: any
#Specify dates to search for. Format: MM/DD/YYYY
dates:
- arrival: 11/29/2011
departure: 12/03/2011
- arrival: 11/30/2011
@olore
olore / client.html
Created July 26, 2011 19:06
node client/server using socket.io
<html>
<body>
<div id="status"></div>
<br /> <br /> <br />
<div id="msg"></div>
</body>
<script src="http://localhost:4444/socket.io/socket.io.js"></script>
<script>
var socket = io.connect('http://localhost:4444');