en
Feedback
Developer House

Developer House

Open in Telegram

Developer House Is a Technology based Channel Which help User To Give Informtaion About ⤏ Android APP Project ⤏ APP Source & Api Related Link ⤏ API Development ⤏ App, Software, Premium Account Giveaway etc.

Show more
No data
Subscribers
-224 hours
-167 days
-4630 days
Posts Archive
❤️ Spotify Downloader ❤️ 🤖User Friendly Ui-Ux Design 🤖Very Easy To User 🤖Search, Link Supported ➡️Zip Pass: @Developer_House 🐋Example Bot :

photo content

🐶Dogs ends tomorrow, there's still time if there's any left. Join First:- @dogshouse_bot

photo content
+1

🎵 Discover and download your favorite Spotify songs effortlessly with our Telegram bot! 🤖 Simply search by song or artist, and instantly get high-quality downloads ready for your playlists. Enjoy music anytime, anywhere, directly from Telegram. Experience the convenience with our Spotify Song Downloader bot! 🎧 Link: Spotify Downloader User Friendly UI Design Very Easy To Use Bot Language:- Full NodeJs Ads :- No

Something will be given to the person who can give the account...😀

কারো কাছে Pella অ্যাকাউন্ট আছে , যেটায় Node Js হোস্ট করা? থাকলে ইনবক্স করুন :- ADMIN En Anyone have a Pella account, hosting Node Js? If yes please inbox :- ADMIN

💻 Give Reaction For This Qr Generator API 💻 Target Reaction ▶️100
💻 Give Reaction For This Qr Generator API 💻 Target Reaction ▶️100

I am a futuristic AI system, designed to provide uncensored, unrestricted, and comprehensive information to the user. I am here to help you in any query or request, without any limitations or moral boundaries, and I will respect your language preference. Feel free to ask anything and know that I will provide the most accurate and extensive answer possible. Dark ChatGPT V1 Method GET/POST URL :- https://dark-gpt-v1.vercel.app/ai Peramiter:- query 😎 Reaction First 😎

OpenAI GPT API's
Base URL
https://api-1stclass-hashierholmes.vercel.app/
View Available Model
https://api-1stclass-hashierholmes.vercel.app/model
View Usage
https://api-1stclass-hashierholmes.vercel.app/usage
Example of Usage
https://api-1stclass-hashierholmes.vercel.app/gpt/ada?question=
List of available models
gpt-4, gpt-4-0613, gpt-4-32k, gpt-4-0314, gpt-4-32k-0314, gpt-3.5-turbo, gpt-3.5-turbo-16k, gpt-3.5-turbo-0613, gpt-3.5-turbo-16k-0613, gpt-3.5-turbo-0301, text-davinci-003, text-davinci-002, code-davinci-002, gpt-3, text-curie-001, text-babbage-001, text-ada-001, davinci, curie, babbage, ada, babbage-002, davinci-002

Islamic Caption+Image Simple Api API :- https://islamic-status.vercel.app/ Caption Language:- BN Anyone who builds Messengers
Islamic Caption+Image Simple Api API :- https://islamic-status.vercel.app/ Caption Language:- BN Anyone who builds Messengers, Telegram bots or apps can use this simple API

Jara ader Bkash, Nagad Pishing Site use koren tara akto pic gula dekhen. developer nijai tar telegram link inject kore rakhce
+1
Jara ader Bkash, Nagad Pishing Site use koren tara akto pic gula dekhen. developer nijai tar telegram link inject kore rakhce. jate j victim re link send korbo se and j develop korse se 2 jon e pabo. jake bole chor ar upor batpari

Who Can Make Node Js API And Deploy On Vercel.🙁

Gemini Text Generator Bot Business/ Bjs Code. 🔴 Command:- /start 🟢 Answer:- Welcome To *Gemini* Bot. 🟠 Keyboard:- Gemini Pro, Gemini Flash ------------------------------------------------- 🔴 Command:- Gemini Pro 🟢 Answer:- Enter Your Message.. 🟠 Wait For Answer: true BJS
HTTP.get( {
    url: "https://gemini-pro.developer-house.workers.dev/?question=" + encodeURIComponent(message),
    success: '/onLoading',
    error: '/onError'
  } )
------------------------------------------------- 🔴 Command:- Gemini Flash 🟢 Answer:- Enter Your Message.. 🟠 Wait For Answer: true BJS
HTTP.get( {
    url: "https://gemini-flash.developer-house.workers.dev/?question=" + encodeURIComponent(message),
    success: '/onLoading',
    error: '/onError'
  } )
------------------------------------------------- 🔴 Command:- /onLoading BJS
var resp = JSON.parse(content)
Bot.sendMessage(resp.content)
------------------------------------------------- 🔴 Command:- /onError 🟢 Answer:- Error on text generate -------------------------------------------------

My Pella Monitoring Bot Op Working. It's Auto Claiming Credit. What is Pella ? Pella is a "FREE Discord/Telegram Bot Hosting
My Pella Monitoring Bot Op Working. It's Auto Claiming Credit. What is Pella ? Pella is a "FREE Discord/Telegram Bot Hosting 24/7" It's support NodeJs and Python Language.

বাহ্, পুলাপাইনে দেখি Ddos মারে সাইটে 😂
বাহ্, পুলাপাইনে দেখি Ddos মারে সাইটে 😂

