View LogController.kt
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
typealias LogElement = Triple<String, Int, String?> | |
object LogController { | |
private var flush = BehaviorSubject.create<Long>() | |
private var flushCompleted = BehaviorSubject.create<Long>() | |
private var LOG_LEVELS = arrayOf("", "", "VERBOSE", | |
"DEBUG", | |
"INFO", |
View SampleBubbleNotification.kt
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
Notify.with(context) | |
// Defines the content of the Notification | |
.content { | |
title = "New dessert menu" | |
text = "The Cheesecake Factory has a new dessert for you to try!" | |
} | |
// Bubblize the Notfication! | |
.bubblize { | |
// Create bubble intent | |
val target = Intent(context, BubbleActivity::class.java) |
View AndroidMainfest.xml
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
<?xml version="1.0" encoding="utf-8"?> | |
<manifest ...> | |
<application | |
...> | |
<activity | |
android:name=".BubbleActivity" | |
... | |
<!-- Add the three lines below to the activity being shown --> |
View BubbleActivity.kt
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 BubbleActivity : AppCompatActivity() { | |
override fun onCreate(savedInstanceState: Bundle?) { | |
super.onCreate(savedInstanceState) | |
setContentView(R.layout.activity_bubble) | |
} | |
} |
View slack-dark.css
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
/* | |
Copyright 2017 Bryan Keller (https://github.com/widget-) | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software |
View boost.rb
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 Boost < Formula | |
desc "Collection of portable C++ source libraries" | |
homepage "https://www.boost.org/" | |
url "https://dl.bintray.com/boostorg/release/1.65.1/source/boost_1_65_1.tar.bz2" | |
sha256 "9807a5d16566c57fd74fb522764e0b134a8bbe6b6e8967b83afefd30dcd3be81" | |
revision 1 | |
head "https://github.com/boostorg/boost.git" | |
bottle do | |
cellar :any |
View insights-privacy-policy.html
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
<h5>Updated: Feb 17th 2019.</h5> | |
<h6><a href="https://gist.github.com/Karn/5c43ca0479613e1f17dd1ee7cbdcd97e/revisions">Changelog</a></h6> | |
<p>We (the developer(s) of Insights) are serious about privacy. We want to make sure that we are transparent and open about the way we use your data to make your experience better.</p> | |
<p>This document is our Privacy Policy. It describes what information we collect from you and how we use it. Our Privacy Policy applies to the entire website at <a href="http://karn.io/insights">karn.io/insights</a>, the <a href="http://karn.io/insights">mobile application</a>, and all other services Insights provides. It covers account information - which is information we can link to you personally (with consent). This includes data like your username or mobile device’s unique identifier.</p> | |
<p>As with the nature of technology, Insights reserves the right to update this Privacy Policy to reflect changes in the law, our data use & collection, the features of our services, or advan |
View insights-faq.html
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
<h5>Updated: Feb 15th 2019.</h5> | |
<h6><a href="https://gist.github.com/Karn/0c86ef7ce85feba161d15d3c14a27a10/revisions">Changelog</a></h6> | |
<p>Account security is very important. We want to make sure that we are transparent and open about the way we use your data to make your experience better.</p> | |
<p>The privacy policy is available <a href="/insights/privacy">here</a></p> | |
<p>As always, you can get in touch by email at <a href="mailto:hello@karn.io">hello@karn.io</a> with any questions you may have.</p> | |
| |
<p><i>1. How does login work?</i></p> | |
<p>Insights uses your credentials to authenticate with Instagram the same way that the official application does. However, in some cases, we may default to an alternate method of logging you in which can sometimes result in an email notifying you of a login being sent to the email associated with the account.</p> | |
<p>If you recieve an email, it should indicate your current device and your location as well as date of login (you may need to convert this to your timezone) |
View dynamic_abi_version_code.gradle
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
// Sourced from https://developer.android.com/studio/build/gradle-tips.html#configure-dynamic-version-codes | |
// Project level build.gradle | |
buildscript { | |
// ... | |
// Needs to start at 1 since 0 is the universal apk. | |
ext.versionCodes = ['armeabi-v7a': 1, 'arm64-v8a': 2] | |
// ... | |
} |
View tumblr-base.html
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
<html> | |
<head> | |
<title>My personal site</title> | |
<style> | |
/* Make HTML bearable. */ | |
body { | |
margin: 2rem; | |
font-family: sans-serif; | |
} |
NewerOlder