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
Run, Don't Walk---This Sucker Is Going Down | |
By David Stockman. Posted On Thursday, January 26th, 2017 | |
The day traders and robo-machines have had their scheduled madcap frolic. They have not only crossed the magic 20,000 marker, but are also making the first few months of 2000, when the dotcom bubble reached it blow-off peak, look tame by comparison. | |
The truth is, the stock market wasn't wrong at 11:30 PM on November 8th when it greeted the suddenly shocking prospect of Donald Trump's victory with a 1,000 point sell-off in the futures market. But it's been dead wrong since then----rising 2,700 points since the wee hours of election night or 16% in the face of overwhelming evidence that the Trump Stimulus/Reflation story is a complete mirage. | |
Indeed, at 2140 on election day, the S&P 500 was already drastically overvalued at 24X reported earnings. Now it stands at 2300 and is truly in the skybox section of history----with its GAAP multiple having inflated to nearly 26X the $89 per share of earnings reported fo |
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
var bittrex = require('./node.bittrex.api.js'); | |
bittrex.options({ | |
'apikey': '', | |
'apisecret': '', | |
'stream': false, | |
'verbose': false, | |
'cleartext': false | |
}); |
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.yuri.java8.time; | |
import org.joda.time.format.DateTimeFormat; | |
import org.joda.time.format.DateTimeFormatter; | |
import java.util.concurrent.ExecutorService; | |
import java.util.concurrent.Executors; | |
/** | |
* Created by yuri.zelikov on 1/11/2016. |
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 me.reader | |
/** | |
* Created by yuri.zelikov on 1/6/2016. | |
*/ | |
case class Reader[C, A](g: C => A) { | |
def apply(c: C) = g(c) | |
def map[B](f: A => B): Reader[C, B] = { c: C => |
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
Verifying that +vega113 is my blockchain ID. https://onename.com/vega113 |
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
#!/bin/bash | |
# | |
# | |
# | |
# Start on runlevels 3, 4 and 5. Start late, kill early. | |
# chkconfig: 345 95 05 | |
# | |
# | |
#!/bin/bash |
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 static String getTitle(WaveId waveId, WaveletId waveletId, WaveMap waveMap, | |
ConversationUtil conversationUtil) { | |
String title = ""; | |
WaveViewData wave = | |
AbstractSearchProviderImpl.buildWaveViewData(waveId, Lists.newArrayList(waveletId), | |
SolrSearchProviderImpl.matchesFunction, waveMap); | |
OpBasedWavelet wavelet = OpBasedWavelet.createReadOnly(wave.getWavelet(waveletId)); | |
if (WaveletBasedConversation.waveletHasConversation(wavelet)) { |
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
implicit class FutureCompanionOps(f: Future.type) extends AnyVal { | |
def userInput(message: String): Future[String] = Future { | |
readLine(message) | |
} | |
} | |
class FutureCompanionOps(f: Future.type) extends AnyVal { | |
def userInput(message: String): Future[String] = Future { | |
readLine(message) |
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 quickcheck | |
import common._ | |
import org.scalacheck._ | |
import Arbitrary._ | |
import Gen._ | |
import Prop._ | |
abstract class QuickCheckHeap extends Properties("Heap") with IntHeap { |
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 recfun | |
import common._ | |
object Main { | |
def main(args: Array[String]) { | |
println("Pascal's Triangle") | |
for (row <- 0 to 10) { | |
for (col <- 0 to row) | |
print(pascal(col, row) + " ") | |
println() |