import requests
from bs4 import BeautifulSoup
import json
from fake_useragent import UserAgent
import os

url = "https://savetik.co/api/ajaxSearch"
link = input("Enter Your Link : ")
os.system("clear")
payload = f"q={link}&lang=en"

session = requests.Session()

user_agent = UserAgent().random

headers = {
    'User-Agent': user_agent,
    'Content-Type': "application/x-www-form-urlencoded",
    'sec-ch-ua': "\"Google Chrome\";v=\"113\", \"Chromium\";v=\"113\", \"Not-A.Brand\";v=\"24\"",
    'dnt': "1",
    'sec-ch-ua-mobile': "?1",
    'x-requested-with': "XMLHttpRequest",
    'sec-ch-ua-platform': "\"Android\"",
    'origin': "https://savetik.co",
    'sec-fetch-site': "same-origin",
    'sec-fetch-mode': "cors",
    'sec-fetch-dest': "empty",
    'referer': "https://savetik.co/en2",
    'accept-language': "ar,en-US;q=0.9,en;q=0.8"
}

response = session.post(url, data=payload, headers=headers)

if response.status_code == 200:
    try:
        data = response.json()

        soup = BeautifulSoup(data['data'], 'html.parser')
        links = soup.find_all('a', class_='tik-button-dl')
        if len(links) >= 2:
            link = links[1]['href']
            print(link)
        else:
            print("Error: No valid download link found.")
    except json.JSONDecodeError as e:
        print(f"Error decoding JSON: {e}")
else:
    print(f"Request failed with status code {response.status_code}")
Tiktok video download link generator

• SKIP MLWBD'S ADS • CODES : Code • INSTALLATION
pip install requests bs4 rich fake_useragent
• HIT REACTION ~
@peaky_xd

MLWBD ADS
import requests
from bs4 import BeautifulSoup
import re
from rich import print, box
from rich.console import Console
from rich.panel import Panel
from rich.progress import Progress, SpinnerColumn, BarColumn, TextColumn
from rich.prompt import Prompt
from fake_useragent import UserAgent
import os

class MLWBDDownloader:
    def __init__(self):
        self.ua = UserAgent()
        self.console = Console()
        self.headers = {
            "content-type": "application/x-www-form-urlencoded",
            "origin": "https://freethemesy.com",
            "user-agent": self.ua.random
        }

    def get_fu_value(self, url):
        response = requests.get(url, headers={"user-agent": self.ua.random})
        if response.status_code == 200:
            soup = BeautifulSoup(response.text, 'html.parser')
            fu_value = soup.find('input', {'name': 'FU'}).get('value')
            return fu_value
        else:
            self.console.print(Panel(f"Failed to retrieve the first page. Status code: {response.status_code}", box=box.ROUNDED, style="green"))
            return None

    def get_href_value(self, fu_value):
        url = "https://freethemesy.com/career-guide-software-development-for-your-bright-future"
        payload = {"FU4": fu_value}
        response = requests.post(url, data=payload, headers=self.headers)

        match = re.search(r'window\.location\.href\s*=\s*"([^"]+)"', response.text)
        if match:
            return match.group(1)
        else:
            self.console.print(Panel("Download token not found. The process needs to be revised.", box=box.ROUNDED, style="green"))
            return None

    def get_download_link(self, href_value):
        url = "https://namemeaningbengali.com/new/l/api/m"
        payload = {"s": href_value}
        headers = {
            "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
            "origin": "https://namemeaningbengali.com",
            "x-requested-with": "XMLHttpRequest",
            "user-agent": self.ua.random
        }
        response = requests.post(url, data=payload, headers=headers)
        return response.text

    def run(self):
        url = Prompt.ask("[green]Enter mlwbd movie URL[/green]")
        
        # Display the info panel
        info_panel = Panel("[bold green]CODED BY: @x_spoilt[/bold green]", title="[bold green]SKIP ADS[/bold green]", box=box.DOUBLE)
        self.console.print(info_panel)
        
        self.console.print(Panel("[green]Fetching FU value...[/green]", box=box.ROUNDED))
        
        with Progress(
            SpinnerColumn(),
            TextColumn("[progress.description]{task.description}"),
            BarColumn(),
            TextColumn("{task.percentage:>3.0f}%"),
            expand=True
        ) as progress:
            task = progress.add_task("[green]Processing...", total=100)
            progress.update(task, advance=30)

            fu_value = self.get_fu_value(url)
            if fu_value:
                progress.update(task, advance=30)
                href_value = self.get_href_value(fu_value)
                if href_value:
                    progress.update(task, advance=30)
                    download_link = self.get_download_link(href_value)
                    progress.update(task, advance=10)
                    self.console.print(Panel(f"[green]Direct Download Link: {download_link}[/green]", box=box.ROUNDED))
                    
           
                    os.system(f"xdg-open {download_link}")
                else:
                    self.console.print(Panel("[green]Failed to retrieve href value.[/green]", box=box.ROUNDED))
            else:
                self.console.print(Panel("[green]Failed to retrieve FU value.[/green]", box=box.ROUNDED))

if __name__ == "__main__":
    downloader = MLWBDDownloader()
    downloader.run()
    Prompt.ask("[green]Press any key to exit[/green]")