Охват к подписчикам
137,7%
ERR
Реакции к просмотрам
0,88%
424 на 20 постов
Пересылки к просмотрам
0,14%
67
Постов в день
0,0
всего 20
Где отзываются чаще
доля реакций к просмотрам- 28 авг. 2025 г.How are you?6,03%
- 28 авг. 2025 г.I often hear questions like these: • How to build a traffic/account farm? • How to build a system that runs 24/7? • What can such a system look like in production? • What stack and components might it use? I want to answer these questions here. For some, this will help to see possible directions for developing their own systems further.2,63%
- 28 авг. 2025 г.Implementation approach: Generate code using Claude/GPT, refine and refactor it, test locally, deploy to the server, and monitor. That’s all I wanted to share for now. Ad astra per aspera1,38%
- 25 окт. 2024 г.This is everything I wanted to say and all I wanted to teach you. You can support my project by subscribing to Patreon or sending some crypto (addresses are on YouTube). ☝️ As part of the Patreon subscription, I've added this course in an easy-to-read PDF version along with some bonuses: 1. The course in PDF format (67 pages) 2. A way for adding captions and transitions 3. A bonus section: abstract classes, interfaces, and contracts using this project as an example 4. I've also separately added a Prompt Builder with hidden columns and ready-made prompts I also want to express my gratitude to everyone who has already supported the project. I appreciate the support of each one of you. 🖤1,24%
- 28 авг. 2025 г.What requirements might such a system have? It should run autonomously on a server and provide convenient centralized management. The tech stack and architecture could look as follows: 1. API layer (FastAPI) — REST endpoints for managing accounts, tasks, schedules, and statuses. 2. Task queue (Celery + Redis) — background workers running 24/7 for generators, uploaders, and registrars. 3. Scheduler — Celery Beat + synchronization of schedules from the database (dynamic periodic tasks). 4. Database — SQLite for local development, PostgreSQL in production (via SQLAlchemy + Alembic). 5. Admin panel (React Admin) — dashboard to manage all entities, runs, statuses, and logs; manual starts and timers. 6. Notifications — simple Telegram wrapper to notify about errors or successes. 7. Logging — JSON logging for API and workers.1,05%
- 23 окт. 2024 г.Before developing the final class VideoGenerator, the project structure should look as follows.0,73%
- 28 авг. 2025 г.Example of running the backend/frontend locally: • Backend — uvicorn app.main:app --reload • Frontend — npm run dev * In production, the system runs in Docker containers or via systemd services.0,68%
- 28 авг. 2025 г.🔄 How everything connects 1. The frontend / admin panel sends a request to the API (e.g., "create a task to post an image"). 2. The request goes to the router, where it is validated via schemas. 3. The application logic is executed through services. 4. If something heavy needs to be done (e.g., uploading an image to Pinterest), the service sends a task to Celery, which is processed by a worker in the background. 5. The result is stored in the database. 6. The frontend can fetch the task status or statistics through another route.0,65%
- 28 авг. 2025 г.Example structure of such a project0,64%
- 24 окт. 2024 г.You should end up with video files like this. * For now, adding transitions and subtitles can be something for you to think about.0,63%
- 28 авг. 2025 г.Pay attention to the project structure: Backend — a FastAPI application that handles all the logic: it stores data in the database (accounts, tasks, schedules, media), accepts requests via API routes, validates and processes them (schemas + services), and delegates heavy tasks (image/text generation, post uploads) to background tasks via Celery. Frontend (admin panel) — a React Admin application that provides a user-friendly interface: you can add accounts, configure modules, create tasks, and view statistics. It’s a convenient dashboard that communicates with the API, while all data and operations come from the backend.0,58%
- 23 окт. 2024 г.Method execute: 1. Accept an argument containing the search keyword for the video (query), and also set the parameters page, per_page, orientation with default values: def execute(self, query, page=1, per_page=10, orientation='portrait'): 2. Form the endpoint path: endpoint = 'https://api.pexels.com/videos/search' Alternatively, set it as an object attribute: self.endpoint. 3. Create a dictionary with parameters: params = {'query': query, 'page': page, 'per_page': per_page, 'orientation': orientation} 4. Send a request to the target endpoint by calling the make_request method and passing the endpoint and parameters. 5. Obtain the JSON response from the request. 6. Extract video links from the JSON response. 7. Save several videos in the folder for the 3rd or 4th scene of the script.0,54%