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
// Copyright(C) 2025 soursop | |
// This Source Code Form is subject to the terms of the Mozilla Public | |
// License, v. 2.0. If a copy of the MPL was not distributed with this | |
// file, You can obtain one at <https://mozilla.org/MPL/2.0/>. | |
// soursop is a WhatsApp bot based on whatsmeow (github.com/tulir/whatsmeow) | |
package config |
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
import { | |
makeWASocket, | |
DisconnectReason, | |
useMultiFileAuthState, | |
WASocket, | |
ConnectionState, | |
AuthenticationState, | |
WAMessage, | |
MessageUpsertType | |
} from 'baileys'; |
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
{ | |
"Info": { | |
"Chat": "<groupid>@g.us", | |
"Sender": "<userid>:[email protected]", | |
"IsFromMe": false, | |
"IsGroup": true, | |
"BroadcastListOwner": "", | |
"ID": "3EB0F29CD941ED17B1AD6D", | |
"ServerID": 0, | |
"Type": "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
// Copyright(C) 2025 SoursopID | |
// This Source Code Form is subject to the terms of the Mozilla Public | |
// License, v. 2.0. If a copy of the MPL was not distributed with this | |
// file, You can obtain one at <https://mozilla.org/MPL/2.0/>. | |
const DEFAULT_PREFIX = "/."; | |
// Kumpulan command yang terdaftar | |
let commands = {}; |
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
set -g mouse on |
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
// Copyright(C) 2024 soursop | |
// This Source Code Form is subject to the terms of the Mozilla Public | |
// License, v. 2.0. If a copy of the MPL was not distributed with this | |
// file, You can obtain one at <https://mozilla.org/MPL/2.0/>. | |
// list based on https://cloud.google.com/translate/docs/languages | |
package lang |
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
package main | |
import ( | |
"sync" | |
"time" | |
) | |
type Worker struct { | |
Limiter chan bool | |
Grouper sync.WaitGroup |
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
/* | |
* Copyright(C) 2025 SoursopID | |
* | |
* This Source Code Form is subject to the terms of the Mozilla Public | |
* License, v. 2.0. If a copy of the MPL was not distributed with this | |
* file, You can obtain one at <https://mozilla.org/MPL/2.0/>. | |
* | |
* */ | |
/* Cautions : |
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
import requests | |
import json | |
sesi = requests.session() | |
site_uri = "https://unicode.org/Public/emoji/latest/emoji-test.txt" | |
resp = sesi.get(site_uri) | |
def array_included(string, array): |
NewerOlder