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
/*loading dots plugin https://css-tricks.com/loading-dots-plugin/*/ | |
(function ($) { | |
$.Loadingdotdotdot = function (el, options) { | |
var base = this; | |
base.$el = $(el); | |
base.$el.data("Loadingdotdotdot", base); |
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
// https://tc39.github.io/ecma262/#sec-array.prototype.find | |
if (!Array.prototype.find) { | |
Object.defineProperty(Array.prototype, 'find', { | |
value: function(predicate) { | |
// 1. Let O be ? ToObject(this value). | |
if (this == null) { | |
throw new TypeError('"this" is null or not defined'); | |
} | |
var o = Object(this); |
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
.rect-auto, | |
.c100.p51 .slice, | |
.c100.p52 .slice, | |
.c100.p53 .slice, | |
.c100.p54 .slice, | |
.c100.p55 .slice, | |
.c100.p56 .slice, | |
.c100.p57 .slice, | |
.c100.p58 .slice, | |
.c100.p59 .slice, |
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
;;TODO: reminders | |
;; - install helm | |
;; - rtags - C/C++ indexer - https://github.com/Andersbakken/rtags | |
;; - company mode? - text completion - https://company-mode.github.io/ | |
;; - modularize emacs config to keep it organized: | |
;; - put it on a git repo in github | |
;; - make sure it works on other machines just by pasting it | |
;; reminders end |
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
cbuffer cbPerFrame | |
{ | |
float3 gEyePosW; | |
float gFogStart; | |
float gFogRange; | |
float4 gFogColor; | |
}; | |
cbuffer cbPerObject |