Budget: 100 USD Deadline: 1 day
Good afternoon. I can implement in C# or C++. I will be happy to help.
Budget: 100 USD Deadline: 1 day
Good afternoon. I can implement in C# or C++. I will be happy to help.
Budget: 100 USD Deadline: 1 day
Good day, I can do it in C# or Python, and for a lower amount, but I need a little more information. If you're interested, write.
Budget: 100 USD Deadline: 2 days
From what I understand, your goal is to:
Take a string like AAAABBAABBAABBAABBAABKBB
Sort or compress/group it using a deterministic function
Then convert it into a simplified, ideally case-sensitive pattern like:
Aaaaabbbbbbb
Or intermediate: ABBAAABBA → Aaaabbbbbb
how I can assist:
✅ I can write a C program that will:
Read and process the input string
Identify and group repeating characters
Convert the output to your preferred format (e.g., upper-lower casing, group compression, etc.)
Ensure deterministic logic, so repeated runs always return the same result
The program will be clean, commented, and easy to adapt for future input variations (like ignoring or transforming special characters such as K).
Budget: 100 USD Deadline: 2 days
Hello,
ready to complete your task. I will fix all remarks, if necessary I will write comments to the code, taking into account your wishes.
Feel free to contact me, I will be happy to help.
Best regards,
Oleksandr
Budget: 100 USD Deadline: 1 day
Good afternoon
can do
-------------------------------------
Budget: 100 USD Deadline: 30 days
Hi there! I can help you create a script to sort the text as you described. I have experience with similar projects where I developed sorting algorithms and string manipulation techniques.
I can ensure that the output will match your expectations, transforming the given string in an efficient way. My goal is to provide you with a solution that is both effective and easy to understand.
Let's get started on turning that text into the desired format. I'm confident that I can deliver a working script that meets your requirements.
#include <ctype.h>
#include <sys/types.h>
#include <sys/malloc.h>
#define STRL_N 256 /*define string lenght*/
int main(int argc, char *argv[]){
const char *input_sample = "AAAABBaBAABbAABBAAABABKBB";
char *sample;
char *a_array;
char *b_array;
char c = ' ';
int i = 0;
int j = 0;
int c_a = 0; /*A_letter array count*/
int c_b = 0; /*B_letter array count*/
sample = (char*)malloc(sizeof(char) * STRL_N);
a_array = (char*)malloc(sizeof(char) * STRL_N);
b_array = (char*)malloc(sizeof(char) * STRL_N);
sprintf(sample,"%s",input_sample);
for(i=0;i<STRL_N;i++){
if((sample[i]=='A')||(sample[i]=='a')){
a_array[c_a]=sample[i];
c_a++;
}
else if((sample[i]=='B')||(sample[i]=='b')){
b_array[c_b]=sample[i];
c_b++;
}
}
/*print A_ARRAY*/
c_a = 0;
while(c!='\0'){
printf("%c",c);
c=a_array[c_a];
c_a++;
}
/*print B_ARRAY*/
c_b = 0;
for(i=0;i<STRL_N;i++){
printf("%c",b_array[i]);
}
printf("\n");
free(sample);
free(a_array);
free(b_array);
}
Output:
localhost$ ./a.out
AAAAaAAAAAAAABBBBbBBBBBB
* The beginning of source code:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/types.h>
#include <sys/malloc.h>
#define STRL_N 256 /*define string lenght*/
Here is BASH script
#!/bin/bash
input_sample="AAAABBaBAABbAABBAAABABKBB"
string_length=256
a_string=""
b_string=""
sample="$input_sample"
for ((i=0; i<${#sample}; i++)); do
char="${sample:$i:1}"
if [[ "$char" == "A" || "$char" == "a" ]]; then
a_string="$a_string$char"
elif [[ "$char" == "B" || "$char" == "b" ]]; then
b_string="$b_string$char"
fi
done
# Print A_ARRAY
printf "%s" "$a_string"
echo ""
# Print B_ARRAY
printf "%s\n" "$b_string"
exit 0
We are a large logistics company with our own exports. We have a large fleet of vehicles and we constantly send our own vehicles for export to European countries.Description Website: https://echerha.gov.ua/ On this website, we place our vehicles in an electronic queue for crossing the state border. During registration, the following data must be entered: driver's first and last name; foreign passport number; email address; logistics phone number for notifications; type of vehicle (cargo); manufacturer's name of the vehicle; state registration number of the tractor; state registration number of the trailer; customs declaration number. A specific day and time for crossing the border is predetermined for each vehicle. For example, the vehicle must pass through the "Rava-Ruska" checkpoint on Monday at 10:00.Our Problem - The queue on the website https://echerha.gov.ua/ moves unpredictably. - For example, today is Friday, and the vehicle must cross the border on Monday at 10:00. - We do not know exactly when the queue will start moving. This can happen on Friday evening, at any time on Saturday or Sunday, early in the morning, during the day, or late at night. - When the queue starts moving, it is immediately visible on the website. Sometimes, within just a few minutes, it can move from Friday to Monday or even to Tuesday. - Because of this, logistics personnel are forced to constantly monitor the mobile application or website to not miss the moment when the queue reaches the required date and time. If this moment is missed, we physically cannot place the vehicle in the queue for the needed time slot.Task - After entering the vehicle data (for example, into a table or another interface, depending on the programmer's implementation), the system should automatically track the movement of the queue. - When the queue reaches the predetermined date and time, the system should automatically fill in the necessary data and place the vehicle in the queue without the involvement of the logistics personnel.
Looking for an experienced TrinityCore 3.3.5a developer who has a good understanding of the core architecture, Battleground system, C++, SQL, and the WoW 3.3.5 client. A custom Battleground “Slavery Valley” has already been integrated into the project, transferred from AzerothCore to TrinityCore. The main part of the work has already been completed, but it needs to be brought up to Blizzard's standards.What has been done TrinityCore 3.3.5a + Eluna. The server is fully configured. The Battleground is integrated into the core. Entry into the BG works. Client UI works (partially). Most SQL and DBC have been transferred. Builds without errors.What needs to be done Fix remaining Battleground bugs. Bring the mechanics up to the level of official Blizzard Battlegrounds. Fix the match start phase. Implement correct starting gates/fire walls. Fix point capture mechanics. Fix match completion. Check score allocation and WorldState functionality. Fix remaining C++ and SQL issues. Conduct a full gameplay test.Requirements Mandatory experience: TrinityCore 3.3.5a; C++; SQL (MariaDB/MySQL); DBC; MPQ; Visual Studio; CMake; Git. Would be a big plus: AzerothCore; Eluna; experience in Battleground development; understanding of the client side of WoW 3.3.5a.Work format Work is staged. Mandatory testing after each stage. Each stage is accepted only after in-game verification. Clear reports on changes are required.In the future This is a long-term project. After completing the Battleground, the following is planned: transfer of new Battlegrounds; transfer of new arenas; new races; new classes; new game systems; further development of a custom World of Warcraft 3.3.5a server. Looking for a developer who has already worked with TrinityCore and can not only write code but also bring the system to a fully operational state.no server from 0 as I want If you are looking for a developer not just for one Battleground, but for creating a server from scratch, then the announcement should look something like this.Project Title Development of a World of Warcraft 3.3.5a server from scratch (TrinityCore / C++ / SQL / Eluna)Project Description Looking for an experienced TrinityCore 3.3.5a developer for long-term collaboration. I need a person who can develop a fully ready World of Warcraft 3.3.5a game server from scratch based on TrinityCore with further project development. The project is large and is expected to take several months of development.Project Foundation TrinityCore 3.3.5a. Maximally stable and close to Blizzard base. Eluna Lua Engine. MariaDB. Visual Studio + CMake. Git.What is planned to be implemented Fully operational server 3.3.5a. Fixing core bugs. Development of new game systems. Integration of custom Battlegrounds. Integration of new arenas. Transfer of useful modules from AzerothCore to TrinityCore. Development of custom modules. New PvP and PvE systems. New game events. Class balancing. Additional progression systems. Improvement of server performance.In the future After completing the basic part, the following is planned: new races; new classes; new zones; new dungeons; new raids; new Battlegrounds; new professions; new game mechanics; integration of modern systems into the 3.3.5a client.Developer Requirements Mandatory: Excellent knowledge of TrinityCore 3.3.5a. Confident knowledge of C++. SQL (MariaDB/MySQL). Git. Visual Studio. CMake. Understanding of TrinityCore architecture. Experience with Battleground, PvP, and game mechanics. Would be a big plus: Experience with AzerothCore. Eluna Lua Engine. Working with DBC and MPQ. Experience in creating custom game systems.Work format Work is staged. Each task is documented as a separate technical assignment. Mandatory testing after each stage. Work is accepted only after verification directly in the game. A developer is needed who can bring functionality to a fully operational state, not just write code.
Create compatibility between the ground control station, automatic start system (SAS), radar, and the aircraft.
Need an MTA:SA developer. I need help assembling a clean MTA:SA 1.6 mtasa-blue source on Windows. What needs to be done: 1. Set up the build environment: Visual Studio, Git, DirectX SDK, CEF, DLL, and other dependencies. 2. Build a clean mtasa-blue client/server. 3. Ensure the client runs without errors. 4. Explain which files/dependencies are needed. 5. Provide a brief guide on how I can rebuild the client myself. 6. Or help further via AnyDesk/Discord/Telegram. Important: - No bypassing anti-cheat. - No cheats. - No malicious code. - Only a legal build of the source and environment setup is needed. The result I want to achieve: - a built clean MTA:SA 1.6 client; - a built server or an explanation of how to build it; - a list of all dependencies; - a brief guide for rebuilding; - an explanation of what exactly was fixed. Or propose your price!
A program needs to be developed for Windows that allows connecting a jailbroken iPhone via USB cable and controlling it from a computer. Main functionality: Connecting the iPhone via USB. The program should quickly recognize the connected iPhone and operate through the cable to minimize delays and lags. Screen mirroring of the iPhone to the computer. (The phone's screen should be displayed on the computer in real-time) Controlling the phone using the mouse. The user should be able to click, swipe, scroll, and control the iPhone screen using the mouse from the computer. Text input from the computer. There should be a shared clipboard between the computer and the iPhone. File transfer from the computer to the iPhone. A function for uploading files from the computer to the phone's memory or to specific folders/apps needs to be added. Stable operation. The program should run smoothly, without significant delays, freezes, or connection drops. Compatibility: support for jailbroken iPhone, rootless jailbreak, iOS 16.7.12, connection via USB.