A (more) complete cheatsheet for Arel, including NamedFunction functions, raw SQL and window functions.
posts = Arel::Table.new(:posts)
posts = Post.arel_table # ActiveRecord
var queryParams = window.location.search.substr(1).split('&').reduce(function (qs, query) { | |
var chunks = query.split('='); | |
var key = chunks[0]; | |
var value = decodeURIComponent(chunks[1] || ''); | |
var valueLower = value.trim().toLowerCase(); | |
if (valueLower === 'true' || value === 'false') { | |
value = Boolean(value); | |
} else if (!isNaN(Number(value))) { | |
value = Number(value); | |
} |
/** | |
* Targetting iPhone X Series of Smartphones | |
* | |
*/ | |
$iphone-x-main-nav-height: 80px; | |
$iphone-x-main-nav-padding: calc(#{$iphone-x-main-nav-height} / 2); | |
$iphone-x-header-height: $header-height; | |
$iphone-x-height-offset: $iphone-x-main-nav-height + $iphone-x-header-height; |
wsl --set-default-version 2
in windows command line, so that all future WSL machine will use WSL2.Here is a high level overview for what you need to do to get most of an Android environment setup and maintained.
Here the SDK is under /usr/local/share/android-sdk
because I may switch to a different Catalina user in the future, but it works fine under /Users/<your_user>/Library/Android/sdk
as well.
See for brew, python3 and NodeJS on nvm see gist https://gist.github.com/agrcrobles/3d945b165871c355b6f169c317958e3e
buildscript { | |
repositories { | |
jcenter() | |
maven { | |
url "https://plugins.gradle.org/m2/" | |
} | |
// for android gradle plugin 3 | |
google() | |
} | |
dependencies { |
package com.enlighthq.mobile.http; | |
import android.os.Build; | |
import java.io.IOException; | |
import java.util.Locale; | |
import okhttp3.Interceptor; | |
import okhttp3.Request; | |
import okhttp3.Response; |
$(document).ready(function() { | |
var mobile, | |
w = $(window), | |
breakpoint = 640, | |
sw = document.documentElement.clientWidth, | |
sh = document.documentElement.clientHeight; | |
w.on('resize orientationchange', function() { | |
sw = document.documentElement.clientWidth; |
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,address,big,cite,code,del,em,img,ins,q,s,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,dialog,figure,footer,header,nav,section{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}:focus{outline:0}ins{text-decoration:none}del{text-decoration:line-through}table{border-collapse:collapse;border-spacing:0} | |
html{height:100%;margin-bottom:1px;} /* always show scroll bar */ | |
/* =GLOBAL ELEMENTS | |
-------------------------------------------------------------- | |
Vertical Rhythm: 18px vertical grid | |
*/ | |
body { | |
color:#222; | |
font-family:"Helvetica Neue",Helvetica,Arial,"Liberation Sans","FreeSans",sans-serif; |