[
{
"headers": {
"connection": "upgrade",
"host": "ai.kirimna.com",
"content-length": "473",
"x-forwarded-for": "91.108.5.21",
"cf-ipcountry": "NL",
- Bisnis berbentuk PT/CV yang memiliki legalitas perusahaan (tidak diperuntukkan perorangan).
- Bisnis sesuai dengan kebijakan perdagangan WhatsApp.
- Bisnis memiliki Akta Pendirian (untuk swasta) atau SK Pendirian (untuk pemerintahan, lembaga/yayasan).
- Bisnis memiliki Surat Izin Usaha (SIUP) atau Nomor Induk Berusaha (NIB).
- Bisnis memiliki NPWP Perusahaan.
- Bisnis memiliki akun Facebook Business Manager.
- Bisnis memiliki website dan email resmi perusahaan.
- sudo cat /etc/NetworkManager/system-connections/*
- See on value
psk=YOUR_WIFI_PASSWORD
or you can use grep for filter
- sudo cat /etc/NetworkManager/system-connections/* | grep -i -A 10 "YOUR_WIFI_SSID_NAME"
-i
for incase-sensitive
-A 10
for show 10 line after found 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
WEBVTT | |
NOTE | |
Transcription provided by Deepgram | |
Request Id: d1edd3d2-865f-4750-abd2-7a4120f9db82 | |
Created: 2024-09-09T04:17:30.388Z | |
Duration: 679.9035 | |
Channels: 1 | |
00:00:00.080 --> 00:00:02.640 |
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
export const downloadHandler = async (uri) => { | |
try { | |
const response = await fetch(uri, { | |
mode: 'cors', | |
}); | |
if (!response.ok) { | |
throw new Error('Network response was not ok'); | |
} |
Steps
- Right click to upload background on g-meet and click inspect (open dev tools)
- Search
<input type="file" jsname="tif8Pe" jsaction="change:E7zRc" accept="image/jpeg, image/png" style="display: none;">
Where it says accept="image/jpeg, image/png"
and replace to this
accept="image/jpeg, image/png, image/gif, video/mp4"
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 | |
function jsonToHtml($jsonStr) { | |
$obj = json_decode($jsonStr); | |
$html = ''; | |
foreach ($obj->blocks as $block) { | |
switch ($block->type) { | |
case 'paragraph': | |
$html .= '<p>' . $block->data->text . '</p>'; | |
break; |
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 isDarkColor(color) { | |
const luminance = (0.299 * color[0] + 0.587 * color[1] + 0.114 * color[2]) / 255; | |
return luminance <= 0.5; | |
} | |
function hexToRgb(hex) { | |
const r = parseInt(hex.substring(1, 3), 16); | |
const g = parseInt(hex.substring(3, 5), 16); | |
const b = parseInt(hex.substring(5, 7), 16); |
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
/** | |
* Get domain from string url | |
* @param {*} url | |
* @returns string | |
*/ | |
export const getDomain = url => { | |
const urlParts = getApiUrl(url) | |
.split('/') | |
.slice(0, 3) |
NewerOlder