Budget: 900 EUR Deadline: 12 days
No problem. What platforms? Are there renders? Is there an API, a website, and so on? Let's get into the details.
Create an application for calculating the cost of cleaning services.
Briefly: type of windows, level of dirtiness, presence of blinds, etc.
Cleaning by type of house/apartment/office, type of cleaning general/supportive, etc.
Dry cleaning sofas, chairs, etc.
Other additional services
Budget: 900 EUR Deadline: 12 days
No problem. What platforms? Are there renders? Is there an API, a website, and so on? Let's get into the details.
Budget: 800 EUR Deadline: 8 days
Good day!
I am ready to develop an application for calculating the cost of cleaning services taking into account all your parameters.
We can discuss all the details and start working!
I will be happy to collaborate!
Budget: 1000 EUR Deadline: 14 days
Hello! 👋
I propose to develop a mobile application for you on Android and iOS using Flutter, as well as prepare a modern UI/UX design in Figma.
I have over 7 years of experience in creating mobile applications and guarantee quality implementation and attention to detail.
Budget: 100 EUR Deadline: 1 day
Good day!
I propose a solution to your task — we will create a Telegram bot taking into account all your wishes. I have significant experience in developing similar solutions.
If this option does not suit you — I will gladly consider alternative approaches to find the optimal solution specifically for you.
I guarantee quick execution of the task for a minimal fee. I would be happy to familiarize myself with the full technical assignment and start our collaboration.
Have a nice day!
Budget: 1000 EUR Deadline: 1 day
Hello. I have experience with React Native/Node.js. Can I see the design and the technical specifications?
Budget: 100 EUR Deadline: 3 days
I can develop such an application for Windows with a simple interface and make it functional according to your calculation formulas. I will write it in Python.
Please write to me for clarification of details.
Budget: 900 EUR Deadline: 10 days
Good day!
A team of 6 developers is ready to create a chatbot for your store. Experience in bot development - over 3 years.
We can show a demo of similar solutions. Which messenger do you prefer and how many products are approximately in the catalog?
Here is the portfolio of one of our developers: https://hilrein.vercel.app
Budget: 2200 EUR Deadline: 10 days
Hello, Viacheslav!
I will help create an application/program, taking into account your wishes and specifications.
I have extensive experience in development using Python, React, and specifically in developing bots and applications. I hold 2nd place on the platform for development in Python.
You can check out my portfolio: Freelancehunt
I look forward to your response for further collaboration.
Budget: 150 EUR Deadline: 5 days
Good day, I am ready to complete your task, we just need to discuss the details regarding the visualization.
Budget: 100 EUR Deadline: 10 days
Hello, Vyacheslav.
I am ready to take on your project.
I will create the product you need and will support it if necessary.
Budget: 101 EUR Deadline: 4 days
Hello! 👋
I saw your project and it seemed interesting to me.
The idea of the application for calculating the cost of cleaning services is clear:
– different parameters (type of windows, level of contamination, presence of blinds),
– choice of cleaning type (general, maintenance, apartment/house/office),
– additional services like upholstery cleaning.
I can implement a convenient calculator where the client selects the necessary options step by step, and the system automatically calculates the final cost. It can be done as a web application or mobile (Android/iOS) — depending on your preferences.
It is also possible to provide for:
the ability to place an order immediately after the calculation,
integration with a payment system,
an admin panel for managing prices and services.
Please tell me which platform you would like to see the application on and whether you need online payment/application functions?
I would be happy to discuss the details and offer a solution tailored to your needs.
Budget: 100 EUR Deadline: 3 days
Good day, I propose to develop such a website. Python Django + ReactJS
I can manage it in 3 days.
My cases:
https://trafficgram.io/ru
@MBuxBot
@tontarot_bot
Budget: 900 EUR Deadline: 7 days
Good day!
Our IT studio specializes in the development of custom web applications. We offer to create a convenient and accurate cleaning service cost calculator for you.
We will develop a modern, responsive interface with a calculation logic that can be easily updated through an admin panel.
If needed, we will integrate the application with your website or CRM system.
Write to us, we will be happy to collaborate with you!
Budget: 100 EUR Deadline: 5 days
I am ready to implement your project — an application for calculating the cost of cleaning services. I will create a convenient calculator with the ability to select the type of premises, level of contamination, type of cleaning, upholstery cleaning, and additional options.
Budget: 400 EUR Deadline: 1 day
Hello!
Over 8 years of experience in mobile app development. Ready to develop the project. Please provide the complete specifications and design to understand the scope of work and to provide an estimate of time and cost.
Budget: 100 EUR Deadline: 1 day
Good day! 👋
I can create a calculator for calculating the cost of cleaning services taking into account the type of cleaning, level of dirt, furniture, additional options, etc. Please let me know if you need a web application or a mobile one, and if you need an admin panel for editing prices?
Budget: 100 EUR Deadline: 2 days
Hello!
I have experience in creating such calculators and can make a convenient application for calculating the cost of cleaning services and support it in the future.
I wanted to clarify: do you already have a ready design, or is it better to develop the style together, and on which platform is it more convenient to implement the solution - as a mobile application or in the format of a web application?
So when would it be convenient for you to discuss all the details?
Budget: 100 EUR Deadline: 1 day
Hello, I have experience in mobile app development from idea to publication. We need to discuss the details regarding the application logic. I will be happy to help you!
Budget: 100 EUR Deadline: 1 day
I will do it quickly and efficiently! Send the additional information that is needed, and I will complete it in a few hours.
Budget: 100 EUR Deadline: 5 days
Good day, Vyacheslav. I am engaged in the development and setup of Telegram bots. If you are interested, I can develop a chat bot with the necessary functionality and a user-friendly interface: calculations + application processing, notifications for managers (direct or group chat), admin panel for editing. I would be happy to discuss the details.
Budget: 100 EUR Deadline: 1 day
I will create an online calculator to calculate the cost of cleaning strictly according to your technical specifications: windows (type/dirtiness/blinds), type of premises, type of cleaning, furniture dry cleaning, additional services. Result: instant calculation + submission of application. Ready to start now.
As part of enhancing the cybersecurity level of our infrastructure, we need to abandon the practice of storing "eternal" and static API keys, passwords, and integration tokens in the configuration files (.env, appsettings.json, config.yaml) of our microservices. Business Goal: Create a single secure storage point for confidential data (secrets) with a mechanism for their automatic updating (rotation) in external systems on a schedule. Our other services will request current tokens "on the fly" via API, which will minimize damage in case of compromise of any system component.Security Model and Encryption (Crypto Core) No secret should be stored in plaintext in the database. Upon application startup, a Master Key is passed to the environment variables. If the key is missing or has an invalid length, the service should fail at the initialization stage with a clear error in the logs. Each secret is encrypted before being written to the database using this Master Key. Upon request, it is decrypted in memory and returned in the response body.Audit Logging (Audit Trail) Any action with secrets (creation, reading by the service, successful or unsuccessful rotation) must be recorded in a separate log file audit.log (or a separate table in the database). Strict Taboo: It is strictly prohibited to record the actual values of secrets in the audit log (neither in plaintext nor in encrypted form).
Need a specialist for writing parsers who can bypass CLOUDFRAME. Parsing of products occurs from sites with authorization. There are 10+ donors of varying complexity, with different levels of protection. Parsing of products occurs from sites with authorization. Parses data into a ready-made Mysql database + photographs on the server. It is necessary to write a parser according to the tasks described in the technical assignment and adapt the data to the existing database for full functionality on the site. Technical assignment and example donor upon request. Desktop parsers and C# are not considered.
Bot for mirroring positions on Binance Futures (Python) A bot is needed that reads my positions on Hyperliquid (public API) and Bitget Futures (my read-only key) and proportionally replicates them on my Binance USDT-M Futures via API. Logic: opening, increasing, partial closing, full closing — everything is mirrored with a customizable size ratio. Polling every 5–10 seconds. Correct handling of partial closures and averaging is mandatory. Requirements: notifications in Telegram about trades and errors; config (pairs, ratio, limits); deployment on my VPS + instructions; source code is transferred to me. I will enter the keys myself. Stages: 1) Hyperliquid→Binance, test with small amounts; 2) Bitget→Binance. Payment through safe in stages. In your response, indicate your experience with exchange APIs and how you will handle a partial closure of 30% of the position by the leader.
A deep technical verification of three PDF files for authenticity and possible signs of editing or forgery is required. Not only a visual assessment of the documents is needed. The performer must have a good understanding of the internal structure of PDF files and be able to analyze: file metadata; PDF structure and individual objects; creation history and possible editing; software used; embedded fonts, images, layers, and other elements; possible signs of re-saving, conversion, modifications, or backdating of the document; any technical discrepancies that may indicate manipulation of the files. Based on the verification results, a clear written conclusion regarding each file must be provided, indicating the identified signs, risks, and limitations of the verification. We are considering specialists who have practical experience in digital forensics, PDF document analysis, metadata, or verifying electronic files for authenticity. In your response, please briefly describe your experience, methods, and tools that you use for such verification.
The indicator for use in trading should determine certain ranges with history and analyze them with the current one.