Android Studio keyboard shortcuts I use often.
SHIFT + F6
to refactor methods, classes, and variable namesCTRL + O
to override methodsCOMMAND + N
- Generate getter, setter, and constructor method for a class (when in editor pane)
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
for i in `curl https://www.cloudflare.com/ips-v4`; do csf -a $i; done |
// MapAdjust.java | |
// Based on adjust.py | |
// Gatubit <[email protected]> | |
// https://gist.github.com/astrocosa/724526 | |
// Based on adjust.js | |
// Bratliff <[email protected]> | |
// http://www.polyarc.us/adjust.js |
import org.json.JSONArray; | |
import org.json.JSONException; | |
import org.json.JSONObject; | |
import java.util.*; | |
public class JsonHelper { | |
public static Object toJSON(Object object) throws JSONException { | |
if (object instanceof Map) { | |
JSONObject json = new JSONObject(); |
// I needed flatuicolors.com as Sass variables... | |
// In your console, run: | |
$('.color').get().map(function(el) { return "$" + el.classList[1] + ": " + el.getAttribute('data-clipboard-text') + ';' }).join('\r\n'); | |
// Output: | |
// $turquoise: #1abc9c; | |
// $emerland: #2ecc71; | |
// $peter-river: #3498db; | |
// $amethyst: #9b59b6; | |
// $wet-asphalt: #34495e; |
Google Chrome Developers says:
The new WOFF 2.0 Web Font compression format offers a 30% average gain over WOFF 1.0 (up to 50%+ in some cases). WOFF 2.0 is available since Chrome 36 and Opera 23.
Some examples of file size differences: WOFF vs. WOFF2
// -------------------------------------------------------------------------------------- | |
// A More Modern Scale for Web Typography | |
// Based on this article: http://typecast.com/blog/a-more-modern-scale-for-web-typography | |
// -------------------------------------------------------------------------------------- | |
$body-font-size: 1em !default; | |
// Adjusts body typography to be default | |
// for each browser. | |
@mixin reset-body-font-size($font-size: 100%, $size-adjustment: 0.5) { |
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<!-- app color palette --> | |
<color name="primary">@color/indigo_500</color> | |
<color name="primary_light">@color/indigo_100</color> | |
<color name="primary_dark">@color/indigo_700</color> | |
<color name="accent">@color/pink_A200</color> | |
<color name="accent_fallback_light">@color/pink_A100</color> | |
<color name="accent_fallback_dark">@color/pink_A400</color> |
<?xml version="1.0" encoding="utf-8"?> | |
<resources> | |
<!-- google's material design colours from | |
http://www.google.com/design/spec/style/color.html#color-ui-color-palette --> | |
<!--reds--> | |
<color name="md_red_50">#FFEBEE</color> | |
<color name="md_red_100">#FFCDD2</color> | |
<color name="md_red_200">#EF9A9A</color> |