Showing posts with label Tips & Tricks. Show all posts
Showing posts with label Tips & Tricks. Show all posts

Friday, May 15, 2020

Melihat List Camera Permission di Google Chrome

Pertama-tama silahkan buka menu setting di google chrome seperti terlihat pada gambar dibawah:
Setelah itu pilih menu "Privacy and Security" trs klik menu "Site Settings"

Setelah itu kita milih Camera seperti terlihat pada gambar dibawah:

Naah... klihatan list yg diblock atau yg diallow:


CuKup Sekiaan.... semoga bermanfaat...
Btw klu mau liad yang microphone caranya sama... tinggal tar pilh yang microphone...

Thursday, November 29, 2018

Proses instalasi Free Download Manager

Free Download Manager adalah software alternative selain menggunakan internet download manager. Jadi klu misalkan pengen aman dari software bajakan, naah silahkan install FDM ini yang langkah2nya seperti terlihat pada gambar-gambar dibawah :












Trus sebaiknya kita juga install add-onsnya buat google chrome biar apapun yang kita download dari googlechrome bisa automatis kedetek buat didownload oleh fdmnya. Caranya silahkan kunjugi chrome storenya disini ....
Siipss daah... :-)




Monday, November 19, 2018

Melihat List Wifi dan Password Menggunakan CMD - Windows 10

Untuk menampilkan list wifi yang ada dilaptop dapat menggunakan perintah "netsh wlan show profile". Contohnya seperti terlihat dibawah :
Nah misalkan kita pengen ngeliad password untuk wifi "MITLA OFFICE". Jadinya kita eksekusi perintah ini :

Wednesday, July 11, 2018

Belajar Membuat Blog Baru di Blogspot.com

Hellow semuanya dipostingan ini kita akan membuat blog baru menggunakan blogspot. Silahkan ikuti langkah2nya lewat gambar2 dibawah ini.

Pertama-tama kita login dl ke blogspot. Nah disini saya udah punya blog, jadi tampilnnya kek gini :

Dari tanda dropdown itu pilih new blog seperti terlihat pada gambar dibawah :
Setelah itu akan muncul pop-up menu buat masukin title, nama blog, sama theme blog yang kita inginkan. Jadinya seperti ini
Nah setelah itu tinggal kita klik tombol "Create blog!" daaan.. Alhamdulillaah.. jadi deeeh... :-)

Sekiaaan... :-)


Wednesday, October 25, 2017

Daftar Kode Bank & Swift Kode Bank di Indonesia

Berikut daftar kode bank dan beberapa swift codenya...



No Nama Bank Kode Bank Swift Code
1 BCA 014 CENAIDJA
2 BNI 009 BNINIDJA
3 BRI 002 BRINIDJA
4 MANDIRI 008 BMRIIDJA
5 BANK MEGA 426 MEGAIDJA
6 CITIBANK N.A. 031 CITIIDJX
7 BANK DANAMON 011 DANEIDJ1
8 BANK TABUNGAN NEGARA (PERSERO) 200 BTANIDJA


Sumber :
http://bingung.my.id/post/kode-bank

Registrasi Ulang kartu prabayar XL dan Telkomsel secara Online

Silahkan liad Videonya
Untuk Kartu XL : https://registrasi.xl.co.id/ulang

Untuk Kartu Telkomsel : https://mobi.telkomsel.com/ulang


Tuesday, May 30, 2017

Finding UI Button from Canvas Gameobject in Unity 5.6

So in this scene, I have canvas with two buttons as shown in the picture below
This restart button has a tag 'restart_tag' and exit with 'exit_tag' button...

And in this scene, I want to reference to my buttons using variabel in my script and this variabel is a private var not a public, so I can't drag and drop button because it's a private. So what we can do for achieving this ?
We have several ways... :)
First... We can use a public function from canvas class namely GetComponentsInChildren<Button>(), this function will gonna return all of the button within this canvas as an array. Here is the example code :

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class canvas_sc1 : MonoBehaviour {

	private Button[] buttons;
	private Canvas cvs;
	// Use this for initialization
	void Start () {
		cvs = GetComponent<Canvas>();
		buttons = cvs.GetComponentsInChildren<Button> ();
		Debug.Log (buttons[0].tag);
		Debug.Log (buttons[1].tag);
	}
	
	// Update is called once per frame
	void Update () {
		
	}
}

When we run the game, we'll see that button[0] contains button for restart and another for exit
Another function that we can use is GetComponents. Here is the example :

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;

public class canvas_sc1 : MonoBehaviour {

	private Button[] buttons;
	private Button button;
	private Canvas cvs;
	// Use this for initialization
	void Start () {
		cvs = GetComponent<Canvas>();
		buttons = cvs.GetComponents<Button>();
		Debug.Log (buttons);
	}
	
	// Update is called once per frame
	void Update () {
		
	}
}
but unfortunately, for unity 5.6, GetComponents doesn't work... :v
So we can just use GetComponentsInChildrend ... :)

Video :

Friday, May 19, 2017

Editing Linkedin Public Profile

First thing first, open linkedin, then go to profile by clicking "View Profile" link as shown below :
After clicking the link, we can see our public profile like this :
And then Hit "Edit your public profile"...

For making it clear, you can watch video below....


Friday, March 10, 2017

Deleting Branch on Gitlab

We have to login as "master" or "owner" to gitlab in order to delete the branch. Here is the steps..

Wednesday, October 26, 2016

USB 8G became 3MB - Fixed

So.... In order to make it back to it's original size, please follow these steps....

So we have a lot of unallocated space... :D So... mmmm..........
Open command prompt, type "diskpart" :
Then type "select volume 5" to select our usb, then type "clean" :
Just format our usb then go back to disk management.... then right click on the usb, choose new volume as shown in the picture below :







Yeeeei...Awesome... B-)

Sunday, October 23, 2016

Receive File via Bluetooh in windows 7

In the old version, when we right clicked bluetooth icon, we could see a menu to receive a file. But right now :
So we need to use another way... :D
First open run box in your windows then type "fsquirt" then hit enter.... aaaand....

Then just send a file from another device to your windows..... We'll gonna see something like this :


Coool.... :)