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
# Colors (Solarized Dark) | |
colors: | |
# Default colors | |
primary: | |
background: '#002b36' # base03 | |
foreground: '#839496' # base0 | |
# Cursor colors | |
cursor: | |
text: '#002b36' # base03 |
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
FROM python:3.6.6 | |
RUN pip install --upgrade pip && pip install pipenv | |
WORKDIR /app |
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
docker ps -q | xargs docker stats --no-stream |
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
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN | |
apply plugin: 'com.android.application' | |
dependencies { | |
implementation project(':unityLibrary') | |
implementation 'com.android.support:multidex:1.0.1' | |
} | |
android { |
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
// GENERATED BY UNITY. REMOVE THIS COMMENT TO PREVENT OVERWRITING WHEN EXPORTING AGAIN | |
// Android Resolver Repos Start | |
([rootProject] + (rootProject.subprojects as List)).each { | |
ext { | |
it.setProperty("android.useAndroidX", true) | |
it.setProperty("android.enableJetifier", true) | |
} | |
} | |
([rootProject] + (rootProject.subprojects as List)).each { project -> |
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 from 'react'; | |
import { | |
BrowserRouter, | |
Route, | |
Switch, | |
Redirect | |
} from 'react-router-dom'; | |
import Dashboard from './pages/dashboard' |
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.Globalization; | |
public static class FormatNumber | |
{ | |
public static string ToKMB(this decimal num) | |
{ | |
if (num > 999999999 || num < -999999999) | |
{ | |
return num.ToString("0,,,.###B", CultureInfo.InvariantCulture); | |
} |
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 CrystalBlast.Data; | |
namespace CrystalBlast.DebugTools | |
{ | |
using LunarConsolePlugin; | |
[CVarContainer] | |
// ReSharper disable once UnusedMember.Global | |
public static class Variables | |
{ |
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
class Base2D extends hxd.App { | |
var obj : h2d.Object; | |
var tf : h2d.Text; | |
override function init() { | |
// creates a new object and put it at the center of the sceen | |
obj = new h2d.Object(s2d); | |
obj.x = Std.int(s2d.width / 2); | |
obj.y = Std.int(s2d.height / 2); |
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
ngrep -q -W byline port 80 |