Skip to content

Instantly share code, notes, and snippets.

View imammubin's full-sized avatar

Imam Mubin imammubin

View GitHub Profile
@Override
public boolean onKeyDown(int keyCode, KeyEvent event){
if(event.getAction()==KeyEvent.ACTION_DOWN){
switch (keyCode){
case KeyEvent.KEYCODE_BACK:
if(webView.canGoBack()){
webView.goBack();
}else{
finish();
}
@imammubin
imammubin / sudo command install sqlsrv ubuntu 18.04 php 7.2
Created December 18, 2019 03:53
install sqlsrv ubuntu 18.04 php 7.2
apt-get install php7.2-dev php7.2-xml -y --allow-unauthenticated
sudo curl https://packages.microsoft.com/keys/microsoft.asc | apt-key add -
sudo curl https://packages.microsoft.com/config/ubuntu/18.04/prod.list > /etc/apt/sources.list.d/mssql-release.list
sudo apt-get update
sudo ACCEPT_EULA=Y apt-get install msodbcsql17 -y
sudo ACCEPT_EULA=Y apt-get install mssql-tools -y
echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bash_profile
echo 'export PATH="$PATH:/opt/mssql-tools/bin"' >> ~/.bashrc
source ~/.bashrc
package id.co.kopkarbsm.votingsystem;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.bluetooth.BluetoothSocket;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
/*
CARA PAKAI:
$.redirect('/URL_FOLDER/', {'arg1': 'value1', 'arg2': 'value2'});
*/
;(function ($) {
'use strict';
/*
CONTOH PENGGUNAAN:
var redirect = 'http://www.website.com/page?id=23231';
$.redirectPost(redirect, {x: 'example', y: 'abc'});
*/
$.extend(
Get Cordinate GMAP from click
https://jsfiddle.net/4wz4z17j/2/
### UBUNTU ERROR
#### REMOVE NODE
##### https://github.com/yarnpkg/yarn/issues/6914
curl -sL https://deb.nodesource.com/setup_10.x | sudo -E bash -
apt-get install -y nodejs
yarn add expo-cli -g
yarn expo init MyProjectName
https://medium.com/@saurabh.friday/install-watchman-on-ubuntu-18-04-ba23c56eb23a
https://stackoverflow.com/questions/31939729/regenerate-makefiles-sh-generates-libtoolize-linking-error-when-compiling-irstlm
# on public/index.php add
error_reporting(E_ALL);
ini_set("display_errors", 1);
sudo apt-get install php-intl
sudo /etc/init.d/apache2 restart
version: '3'
services:
# Database
db:
container_name: database
image: mysql:5.7
volumes:
- ./db_data:/var/lib/mysql
# source-docker-ubuntu1804-apache2-php73-composer-for-laravel7
FROM ubuntu:18.04
# Identify the maintainer of an image
LABEL maintainer="imammubin.net@gmail.com"
# Update the image to the latest packages
RUN apt-get update && apt-get upgrade -y