Spells Trouble does not collect, store, or share any personal information.
All purchases are handled securely through Apple’s App Store.
We do not include third-party advertising, analytics, or tracking.
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
| Privacy Policy for Spells Trouble | |
| Spells Trouble does not collect, store, or share any personal information. | |
| All purchases are handled securely through Apple’s App Store. | |
| We do not include third-party advertising, analytics, or tracking. |
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
| // Place your key bindings in this file to override the defaultsauto[] | |
| [ | |
| { | |
| "key": "cmd+e", | |
| "command": "workbench.action.quickOpen" | |
| }, | |
| { | |
| "key": "cmd+p", | |
| "command": "-workbench.action.quickOpen" | |
| }, |
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
| package tylerwalker.io.dsl | |
| import android.support.test.InstrumentationRegistry | |
| import android.support.test.runner.AndroidJUnit4 | |
| import android.text.SpannableStringBuilder | |
| import org.junit.Test | |
| import org.junit.runner.RunWith | |
| import org.junit.Assert.* |
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
| package tylerwalker.io.dsl | |
| import android.graphics.Color | |
| import android.text.Spannable | |
| import android.text.SpannableStringBuilder | |
| import android.text.style.ForegroundColorSpan | |
| class Atom(val content: SpannableStringBuilder) { | |
| operator fun String.unaryPlus() { content.append(this) } |
Apply a custom filter for jQuery DataTables. In this instance we are filtering by date.
A Pen by Supakit Kiatrungrit (Nat) on CodePen.
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
| # CROmetrics Engineering Application | |
| Thanks for your interest in working with us! To apply: | |
| - Create a "new gist" (link in github header once you're logged in) with the Raw Text of this .md file (**do not fork this gist**) | |
| - Answer the following questions in the spaces provided | |
| - Send an email to [email protected] and [email protected] that includes: | |
| - A paragraph that tells us a little about yourself and why you are interested in this job | |
| - A link to your Gist | |
| - Your desired hourly rate and general availability |
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="row"> | |
| <div class="box" id="box1"></div> | |
| <div class="box" id="box2"></div> | |
| </div> | |
| <div class="row"> | |
| <div class="box" id="box3"></div> | |
| <div class="box" id="box4"></div> | |
| </div> | |
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
| const LFUcache = (capacity) => { | |
| let box = {} | |
| box.cache = {} | |
| for (var i = 0; i<capacity; i++) { | |
| box[i] = []; | |
| } | |
| box.put = function (k, v) { | |
| if (box.cache.keys.length <capacity) { | |
| if (!(k in cache)) { | |
| var item = [k,v, 0] |
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 isSubsequence = function(str, sub) { | |
| currentIndex = 0; | |
| for (var i = 0; i<str.length; i++) { | |
| if (str[i] === sub[currentIndex]) { | |
| currentIndex +=1; | |
| } | |
| } | |
| return currentIndex >= sub.length ? true : false; | |
| } |
NewerOlder