brew tap timescale/tap
brew install timescaledb
If could not execute pg_config --version
brew tap timescale/tap
brew install timescaledb
If could not execute pg_config --version
class="[a-zA-Z0-9:;\.\s\(\)\-]*" |
javascript:document.designMode = document.designMode === "on" ? "off" : "on"; void 0 |
using UnityEngine; | |
using UnityEngine.Events; | |
public class CharacterController2D : MonoBehaviour | |
{ | |
[SerializeField] public float m_JumpForce = 400f; // Amount of force added when the player jumps. | |
[Range(0, 1)] [SerializeField] private float m_CrouchSpeed = .36f; // Amount of maxSpeed applied to crouching movement. 1 = 100% | |
[Range(0, .3f)] [SerializeField] private float m_MovementSmoothing = .05f; // How much to smooth out the movement | |
[SerializeField] private bool m_AirControl = false; // Whether or not a player can steer while jumping; | |
[SerializeField] private LayerMask m_WhatIsGround; // A mask determining what is ground to the character |
//Get the sum of all the numbers between a and b | |
function GetSum( a,b ) | |
{ | |
sum = 0; | |
if(a<b){ | |
for (let i = a; i <= b; i++) { | |
sum += i; | |
} |
function validParentheses(parens) { | |
pairLenght = parens.length; | |
for (let i = 0; i < pairLenght; i++) { | |
parens = parens.replace('()',''); | |
} | |
return parens.length < 1; | |
} |
using System; | |
class Test{ | |
string word; | |
void Main(){ | |
word = "i don´t know how to code :)"; | |
print(word); | |
} |
http://nhanaswigs.github.io/htmljs/api/index.html | |
http://www.slideshare.net/TomislavMesi/decoupling-you-rhtml-css-and-java-script | |
http://superstatic.org/ | |
https://github.com/marmelab/ng-admin | |
http://blog.brackets.io/2013/08/28/theseus-javascript-debugger-for-chrome-and-nodejs/ | |
http://smacss.com/book/ | |
https://github.com/eirslett/frontend-maven-plugin | |
https://psdtowordpress.com/frontend-development-tools.html | |
http://addyosmani.com/blog/understanding-mvvm-a-guide-for-javascript-developers/ | |
https://github.com/kmalakoff/knockback |