I hereby claim:
- I am derFunk on github.
- I am derfunk (https://keybase.io/derfunk) on keybase.
- I have a public key whose fingerprint is E569 9481 B960 CEA5 BC81 3CE2 81F8 58E2 46A0 4A97
To claim this, I am signing this object:
#!/usr/bin/env node | |
function sleep(ms) { | |
ms = (ms) ? ms : 0; | |
return new Promise(resolve => {setTimeout(resolve, ms);}); | |
} | |
process.on('uncaughtException', (error) => { | |
console.error(error); | |
process.exit(1); | |
}); |
docker-yml() { | |
docker inspect -f $' | |
version: '2.2' | |
services: | |
{{.Name}} | |
image: {{.Config.Image}} | |
entrypoint: {{json .Config.Entrypoint}} | |
command: {{json .Config.Cmd}} | |
environment: {{range .Config.Env}} | |
- {{.}}{{end}} |
I hereby claim:
To claim this, I am signing this object:
using System; | |
using System.Collections.Generic; | |
using System.Reflection; | |
using YamlDotNet.Core.Events; | |
using YamlDotNet.Serialization; | |
namespace Chimera.Unity3DYamlChecker | |
{ | |
class UnityNodeTypeResolver : INodeTypeResolver | |
{ |
require 'formula' | |
class BaculaFd < Formula | |
homepage 'http://www.bacula.org/' | |
# you may exchange this download url to match the correct bacula source code, if Debian once updates it's own package | |
url 'http://downloads.sourceforge.net/project/bacula/z-older-releases/5.2.6/bacula-5.2.6.tar.gz' | |
def install | |
system "./configure", "--prefix=#{prefix}", | |
"--sbindir=#{bin}", | |
"--with-working-dir=#{var}/lib/bacula", |
# !/bin/bash | |
# Copyright (c) 2011 Float Mobile Learning | |
# http://www.floatlearning.com/ | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining | |
# a copy of this software and associated documentation files (the "Software"), | |
# to deal in the Software without restriction, including without limitation | |
# the rights to use, copy, modify, merge, publish, distribute, sublicense, | |
# and/or sell copies of the Software, and to permit persons to whom the |
/** | |
* Checks if the device is using the (still experimental Android Runtime (ART)) | |
* @return Returns true if ART is used on the device. | |
*/ | |
public static boolean isART() | |
{ | |
if (Build.VERSION.SDK_INT < 19) // Before KITKAT, as ART is only available since 4.4.x | |
return false ; | |
try{ |
using System; | |
using System.Text; | |
using NUnit.Framework; | |
using ServiceStack.Plugins.ProtoBuf; | |
using ServiceStack.ServiceClient.Web; | |
using ServiceStack.Text; | |
namespace ServiceStack.WebHost.IntegrationTests.Tests | |
{ | |
[TestFixture] |
package de.chimeraentertainment.tools; | |
import android.content.Context; | |
import android.view.WindowManager; | |
import de.chimeraentertainment.namespace.<<YourMainActivity>>; | |
import android.util.DisplayMetrics; | |
import android.util.Log; | |
public class DeviceInfo { |