Paid Project: Seeking App Developer
Looking for an experienced App Developer to join our team. If you have a background in similar app types like Uber and Ola,
Please DM @BiswaX for more details. Get paid to be a part of this exciting opportunity!
Get Paid!!
AI CHATBOT WITH ChatGPT 4 MODEL
<blockquote>https://app.myshell.ai/chat?from=workshop
</blockquote>React love ❤️ if you want their API!
I will do reverse engineering on these sites
Drop more sites if you have at @BiswaX
Claude AI~ An AI Chat Bot used by Discord
<blockquote>Install requests Package:
pip install curl\-cffi
Run:
python claude.py
How-To use:
All the steps mentioned in file
If the sessionkey gets expired, you can get it from claude.ai from cookies
<blockquote>.< Drop your site for reverse engineering at @BiswaX
</blockquote>ChatGPT 4 + IMAGE GENERATOR API -> Unlimited Usage -> Unlimited Image Generation -> Rest API -> FREE OFCOURSE WILL DROP HERE 10+ ❤️ reaction required :D
ChatGPT 4 + IMAGE GENERATOR API
-> Unlimited Usage
-> Unlimited Image Generation
-> Rest API
-> FREE OFCOURSE
WILL DROP HERE
10+ ❤️ reaction required :D
Make Your Own AI GPT with LLAMA 2 Model
Features:
- Open source
- Unlimited use
- Works offline
- No need api key
- 7 Billion Chat
Requirement:
Python 3.10 +
wget
Source: https://github.com/h2oai/h2ogpt
Hcaptcha Solver!!
Coded by @BiswaX
Spotify Account Generator
Response Improved
Android API
~ Coded By Biswa xD
Good Looking Toast UI
Usage:
```
import { toast } from 'https://cdn.skypack.dev/wc-toast';
// Error message
toast.error('Authentication failed');
// Success message
toast.success('Authentication success');
```
Download Source:
https://github.com/abdmmar/wc-toast/archive/refs/heads/main.zip
Demo:
https://www.cssscript.com/demo/notification-wc-toast
How to merge 2 or many json dict into One in (Python, PHP, JS)
#js
var b = { success:true }
var c = { message: "something", ...b }
console.log(c)
Usage: Use "var" keyword to re assign the variable and use spread method to merge "...json object "
#php
$b = [ "success"=> true ];
$c = ["biswa":"string"];
array_merge($b, $c)
Usage: array_merge used to merge arrays into one array and we need use json_decode and json_encode to make a json obj
Best way to merge in python is using unpacking operator **dict_name
here is example:
b = { "success":True }
c = { "hell":None}
print({**b, **c})