Skip to content

Instantly share code, notes, and snippets.

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

Shubham Aggarwal sbmaggarwal

🏠
Working from home
  • New Delhi
  • 15:58 (UTC +05:30)
View GitHub Profile
@sbmaggarwal
sbmaggarwal / presto_install.sh
Created September 25, 2018 05:29
PrestoDB v0.198 installation script for Ubuntu
# Install Java 8
sudo add-apt-repository ppa:webupd8team/java
sudo apt-get update
sudo apt-get install oracle-java8-installer
# Install Python 2.7
sudo apt-get install python
# Install UUID utility to create unique UUID for each node
apt install uuid
@bverc
bverc / CountDownTimer.java
Created December 18, 2011 07:49 — forked from Gautier/CountDownTimer.java
Drop-in alternative for the Android CountDownTimer class, but which you can cancel from within onTick. Modified to include pause and resume functionality.
/*
* Copyright (C) 2008 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software