Skip to content

Instantly share code, notes, and snippets.

View chrisk8er's full-sized avatar
💭
I may be slow to respond.

Krestian Weken chrisk8er

💭
I may be slow to respond.
View GitHub Profile
@chrisk8er
chrisk8er / laravellocal.md
Created March 27, 2019 08:51 — forked from hootlex/laravellocal.md
Run laravel project locally

##Windows users:

cmder will be refered as console

##Mac Os, Ubuntu and windows users continue here:

  • Create a database locally named homestead utf8_general_ci
@chrisk8er
chrisk8er / bootstrap-vertical-grid.css
Created April 16, 2019 10:52 — forked from metaist/bootstrap-vertical-grid.css
Bootstrap vertical grid. For laying out full-screen fixed height webapps.
.container-fixed {
bottom: 0;
position: fixed;
left: 0;
right: 0;
top: 0;
}
.container-fixed .col {
height: 100%;
@chrisk8er
chrisk8er / validator.js
Created September 3, 2019 09:22 — forked from msert29/validator.js
A simple validation method to validate given user inputs for address
export default class Delivery extends Component {
state = {
streetName: undefined,
postcode: undefined,
city: undefined
};
constructor(props) {
super(props);
@chrisk8er
chrisk8er / .block
Created March 19, 2020 03:03 — forked from tvalentius/.block
Provinces in Indonesia
border: no
license: MIT
@chrisk8er
chrisk8er / .htaccess
Last active August 19, 2020 04:38 — forked from alexsasharegan/.htaccess
Apache Config for React Router
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule . /index.html [L]
@chrisk8er
chrisk8er / proxy_for_terminal.md
Created June 22, 2021 03:57 — forked from fearblackcat/proxy_for_terminal.md
Set proxy for terminal on mac

Shadowsocks Proxy

apt-get install python-pip
pip install shadowsocks

sudo ssserver -p 443 -k password -m aes-256-cfb --user nobody -d start
@chrisk8er
chrisk8er / simple-pagination.js
Created June 23, 2021 04:45 — forked from kottenator/simple-pagination.js
Simple pagination algorithm
// Implementation in ES6
function pagination(c, m) {
var current = c,
last = m,
delta = 2,
left = current - delta,
right = current + delta + 1,
range = [],
rangeWithDots = [],
l;
@chrisk8er
chrisk8er / gist:04f0d6d85ac8a06a3bd7f67cba87692e
Created February 22, 2022 01:44 — forked from 480/gist:3b41f449686a089f34edb45d00672f28
MacOS X + oh my zsh + powerline fonts + visual studio code terminal settings

MacOS X + oh my zsh + powerline fonts + visual studio code (vscode) terminal settings

Thank you everybody, Your comments makes it better

Install oh my zsh

http://ohmyz.sh/

sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
@chrisk8er
chrisk8er / ml5.d.ts
Created June 25, 2022 04:27 — forked from dikarel/ml5.d.ts
ml5.js TypeScript definitions draft
// 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;
@chrisk8er
chrisk8er / LocationManagerImpl.kt
Created September 23, 2022 08:33 — forked from Razeeman/LocationManagerImpl.kt
Android Get User Location Manager
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)