Thank you everybody, Your comments makes it better
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
// Implementation in ES6 | |
function pagination(c, m) { | |
var current = c, | |
last = m, | |
delta = 2, | |
left = current - delta, | |
right = current + delta + 1, | |
range = [], | |
rangeWithDots = [], | |
l; |
Thank you everybody, Your comments makes it better
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
// Not quite there yet, but better than nothing | |
// TODO: JSDoc, based on website documentation | |
// TODO: Interface/class types for each of these ML algorithm instances | |
// TODO: Break this apart into multiple files for readability | |
// TODO: Test autocomplete in a vanilla JS project | |
// TODO: Test autocomplete in a TypeScript project | |
import { MediaElement } from "p5"; | |
export as namespace ml5; |
Incoming webhook: {"erro":false,"text":"Starting browser...","status":"initBrowser","statusFind":"browser","onType":"connection","session":"user","token":""}
Incoming webhook: {"erro":false,"text":"Opening whatsapp page!","status":"initWhatsapp","statusFind":"browser","onType":"connection","session":"user","token":""}
Incoming webhook: {"erro":false,"text":"Website accessed successfully","status":"openedWhatsapp","statusFind":"browser","onType":"connection","session":"user","token":""}
class LocationManagerImpl @Inject constructor( | |
private val permissionManager: PermissionManager, | |
private val context: Context | |
) : LocationManager { | |
override fun getUserLocationUpdates(): Observable<UserLocation> = | |
if (checkIfGooglePlayAvailable()) getLocationFromGooglePlay() else getLocationFromAndroidSdk() | |
override fun getDefaultLocation(): UserLocation = UserLocation(DEFAULT_LATITUDE, DEFAULT_LONGITUDE) |
When you're setup a proxy reverse on virtual host. sometimes you will counter with apache http proxy error.
<VirtualHost *:80>
ServerName domain.com
ServerAlias www.domain.com
ProxyPreserveHost On
ProxyPass / http://localhost:8001/
ProxyPassReverse / http://localhost:8001/
import { createConnection, getConnection, Entity, getRepository } from "typeorm"; | |
import { PrimaryGeneratedColumn, Column } from "typeorm"; | |
@Entity() | |
export class MyEntity { | |
@PrimaryGeneratedColumn() | |
id?: number; | |
@Column() | |
name?: string; |