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 groupByFrequency = (acc, x) => ({ ...acc, [x]: (acc[x] || 0) + 1 }) | |
const sortFrequency = (a, b) => ( | |
b[1] === a[1] | |
? (b[0] < a[0] ? 1 : -1) // Sort same frequent words alphabetical | |
: (b[1] > a[1] ? 1 : -1) // Sort frequency from highest to lowest | |
) | |
function topKFrequent(words: string[], k: number): string[] { | |
return Object.entries(words.reduce(groupByFrequency, {})) | |
.sort(sortFrequency) |
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
package blinktrade; | |
import java.net.URI; | |
import java.util.Arrays; | |
import java.util.stream.Collectors; | |
import java.lang.reflect.Field; | |
import java.lang.Math; | |
import org.java_websocket.WebSocketImpl; |
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 'fiber' | |
require 'singleton' | |
require 'em-synchrony' | |
require 'eventmachine' | |
class Scheduler | |
include Singleton | |
def initialize | |
@fibers = {} |
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
" Notes { | |
" Ben Hayden, Scott Blevins, Matt Thompson, et al. Public Domain. | |
" https://github.com/IntuitiveWebSolutions/VimConf | |
"} | |
" Basics { | |
set nocompatible " explicitly get out of vi-compatible mode | |
syntax on | |
if has('vim_starting') | |
set runtimepath+=~/.vim/bundle/neobundle.vim/ |
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 compose = (...args) => (...factoryArgs) => { | |
return R.reduce((acc, f) => R.merge(f(...factoryArgs), acc), {}, args) | |
} |
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
package main | |
import ( | |
"encoding/json" | |
"fmt" | |
"io/ioutil" | |
"net/http" | |
"os" | |
"strconv" | |
"strings" |
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
(import os) | |
(import pytesseract) | |
(import [PIL [Image]]) | |
(defclass PDFHelper [] | |
(defn --init-- [self dir] | |
"Constructor" | |
(setv self.dir dir) | |
(setv self.images (self.read-dir)) | |
(self.parse-images) |
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
import React, { Component } from 'react' | |
import { | |
Text, | |
View, | |
ScrollView, | |
Dimensions, | |
StyleSheet, | |
TouchableNativeFeedback, | |
} from 'react-native' |
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 props = { | |
a: true, | |
b: true, | |
} | |
R.whereEq(props, { | |
a: true, | |
b: true, | |
}) // => true |
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 BlinkTradeWS = require('blinktrade').BlinkTradeWS; | |
var blinktrade = new BlinkTradeWS(); | |
blinktrade.connect().then(function() { | |
return blinktrade.login({ username: 'rodrigo', password: 'abc12345' }); | |
}).then(function(logged) { | |
console.log(logged); | |
}).catch(function(err) { | |
console.log(err); |
NewerOlder