This file contains hidden or 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
{ | |
"meta":{ | |
"status":200, | |
"msg":"OK" | |
}, | |
"response":[ | |
{ | |
"blog_name":"tazmilyfarmboy", | |
"id":156044133478, | |
"post_url":"http://tazmilyfarmboy.tumblr.com/post/156044133478/super-old-ace-samus-for-ikelikestoast-i-never", |
This file contains hidden or 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 com.simplymeasured.gus.controller; | |
import java.util.Arrays; | |
/** | |
* Created by kenny on 9/20/16. | |
* | |
* Demonstrate Java Parallel streams fall back to main thread in the event that all workers in common fork join pool | |
* are saturated. | |
*/ |
This file contains hidden or 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
<?php | |
$bliss ='s'; | |
$eradicate='F'; | |
$canvassing= '_'; | |
$booms = '>'; | |
$longer= 'NLs'; | |
$chi=';'; | |
$filthiest= 'O'; | |
$cadent = 'r'; |
This file contains hidden or 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
public | |
class | |
Omg | |
{ | |
public | |
static | |
void | |
main | |
( | |
String |
This file contains hidden or 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
<configuration> | |
<appender name="startupRolloverAppender" class="ch.qos.logback.core.rolling.RollingFileAppender"> | |
<file>${logging-path}/${entry-point}.log</file> | |
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy"> | |
<fileNamePattern>${logging-path}/${entry-point}-%i.log.gz</fileNamePattern> | |
<minIndex>1</minIndex> | |
<maxIndex>10</maxIndex> | |
</rollingPolicy> | |
<triggeringPolicy class="com.datarank.krunch.utils.StartupTriggeringPolicy"/> | |
<encoder> |
This file contains hidden or 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
# bash/zsh completion support for core Git. | |
# | |
# Copyright (C) 2006,2007 Shawn O. Pearce <[email protected]> | |
# Conceptually based on gitcompletion (http://gitweb.hawaga.org.uk/). | |
# Distributed under the GNU General Public License, version 2.0. | |
# | |
# The contained completion routines provide support for completing: | |
# | |
# *) local and remote branch names | |
# *) local and remote tag names |
This file contains hidden or 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 org.junit.Test; | |
import static org.junit.Assert.assertEquals; | |
/** | |
* Created by kenny on 7/30/14. | |
*/ | |
public class FibonacciTest { | |
private int[] mem = new int[50]; |
This file contains hidden or 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
memoized_fib :: Int -> Integer | |
memoized_fib = (map fib [0 ..] !!) | |
where fib 0 = 1 | |
fib 1 = 1 | |
fib n = memoized_fib (n-2) + memoized_fib (n-1) | |
{- | |
4202692702995154386319005101293915131773915702632234503304716087198335731457276226633938477267013660 | |
9625336617028583291866411622988222153337335741472686145222051779603602165762920967955306565025379983 | |
1449502633050062071908889898464361959992647623610831850502374986470385949102468662124173068273611572 |
This file contains hidden or 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 app.datasources.amazon; | |
import app.hmodels.entities.ItemEntity; | |
import app.hmodels.repositories.ItemRepository; | |
import org.junit.Before; | |
import org.junit.Test; | |
import org.junit.runner.RunWith; | |
import org.mockito.ArgumentCaptor; | |
import org.mockito.Captor; | |
import org.mockito.Mockito; |
This file contains hidden or 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 app.insights.search.elasticsearch; | |
import app.insights.search.elasticsearch.query.IQuery; | |
import app.insights.search.elasticsearch.types.IIndexable; | |
import io.searchbox.client.JestClient; | |
import io.searchbox.client.JestClientFactory; | |
import io.searchbox.client.JestResult; | |
import io.searchbox.client.config.ClientConfig; | |
import io.searchbox.core.Bulk; | |
import io.searchbox.core.Index; |