Skip to content

Instantly share code, notes, and snippets.

View agungf's full-sized avatar

Agung Firdaus agungf

  • Jakarta, Indonesia
View GitHub Profile
@agungf
agungf / dacast-snippet-web
Created February 27, 2017 12:00
Dacast player code snipper from web App
dacast(_vid_id,"vid_here");
_vid_player = dacast.players[_vid_id];
// console.log(_vid_player.play());
_vid_player.onReady(function(){
console.log('player ready');
// console.log('Step 2');
_vid_player.onPlay(function(){
// console.log('playing video');
@agungf
agungf / dacast-snippet-android
Created February 27, 2017 12:00
Dacast player code snipper from Android App
package com.ruangguru.livestudents.ui.onlinevideo;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.res.Configuration;
import android.os.Build;
import android.os.Bundle;
import android.support.v7.widget.Toolbar;
import android.util.Log;
@agungf
agungf / dacast-snippet-ios
Created February 27, 2017 12:00
Dacast player code snipper from IOS App
@IBOutlet weak var videoWebView: UIWebView!
videoWebView.allowsInlineMediaPlayback = false
videoWebView.mediaPlaybackRequiresUserAction = true
videoWebView.scrollView.scrollEnabled = false
let videoURLString = String(format:"%@/%@?file_id=%@&ip=%@&ua=%@", RGConstant.Services.URL.videoBaseURL, RGConstant.Services.URL.Path.videoPlayer, fileIDVideo, ipAdress,userAgent)
let videoURL = NSURL(string: videoURLString)
let request = NSMutableURLRequest(URL: videoURL!)
if let token = TokenManager.sharedManager.getToken() {
@agungf
agungf / seo.md
Last active August 29, 2015 14:17 — forked from dypsilon/seo.md
#!/bin/sh
# Cleanup docker files: untagged containers and images.
#
# Use `docker-cleanup -n` for a dry run to see what would be deleted.
untagged_containers() {
# Print containers using untagged images: $1 is used with awk's print: 0=line, 1=column 1.
# NOTE: "[0-9a-f]{12}" does not work with GNU Awk 3.1.7 (RHEL6).
# Ref: https://github.com/blueyed/dotfiles/commit/a14f0b4b#commitcomment-6736470
docker ps -a | tail -n +2 | awk '$2 ~ "^[0-9a-f]+$" {print $'$1'}'
@agungf
agungf / install.sh
Last active August 29, 2015 14:14 — forked from wdullaer/install.sh
# Add Docker PPA and install latest version
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
sudo sh -c "echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list"
sudo apt-get update
sudo apt-get install lxc-docker -y
# Install fig
sudo sh -c "curl -L https://github.com/docker/fig/releases/download/1.0.1/fig-`uname -s`-`uname -m` > /usr/local/bin/fig"
sudo chmod +x /usr/local/bin/fig
@agungf
agungf / Instructions.md
Last active August 29, 2015 14:09 — forked from bajtos/notice.md

Build a full-stack application with LoopBack and AngularJS

LoopBack logo AngularJS logo

In this workshop, you will learn how to build a full-stack Whiskey-voting application using LoopBack and AngularJS.

@agungf
agungf / FB panpage auto invite
Last active August 29, 2015 14:07
FB panpage auto invite
//click all friends link
var allFriends = document.getElementsByClassName('_5tef');
for(var i=0; i<allFriends.length;i++) {
allFriends[i].click();
console.log("allFriends link clicked!");
}
//scroll down every seconds
var showAll = setInterval(function() {
var objDiv = document.getElementsByClassName('_5tee');
@agungf
agungf / backing up mongodb to rackspace file
Created February 7, 2014 04:50
backing up mongodb to rackspace file
Backing up your server (MongoDB) to the cloud
Submitted by admin on Wed, 01/02/2013 - 19:59
In my previous blog post I detailed how to set-up a new server to host a small Play2 application securely using Nginx and MongoDB.
Now our application is up and running the next step is to configure backups. Alot of marketing suggests that cloud based VPS/Servers are a golden bullet with massive uptime, no worries of data loss, scalability etc etc. With the configuration I detailed previously we are using a single server on Rackspace's cloud service. Our server instance, and as is often the case is hosted on a single physical machine with no redundancy. This means if the physical host hosting our virtualised server goes down unexpectedly we can potentially loose all out data. This does happen, although not frequently I have had a Rackspace cloud server go down, luckily it was migrated to a new machine with no dataloss within 3 hours but if the issues was with the hosts drives this could of been different.
Some provider
@agungf
agungf / gist:8803522
Created February 4, 2014 13:26
Could not open a connection to your authentication agent
eval `ssh-agent -s`