Posts

Feeling Lucky?

Sunrise point Cukul

Image
Sunrise Point Cukul adalah destinasi wisata yang terletak di daerah Pengalengan, Jawa Barat. Tempat ini menjadi populer di kalangan wisatawan karena menawarkan pemandangan matahari terbit yang memukau. Terletak di ketinggian, Sunrise Point Cukul memberikan pemandangan luas yang mencakup perbukitan, kebun teh, dan lembah-lembah hijau yang menakjubkan. Kombinasi antara udara segar pegunungan dan panorama alam yang indah membuat tempat ini sangat cocok bagi mereka yang ingin melepas penat dari kesibukan kota. Waktu terbaik untuk mengunjungi Sunrise Point Cukul adalah pada pagi hari sebelum matahari terbit. Pengunjung biasanya mulai naik ke titik ini sekitar pukul 4-5 pagi untuk mendapatkan posisi terbaik dalam menyaksikan momen matahari terbit. Ketika matahari mulai muncul dari balik perbukitan, sinar keemasannya perlahan menerangi kebun teh dan lembah, menciptakan pemandangan yang sangat memukau dan tentunya instagramable. Banyak fotografer dan pecinta alam yang sengaja datang untuk meng

Bagaimana cara bayar pajak 5 tahunan? (Lokasi di Samsat Blitar Kota)

Image
Hai,  pada kesempatan kali ini aku akan berbagi bagaimana cara membayar pajak 5 tahunan. Assalamualaikum warohmatullohi wabarokatuh.. Jadi kemarin tanggal 29 Oktober 2022, saya menunaikan kewajiban membayar pajak 5 tahunan sepeda motor. Karena saya domisili di Kota Blitar, jadi saya membayar pajak di kantor Samsat Blitar jalan Melati. Berkas yang wajib disiapkan adalah bpkb,  stnk (lepasin dulu dari pastiknya) dan ktp sesuai nama yang di stnk. Kemu dian,  ke fotocopyan depan samsat, bilang saja untuk pajak 5 tahunan. Kemarin  ibuknya udah paham, jadi saya langsung menyerahkan berkas bpkb, stnk dan ktp yang sudah disiapkan tadi Biaya untuk proses ini 12rb ya teman. Dari fotokopian ini berkas2 yang sudah disiapkan tadi akan dirapihkan dan dimasukkan ke map berwarna merah. Selanjutnya adalah menuju ke tempat cek fisik roda 2, disini karena masih tutup, map map dari orang lain yang juga akan melakukan perpanjangan 5 tahunan ditumpuk di depan loket.  Ohya numpuk mapnya di atas ya, kemarin s

Create New Google Docs with Apps Script

Image
Hello everyone, In this article we will try to create a new document using code in Apps Script. If you never use and create apps script before, you can check my article in here : Create Your First Code in Apps Script (randomusefuljourney.blogspot.com) Here is the code to create a new Google Docs : function myFunction () {    const doc = DocumentApp . create ( "Test New Doc 1" ); }   And here is the result in my google drive : Thank you.  

How to use For Loops in Apps Script

Image
  Hello everyone, In this article we will try to create a looping code in Google Apps Script with For Loop. The use of looping code is to run the same formula several times without writing it one by one.  Let's create rows number in the right side of this table start with 1 : So, to do this, we could write for loops code in our script. Basic form of for loops code is : for ( var ...; ....; ...){   }   “var ….;” is to declare the variable and the initial number. The middle “….. ;” is to state the maximum or minimum number and to determine the number of iterations. The right  “….. ;” is to state the formula of looping, can be plus or minus.   Here is the code that I add to Apps Script to create number 1 to 4 in cell E4 to E7   for ( var i = 0 ; i < 4 ; i ++  ){      activeSheet . getRange ( i + 4 , 5 ). setValue ( i + 1 );                }   i = 0; it means the initial number of the variable i is 0. i < 4; it means the variable i can’t equal or more than 4. i++; it means in

Create Your First Code in Apps Script

Image
Hello everyone, In this article we will try to make a code in Apps Script to get data or value from a cell in Google Sheets and store it in another cell. Apps Script is a coding platform in G Suite that can be used to build simple applications on top of existing apps such as Sheets, Docs, Forms, etc. With Apps Script, you only need a browser and a google account to start scripting. Apps Script allows you to extend and manipulate Google apps like Drive, Sheets, Docs, and Gmail, so you can run the process the way you want.  Create Apps Script File in Your Google Drive Open your google drive account. Right click > More > Google Apps Script. If there is no Google Apps Script, select Connect more apps and search for Google Apps Script. Open your Google Apps Script. At the top of the page, you can rename your Apps Script File. The name of your script file at the top of the page You can rename your script file Create a Google Sheets File in your G Drive and open it. Set B1 Cell as a dat