This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- wp:paragraph --> | |
<p>Selamat datang di PRESET.ID! Disini kamu dapat mengunduh <em>Preset </em>Lightroom Mobile dan PC secara GRATIS. Format preset yang kami sediakan adalah DNG.</p> | |
<!-- /wp:paragraph --> | |
<!-- wp:paragraph --> | |
<p><strong>Apa itu DNG?</strong><br>DNG juga dianggap sebagai file gambar RAW. Ini adalah standar gambar milik Adobe yang dibuat untuk menyimpan data gambar dalam format generik, sangat kompatibel, tidak seperti file RAW yang memiliki format spesifik berdasarkan pada pabrikan dan jenis kamera. Meskipun DNG diciptakan oleh Adobe dan didukung di semua aplikasi Adobe, ada produsen kamera lain seperti Leica, Hasselblad dan Pentax yang mengadopsi standar ini dan menggunakannya dalam kamera mereka sebagai format file RAW asli dan yang didukung.</p> | |
<!-- /wp:paragraph --> | |
<!-- wp:paragraph --> | |
<p>Perlu dicatat bahwa tidak semua <em>preset </em>akan cocok dengan foto kamu, jadi silakan bereksperimen untuk menemukan yang sempurna untuk memperbaiki foto kamu.</p> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
settings = { | |
Blacks2012 = -2, | |
BlueHue = 0, | |
BlueSaturation = 0, | |
CameraProfile = "Adobe Standard", | |
Clarity2012 = 20, | |
Contrast2012 = 22, | |
ConvertToGrayscale = false, | |
Dehaze = 0, | |
EnableCalibration = true, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function setText(msg){ | |
var textbox = document.getElementById('message'); | |
textbox.value = msg; | |
var submit = document.getElementById('save'); | |
submit.click(); | |
} | |
function spam(text, loop){ | |
for (var i = 1; i <= loop; i++) { | |
setText(i + '. ' + text); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var ambil_nama = document.getElementsByClassName("_6-_"); | |
var mutual = document.getElementsByClassName("_7ebi"); | |
var button_konfir = document.getElementsByClassName('_42ft _4jy0 _4jy3 _4jy1 selected _51sy'); | |
var i = 0; | |
var timer = setInterval(function() { | |
if (i < mutual.length) { | |
var x = i + 1; | |
//Get Nama | |
var hapus_html_nama = ambil_nama[i].innerHTML; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function whatsAppText(message) { | |
window.InputEvent = window.Event || window.InputEvent; | |
var event = new InputEvent('input', { | |
bubbles: true | |
}); | |
var textbox = document.getElementsByClassName('_3u328')[0]; | |
textbox.textContent = message; | |
textbox.dispatchEvent(event); | |
document.querySelector('[data-icon="send"]').click(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1. screen | |
2. {command run} | |
3. ctrl + a + d << Close screen | |
4. screen -d -r << List screen |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jwplayer("myElement").setup({ | |
sources: [{ | |
"type": "video/mp4", | |
"file": "http://techslides.com/demos/sample-videos/small.mp4" | |
}], | |
controls: true, | |
title: "asasas", | |
logo: { | |
"file": "https://avatars2.githubusercontent.com/u/39638126", | |
"hide": false, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
set_time_limit(0); | |
function curl($fullurl, $kuki) | |
{ | |
$ch = curl_init(); | |
curl_setopt($ch, CURLOPT_HEADER, 0); | |
// curl_setopt($ch, CURLOPT_VERBOSE, 1); | |
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0); | |
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0); |