- Turn on Advanced project settings
- Navigate to
Rendering | Textures
- Turn on
Lossless Compression | Force PNG
- Set
Canvas Textures | Default Texture Filter
toNearest
Functions available in this module:
- reflection.(*)_of_type[foo]() // Extract details from type or struct
- reflection.(*)_of(bar) // Extract details from type instance
(*) can be `methods`, `fields` or `attributes`.
Each function returns a map[string]T
where T
can be FunctionData
, FieldData
or StructAttribute
respectively.
-
Go to https://cachedview.com/
-
Navigate to the deleted repo, e.g. https://webcache.googleusercontent.com/search?q=cache:https://github.com/apcera/termtables
-
Copy latest known commit sha1 signature
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 android.content.BroadcastReceiver; | |
import android.content.Intent; | |
import android.content.IntentFilter; | |
import android.content.SharedPreferences; | |
import android.graphics.Canvas; | |
import android.graphics.Point; | |
import android.preference.PreferenceManager; | |
import android.service.wallpaper.WallpaperService; | |
import android.content.Context; | |
import android.support.v4.content.LocalBroadcastManager; |
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
The below code is not valid C code - a preprocessor must be used: | |
``` | |
CHAKRA_API | |
JsParseModuleSource( | |
_In_ JsModuleRecord requestModule, | |
_In_ JsSourceContext sourceContext, | |
_In_ BYTE* script, | |
_In_ unsigned int scriptLength, | |
_In_ JsParseModuleSourceFlags sourceFlag, |
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 DEFAULT_MAX_LISTENERS = 12 | |
function error(message, ...args){ | |
console.error.apply(console, [message].concat(args)) | |
console.trace() | |
} | |
class EventEmitter { | |
constructor(){ | |
this._maxListeners = DEFAULT_MAX_LISTENERS |
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
<div class="pages"> | |
<div data-page="home" class="page current"> | |
<h1>Home</h1> | |
<button data-to="key-service-offerings">Go to key services</button> | |
<button data-to="industries-served">industries-served</button> | |
<button data-to="technology-solutions">technology-solutions</button> | |
<button data-to="home">home</button> | |
</div> | |
<div data-page="key-service-offerings" class="page right"> | |
<h1>Key service</h1> |
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
// From Ben Alman: | |
Array.apply(null, {length: 5}).map(Function.prototype.call, Number); | |
// ...Which is way cooler then my original: | |
Array.apply(null, new Array(5)).map(function(v, k) { return k; }); | |