Skip to content

Instantly share code, notes, and snippets.

View kingmbc's full-sized avatar
🌴
Exploring the worlds

Taehun Kim kingmbc

🌴
Exploring the worlds
  • Samsung Electronics
  • Seoul, South Korea
  • X @kingmbc2
View GitHub Profile
@pratos
pratos / zeppelin_ubuntu.md
Last active February 13, 2022 01:53
To Install Zeppelin [Scala and Spark] in Ubuntu 16.04LTS

Install Zeppelin in Ubuntu systems

  • First install Java, Scala and Spark in Ubuntu

    • Install Java
      sudo apt-add-repository ppa:webupd8team/java
      sudo apt-get update
      sudo apt-get install oracle-java8-installer
      
@akngs
akngs / read_vs_skim.js
Last active September 22, 2022 01:38
GA custom event trigger which tracks reading behavior
<script>
try {
document.addEventListener("DOMContentLoaded", function() {
var accumScrollMove = 0;
// Set it 1 msecs to avoid div by zero error
var accumScrollTime = 1;
var latestScrollTop = 0;
var latestScrollAt = new Date();
function checkScroll() {