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
{ | |
"α": { | |
"prefix": "\\alpha", | |
"body": ["α"], | |
"description": "Greek letter alpha" | |
}, | |
"β": { | |
"prefix": "\\beta", | |
"body": ["β"], | |
"description": "Greek letter beta" |
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 Bacon from 'baconjs'; | |
import fetch from 'node-fetch'; | |
const makeRequest = () => fetch('https://wtfismyip.com/text'); | |
const createThrottler = (onValue, maxConcurrencyInWindow = 5, windowLength = 5000) => { | |
const bus = new Bacon.Bus(); | |
bus.flatMapWithConcurrencyLimit(maxConcurrencyInWindow, fn => ( | |
Bacon.fromPromise(fn()).concat(Bacon.later(windowLength).filter(false)) | |
)).onValue(onValue); |
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
db/schema.rb merge=railsschema |
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
Compiled from "BenchmarkTestSuite.java" | |
public class org.nx.pkg4.BenchmarkTestSuite implements java.lang.Runnable { | |
static {}; | |
Code: | |
0: ldc #1 // class org/nx/pkg4/BenchmarkTestSuite | |
2: invokevirtual #14 // Method java/lang/Class.getName:()Ljava/lang/String; | |
5: invokestatic #20 // Method java/util/logging/Logger.getLogger:(Ljava/lang/String;)Ljava/util/logging/Logger; | |
8: putstatic #26 // Field LOGGER:Ljava/util/logging/Logger; | |
11: return |
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
Compiled from "BenchmarkTestSuite.java" | |
public class org.nx.pkg4.BenchmarkTestSuite implements java.lang.Runnable { | |
static {}; | |
Code: | |
0: ldc #1 // class org/nx/pkg4/BenchmarkTestSuite | |
2: invokevirtual #14 // Method java/lang/Class.getName:()Ljava/lang/String; | |
5: invokestatic #20 // Method java/util/logging/Logger.getLogger:(Ljava/lang/String;)Ljava/util/logging/Logger; | |
8: putstatic #26 // Field LOGGER:Ljava/util/logging/Logger; | |
11: return |
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
using System; | |
using System.Collections.Generic; | |
using System.Threading; | |
using System.Threading.Tasks; | |
using System.Net.Sockets; | |
using System.Net; | |
namespace Irc | |
{ | |
public class MessageReceivedEventArgs: EventArgs |
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
sdadsaasdasdsadasd |
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
fatal: Not a git repository (or any of the parent directories): .git | |
fatal: Not a git repository (or any of the parent directories): .git | |
fatal: Not a git repository (or any of the parent directories): .git | |
ERROR: Branch origin/master not found. | |
ERROR: There has been an error while checking out branch master. | |
Halting the installation. | |
ERROR: There has been an error while trying to fetch the source. | |
Halting the installation. |
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 org.mcs.common | |
import akka.actor._ | |
import akka.routing._ | |
trait CPUBoundThreadPool | |
extends DefaultActorPool | |
with SmallestMailboxSelector | |
with BoundedCapacityStrategy | |
with MailboxPressureCapacitator |
NewerOlder