Skip to content

Instantly share code, notes, and snippets.

View CreatorB's full-sized avatar
Open to Remote Work

Hasan B CreatorB

Open to Remote Work
View GitHub Profile
@CreatorB
CreatorB / TelegramChannelList.md
Last active May 9, 2017 16:00
List Telegram Channel - Indonesia

Telegram Channel List

Muslim Channel's

1️⃣. Indonesia Bertauhid

✅ @itauhid

✅ @indonesiabertauhid

@CreatorB
CreatorB / yip.md
Last active January 3, 2016 00:31
Yip URL - Youtube Improved Player by URL injected
@CreatorB
CreatorB / BrewSync
Created December 1, 2015 09:50
homebrew missing formula can't update
cd `brew --prefix`
#optional to fetch with another repos
git remote add origin https://github.com/mxcl/homebrew.git
git fetch origin
git reset --hard origin/master
@CreatorB
CreatorB / latest-firefox
Last active November 13, 2015 15:07 — forked from ruario/latest-firefox.sh
Rocks script will find the latest Firefox binary package, download it and repackage it into Slackware format.
#!/bin/bash
# latest-firefox Version 1.2
# This script will find the latest Firefox binary package, download it
# and repackage it into Slackware format.
# I don't use Firefox for regular browsing but it is handy for
# comparative tests against Opera. :P
# Copyright 2015 Ruari Oedegaard, Oslo, Norway
@CreatorB
CreatorB / rm.sh
Created October 26, 2015 14:13
MultipleRename
bash-4.2$ ls
TAMBAHAN qiroatiiroati 3.3.mp3 qiroatiiroati 4.6.mp3 qiroatiiroati 6.4.mp3
qiroatiiroati 2.1.mp3 qiroatiiroati 3.4.mp3 qiroatiiroati 5.1.mp3 qiroatiiroati 6.5.mp3
qiroatiiroati 2.2.mp3 qiroatiiroati 3.5.mp3 qiroatiiroati 5.2.mp3 qiroatiiroati 6.6.mp3
qiroatiiroati 2.3.mp3 qiroatiiroati 3.6.mp3 qiroatiiroati 5.3.mp3 qiroatiiroati 6.7.mp3
qiroatiiroati 2.4.mp3 qiroatiiroati 3.7.mp3 qiroatiiroati 5.4.mp3 qiroatiiroati 6.8.mp3
qiroatiiroati 2.5.mp3 qiroatiiroati 4.1.mp3 qiroatiiroati 5.5.mp3 rowdua.mp3
qiroatiiroati 2.6.mp3 qiroatiiroati 4.2.mp3 qiroatiiroati 5.6.mp3 rowempat.mp3
qiroatiiroati 2.7.mp3 qiroatiiroati 4.3.mp3 qiroatiiroati 6.1.mp3 rowlima.mp3
qiroatiiroati 3.1.mp3 qiroatiiroati 4.4.mp3 qiroatiiroati 6.2.mp3 rowsatu.mp3
@CreatorB
CreatorB / CleanJunkLinux
Created October 13, 2015 15:12
Clean Junk Linux
##CLI
#Cleaning up of partial package:
sudo apt-get autoclean
#Cleaning up of the apt cache:
sudo apt-get clean
#Cleaning up of any unused dependencies:
sudo apt-get autoremove
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line" >
<stroke
android:dashGap="3dp"
android:dashWidth="8dp"
android:height="2px"
android:color="#fff" />
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:background="#4A9C67"
android:divider="#FFCC00"
android:dividerHeight="1dp" >
</ListView>
@CreatorB
CreatorB / automountUbuntu
Created May 2, 2015 03:29
How to Set Ubuntu Automatically Mount Partition at Startup with fstab
List out the partitions
Use the fdisk command to list of all partitions
$ sudo fdisk -l
Here is what the ouput would look like
Disk /dev/sda: 500.1 GB, 500107862016 bytes
255 heads, 63 sectors/track, 60801 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
@CreatorB
CreatorB / chmodDDMSdata
Last active August 29, 2015 14:20
Can't see the data in emulator DDMS of android Eclipse Not Show up
On rooted device you can do this:
Open cmd
Type 'adb shell'
su
Press 'Allow' on device
chmod 777 /data /data/data /data/data/com.application.pacakage /data/data/com.application.pacakage/*
Go to the DDMS view in Eclipse
After this you should be able to browse the files on the device.