Skip to content

Instantly share code, notes, and snippets.

View Jumbo810's full-sized avatar
🏠
Working from home

Jumbo Jumbo810

🏠
Working from home
View GitHub Profile
@Jumbo810
Jumbo810 / hnl.mobileConsole.js
Created September 27, 2022 10:40 — forked from c-kick/hnl.mobileConsole.js
NOTE: V2 Released! Seehttps://github.com/c-kick/mobileConsole hnl.mobileConsole.js - extends JavaScript's console to display a visual console inside the webpage. Very usefull for debugging JS on mobile devices with no real console. Info and demo: http://www.hnldesign.nl/work/code/mobileconsole-javascript-console-for-mobile-devices/
/*!
*
* NEW VERSION AT https://github.com/c-kick/mobileConsole
*
* hnl.mobileConsole - javascript mobile console - v1.3.8 - 04/01/2021
* Adds html console to webpage. Especially useful for debugging JS on mobile devices.
* Supports 'log', 'trace', 'info', 'warn', 'error', 'group', 'groupEnd', 'table', 'assert', 'clear'
* Inspired by code by Jakub Fiala (https://gist.github.com/jakubfiala/8fe3461ab6508f46003d)
* Licensed under the MIT license
*
@Jumbo810
Jumbo810 / install-android-sdk-in-ubuntu.md
Created September 2, 2022 04:58 — forked from EmadAdly/install-android-sdk-in-ubuntu.md
install JDK and Android SDK on Linux Ubuntu

install openjdk

sudo add-apt-repository ppa:openjdk-r/ppa
sudo apt-get update
sudo apt-get install openjdk-8-jdk
@Jumbo810
Jumbo810 / .gitlab-ci.yml
Created June 20, 2022 08:51 — forked from antoninbouchal/.gitlab-ci.yml
Deploy APP through SSH to VPS with Gitlab CI
stages:
- build
- deploy
before_script:
- |
# docker variables for name and tag of new image
export DOCKER_TAG="${CI_COMMIT_SHA:0:8}"
export DOCKER_REPO="$CI_REGISTRY_IMAGE"
export DOCKER_IMAGE="${DOCKER_REPO}:${DOCKER_TAG}"