Data structures algorithmsprojekty

Filtruj

Moje ostatnie wyszukiwania
Pokaż:
Budżet
dla
dla
dla
Typ
Umiejętności
Języki
    Stan Projektu
    2,000 data structures algorithms znalezione projekty, cennik w USD

    Będzie to aplikacja obsługowa, nastawiona przede wszystkim na użyteczność i wygodę / A service application focused on minimalism and customer comfort. Zespół stworzył procesy, flow oraz szkielet / My team wrote business processes, structures and skeleton. Zapraszam do współpracy. Więcej szczegółów po podpisaniu NDA.

    $21 / hr (Avg Bid)
    $21 / hr Średnia Oferta:
    3 składanie ofert
    Java Genetic algorithms Zakończone left

    Projekt nr 1: Prosty algorytm genetyczny Prosty AG maksymalizujący funkcję kwadratową ?(?) = 〖ax〗^2 + ?? + ? dla ? ∈ {0, 1, 2,⋯, 255}. Wejście: Parametry: a, b, c – współczynniki równania kwadratowego liczba populacji, liczność populacji (150 - osobników = lb.pop. x ) liczba uruchomień programu prawdopodobieństwo krzyżowania prawdopodobieństwo mutacji Wyjście: Wypisanie wartości funkcji przystosowania najlepszego osobnika w ostatniej populacji. Wypisanie osobnika (odkodowany) - do pliku. 1. Kodowanie: osobnik ciąg długości mogący zapisać 256 informacji 256 = 2^8 - ciąg długości 8; np. 0 --> 00000000 56 --> 00111000 255 --> 11111111 2. krzyżowanie: 2 + 2 (dwoje rodziców, dwóch potomków) a) losujemy osobniki w pary b) losujemy ...

    $30 (Avg Bid)
    $30 Średnia Oferta:
    1 składanie ofert

    Senior Computing Engineer, praca zdalna (machine learning, data science, optimization, operations research, genetic algorithms) Poszukujemy programisty Senior Computing Engineer do współpracy przez około 30 godzin w tygodniu. Jesteśmy otwarci na młodych absolwentów oraz studentów studiów doktoranckich. Osoba na tym stanowisku będzie zajmowała się zagadnieniami związanymi z machine learning, data science, optymalizacją, operations research, algorytmami genetycznymi i innymi metodami scientific computing. Przez optymalizację należy rozumieć optymalizację matematyczną, a nie optymalizację kodu. Nie trzeba znać wszystkich tych zagadnień, aby aplikować. Wystarczy dobrze znać jedno z nich i być otwartym na nauczenie się pozostałych. Stano...

    $15 / hr (Avg Bid)
    Lokalna
    $15 / hr Średnia Oferta:
    1 składanie ofert

    Discrete optimization ( project for universities) Time: 2.5 weeks Project topic: Compare different graph coloring algorithms Technology of execution: C ++ The content of the task: Please write a program in C ++, which will compare the difference in speed, amount of data, etc. of coloring graphs with any algorithms (at least 3). It would be good if the project included comments and the code was clear and legible. ----------------------------------------------------- Optymalizacja Dyskretna ( projekt na uczelnie) Termin: 2,5 tygodnia Temat projektu: Porównaj różne algorytmy kolorowania grafów Technologia wykonania: C++ Treść zadania: Proszę o napisanie programu w C++, który będzie porównywał różnice w szybkości, ilośc...

    $60 (Avg Bid)
    $60 Średnia Oferta:
    2 składanie ofert
    Multi-threaded Server Zakończone left

    Concurrency and communication between processes and threads. Multi-threaded server (in C on Linux), application signature, data protection SSL encryption. Functionality: - The ability to log - Allowing connections to another unit via LAN (TCP/ IP) - The use of semaphores - Shared memory, etc. There must be a description of the algorithms Enough ability to support the console (terminal) (without GUI)

    $26 (Avg Bid)
    $26 Średnia Oferta:
    4 składanie ofert
    105514 pozycjonowanie Zakończone left

    Witam serdecznie, zlecę pozycjonowanie serwisu na poszczególne frazy: hale stalowe projektowanie hal stalowych budowa hal stalowych konstrukcje stalowe projektowanie hal przemysłowych budowa hal przemysłowych xsteel tekla structures

    min $2
    min $2
    0 składanie ofert

    ...<arpa/inet.h> #include <netinet/in.h> #include <errno.h> #include <fcntl.h> #include <stdio.h> #include <netdb.h> #include <stdlib.h> #include <string.h> #include <unistd.h> int main(int argc, char **argv) { u_short port; /* user specified port number */ char addr[1023]; /* the address */ struct sockaddr_in address; /* address structures */ struct hostent *host_info; /* host info structure */ short int sock = -1; /* the socket descriptor */ port = atoi(argv[1]); addr = strncpy(addr, argv[2], 1023); bzero((char *)&address, sizeof(address)); /* init addr struct */ address.sin_addr.s_addr = inet_addr(addr); /* assign the address */ address.sin_port = htons(port); /* translate int2port num */ /* ...

    $30 (Avg Bid)
    $30 Średnia Oferta:
    1 składanie ofert
    80594 SEO Analyst Zakończone left

    The role is of high priority for the company and the successful candidate will fulfil the following expectations: &#183; 2+ years of proven SEO experience required &#183; Strong Knowledge of Google algorithms and ranking strategies &#183; Detailed knowledge of the internet market including job sites, blogging and social networking. &#183; Able to analyse web pages and make detailed SEO recommendations &#183; Working knowledge of HTML, CSS &#183; Proficiency with SEO and keywords research Tools, Google Analytics, Microsoft Word, and Excel &#183; Enthusiasm for and a commitment to keep up to date with current SEO strategies and algorithm changes &#183; Detail-oriented with strong organizational and reporting skills &#183; Self-motivated, di...

    min $2
    min $2
    0 składanie ofert
    12936 Algorytmy Zakończone left

    Potrzebuje rozwiazac takie zadanka. Algorithms must be written in pseudocode 1. Show the computation of the subset sum algorithm on the following data: the elements' weights are 8,5,10,3,6,8,2; the capacity of the bin is 20. Just draw an appropriate array and fill it like we did in class. Before doing that permute the elements in your own way (leave 2 as the last item). If the answer is positive list the elements whose weights sum up to the capacity of the bin. 2. When playing a game you are at position 0 initially. You can perform three types of moves, improving your position by 1, 2 or 3. Write a dynamic programming algorithm that computes in how many ways you can improve your position from 0 to n. For example, if n = 3, you can make it in 4 ways: 1+1+1 or...

    $2 - $12
    $2 - $12
    0 składanie ofert

    Write a program that implements the divide and conquer algorithm for finding two closest points on the plane. Details: input, to be read from the standard input stream: line 1: integer n, 2 <= n <= 1 000 000 line 2: integers x1, y1, -1 000 000 000 < x1,y1 < 1 000 000 000, separated by a space, specifying coordinates of point 1 line 3: similar, coordinates of point 2 ... line n+1: coordinates of point n output to the standard output stream: integer z, value of which is the square of the distance between the closest points Sample input: 3 1 1 -2 0 3 &#8211;2 Output: 10 Other requirements: For sorting (the initial phase of the algorithm) make your own implementation of mergesort. Programming language: C or C++. The program should run under Gnu gcc or g++...

    $2 - $10
    $2 - $10
    0 składanie ofert

    Write a program that implements the divide and conquer algorithm for finding two closest points on the plane. Details: input, to be read from the standard input stream: line 1: integer n, 2 <= n <= 1 000 000 line 2: integers x1, y1, -1 000 000 000 < x1,y1 < 1 000 000 000, separated by a space, specifying coordinates of point 1 line 3: similar, coordinates of point 2 ... line n+1: coordinates of point n output to the standard output stream: integer z, value of which is the square of the distance between the closest points Sample input: 3 1 1 -2 0 3 &#8211;2 Output: 10 Other requirements: For sorting (the initial phase of the algorithm) make your own implementation of mergesort. Programming language: C or C++. The program should run under Gnu gcc or g...

    $7 (Avg Bid)
    $7 Średnia Oferta:
    1 składanie ofert

    Potrzebuje rozwiazac ZADANKA Hej mam problemik z robieniem zadanek na algorytmy "Applied Algorithms and Structures" oraz z Java Aplets itp. "Object-Oriented Enterprise Computing" Musze oddac jeszcze po 3 zadania z kazdego z tych przedmiotow ... Przykladowe zadanka umieszczam w ZALACZNIKU jako Plik *.JPG zadanko z "Object-Oriented Enterprise Computing" potrzebuje na WCZORAJ ! czyli: plik Dobrze zaplace - Pewna wplata na konto (50% wartosci) juz po 1 zadaniu , nastepne moge dokonac nawet przed otrzymaniem zadan Zaplace Dobrze i SZYBKO ale SPRAWA PILNA (zadanie ) PROSZE O KONTAKT kom.793311983 - Prosze dzownic albo wyslac sms oddzownie i sie dogadamy @mail: gk83@ - ale lepije dac znac na komorke oddzownie... np: S...

    $2 - $31
    $2 - $31
    0 składanie ofert

    I'm in need of an architectural designer, expert in creating modern residential structures. My plan is for a two-story home and I'd love for it to encapsulate a modern aesthetic. Your tasks, should you be chosen for the job, will include: - Developing a comprehensive architectural plan that incorporates modern design elements. - Conceptualizing and materializing my vision into a stunning yet functional two-story residence. - Suggesting the best ways to utilize space and ensure the home is bright, airy, and spacious. Ideal skills and qualifications: - Extensive experience in residential architectural design, particularly modern aesthetics. - Understanding of efficient space planning and use. - Excellent communication skills to effectively translate my ideas into a co...

    $45 (Avg Bid)
    $45 Średnia Oferta:
    3 składanie ofert

    I need an AI expert to develop and integrate a simulator into my Shopify store, that focuses on wallpaper and fabric application. Key Features: - The simulator should use both virtual room visualization or uploaded by customer and fabric draping simulation for a realistic user experience. Ideal Skills: - Proficiency in AI algorithms and Shopify integration - Experience with fabric and wallpaper visualization or related field - Strong understanding of UI/UX design for a seamless customer journey - Proven track record with similar projects. Thanks

    $597 (Avg Bid)
    $597 Średnia Oferta:
    42 składanie ofert

    I require a skilled professional to design a new driveway addition and front porch steps at my residence. KEY SPECIFICATIONS: - The project involves an addition to an existing...already on the site. - The chosen material for the driveway and front porch steps is concrete. The project will therefore need your expertise in handling and designing concrete structures for residential spaces. - The new concrete structures should have a Broom Finished Concrete finish; experience with this finish is required. IDEAL SKILLS AND EXPERIENCE: - Proven experience in concrete work especially driveways and steps - Ability to design and execute a half-moon shaped driveway - Proficiency in creating Broom Finished Concrete structures - Good understanding of blending new additions w...

    $113 (Avg Bid)
    $113 Średnia Oferta:
    21 składanie ofert
    YouTube SEO Specialist Needed -- 2 6 dni left
    ZWERYFIKOWANY

    ...Implement effective SEO strategies to improve video rankings on YouTube search results, enhancing the video visibility to my target audience. Ideal Candidate: • Experience in YouTube SEO is a must. • Proven track record of improving video rankings. • Experience with SEO optimization in the field of Educational Tutorials would be a strong advantage. • Deep understanding of YouTube's ranking algorithms and strategies for search relevancies. • Must be results-driven and focused on achieving the ultimate goal of increasing video visibility. This is a fantastic opportunity for someone who is passionate about SEO and understands the intricacies of YouTube. If you're that person, I look forward to your bid. l YouTube Channel url:

    $17 / hr (Avg Bid)
    $17 / hr Średnia Oferta:
    54 składanie ofert
    Instagram Business Promotion 6 dni left
    ZWERYFIKOWANY

    I'm looking to attract young adults and parents to my business using Instagram. For this, I plan to post product photos and engaging advertisements. The ideal freelancer for this task should have: - Experience managing social media accounts, particularly Instagram. - A knack for taking eye-catching product photos and creating dynamic ads. - An understanding of Instagram's algorithms for maximum visibility amongst my target audience. - The capability to interact with followers in a pleasant and professional manner, acting as the voice of my business. - Skills in tracking and interpreting Instagram analytics to adjust our strategy based on results. By effectively managing my Instagram, you'll help drive business growth and boost brand visibility.

    $146 (Avg Bid)
    $146 Średnia Oferta:
    49 składanie ofert

    I'm looking for a talented content creator to produce engaging and high-quality videos for my YouTube channel. Key Requirements: - Video Type: The content will primarily consist of 5-10 minute videos. - Youtube Expertise: A good understanding of YouTube's standards, algorithms and trends is crucial. - Creativity: Ability to come up with fresh, interesting video ideas that resonate with today's audience. - Editing Skills: Proficiency in video editing software is a must. Ideal Skills: - Video Production - YouTube Marketing - Video Editing - Creative Writing - Understanding of the YouTube platform and its audience - Ability to create engaging content If you have a knack for creating compelling videos and understand the demands of YouTube, I'd love to hear from ...

    $13 (Avg Bid)
    $13 Średnia Oferta:
    15 składanie ofert

    I'm in need of a highly-skilled Unity 3D artist with a strong understanding of computer algorithms. The objective is to create an engaging educational video that accurately portrays sorting and searching algorithms. Ideal Skills: - Unity 3D and Visual Effects Creation - Advanced understanding of Computer Algorithms - Able to translate complex concepts to visual elements The successful bidder should have the ability to breakdown and simplify advanced level content, making it easy to understand even for novices. Knowledge in computer studies would greatly benefit the project. Your main task will be to represent sorting and searching algorithms effectively in 3D. Please provide any past samples that showcase your ability to visualize complex concepts in a...

    $249 (Avg Bid)
    $249 Średnia Oferta:
    3 składanie ofert

    I’m seeking a highly skilled data scientist or analyst to develop an innovative AI/ML system with distinct functionalities. Ideal skills should include: • Extensive experience with AI/ML models. • Known for providing solutions with Natural Language Processing (NLP) capabilities, recommendation systems, data analysis, and data visualization. • Proficiency with QR, WhatsApp, LLM, DB, managing user profiles, cataloguing orders, generating recommendations, and facilitating payment systems. 1. Implement a QR code as the entry point for users to access WhatsApp chat. 2. Utilize WhatsApp APIs to initiate chat sessions. 3. Employ Language Model (LM) capable of Hindi, English, and Hinglish for conversational interactions. 4. Integrate LM with backend lo...

    $157 (Avg Bid)
    $157 Średnia Oferta:
    3 składanie ofert
    TradingView Pine Script Automation 6 dni left
    ZWERYFIKOWANY

    I'm seeking a skilled Pine Scri...main task is to create a fully automated script that can execute trades on my behalf based on the pre-defined strategy rules. Ideal skills and experience: - Proficiency in Pine Script and a good understanding of TradingView's functionalities - Experience in developing advanced trading strategies and algorithms - Solid knowledge of automation, including setting up triggers, alerts, and real-time trade execution - Adept at debugging and refining scripts based on backtesting results and real-time data If you have a proven track record in automated trading script development and are comfortable with the complexity of my strategy, I'd like to hear from you. Please provide examples of your previous Pine Script projects and detail y...

    $127 (Avg Bid)
    $127 Średnia Oferta:
    8 składanie ofert

    ...am seeking a coder versed in both C and Matlab to transform a small-sized C code into an efficient Matlab version. The C code involves complex loops and data structures which are to be accurately replicated in Matlab. Key tasks: - Conversion of input/output handling from C to Matlab - Translation of mathematical operations to Matlab functions/specifications - Re-implementation of control flow logic in Matlab environment The freelancer should possess experience with both C and Matlab, demonstrating a clear understanding of both the syntax and structures of the two languages. Familiarity with intermediate-level loops and data structures in the application of code translation is a plus. The project demands a meticulous approach to ensure the converted...

    $13 (Avg Bid)
    $13 Średnia Oferta:
    5 składanie ofert

    I'm looking for a dynamic social media strategist with an exclusive focus on Twitter. As a client, I have the following requirements: Con...on Twitter. Target Audience: • The target demographic is businesses, so experience in B2B marketing and understanding business needs are crucial. Skills and Experience: • Proven success in enhancing Twitter profiles in the past • Knowledge in creating captivating content that drives engagement • Demonstrated ability to reach out to businesses on social platforms • An understanding of Twitter algorithms and scheduled postings. Your tasks will include content creation, scheduling posts, and mutually interacting with businesses on Twitter. A strong comprehension of the business market and creative thinking will giv...

    $29 / hr (Avg Bid)
    $29 / hr Średnia Oferta:
    21 składanie ofert

    I'm seeking a professional programmer to help me create an effective Twitter bot. The main purpose of this project is to find the most viral tweet from the previous week. Key Features: - The bot should be able to ide...between tweets based on their views to followers ratio and identify the 'most viral' one. Ideal Skills & Experience: - Proficient in creating Twitter bots. - Strong understanding of Twitter API and scraping tools. - Familiarity with tweet analytics and calculations. - Ability to extract and process data efficiently. The end goal of this project is to have a functional tool that can accurately pinpoint the most viral tweet of the week. It is essential that the developer is skilled at creating algorithms that can measure and compare the �...

    $153 (Avg Bid)
    $153 Średnia Oferta:
    22 składanie ofert

    ...stronger online presence. * Key Tasks: - Develop and implement effective SEO strategy - Optimize website and content for search engines - Perform keyword research in line with our target market - Generate SEO reports on website's performance * Ideal Candidate: - Demonstrated experience in SEO - Knowledge of ranking factors and search engine algorithms - Strong analytical skills for understanding ranking algorithms - Proficiency in web analytics and keyword tools - Understanding of local SEO tactics and strategies Your expertise should help me take advantage of business opportunities within our local market. Please apply if you are confident in delivering high-quality, targeted traffic, and better search engine rankings....

    $96 (Avg Bid)
    $96 Średnia Oferta:
    96 składanie ofert

    I am seeking a specialist to create a Word to PDF conversion tool. The tool should be capable of batch processing to manage multiple Word documents at a time. Maintaining the original document'...tool. The tool should be capable of batch processing to manage multiple Word documents at a time. Maintaining the original document's layout is essential, but minor adjustments are acceptable. - Ideal Skills: Experience in Word and PDF software, batch processing systems, and document formatting. - Experience Required: Proven experience with similar projects, knowledge about Word and PDF file structures, and a knack for preserving layout with acceptable minor changes. Capable candidates, bring your expertise to the fore and support this endeavor in transforming Word documents in...

    $2 / hr (Avg Bid)
    $2 / hr Średnia Oferta:
    77 składanie ofert

    I'm in need of an experienced developer to implement crucial updates to my Accuster Support App. Updates include: - Backend Functionality: A change in the current system that will affect the way links are processed. You must have experience in link redirection and the ability to redirect links to externa...developer to implement crucial updates to my Accuster Support App. Updates include: - Backend Functionality: A change in the current system that will affect the way links are processed. You must have experience in link redirection and the ability to redirect links to external websites. The ideal candidate should intimately understand API integrations as well as the intricacies of database structures. Strong experience in user authentication is equally crucial to succee...

    $12 (Avg Bid)
    $12 Średnia Oferta:
    2 składanie ofert

    ...product, customer, and order data from my current Shopify store to a new WooCommerce setup. Key tasks will include: - Migrating product data, customer data, and order history from the Shopify platform to WooCommerce - Ensuring no complex customizations or integrations of the Shopify store are necessary for the project - Successfully replicating the functionality of my current Shopify store on the new WooCommerce platform If you are skilled in eCommerce migrations and have a knack for maintaining the organizational integrity of already set up functionalities, consider bidding! I look forward to a seamless transition without impact on my present business model or operations. Familiarity with Shopify and WooCommerce structures and a proven track record in...

    $112 (Avg Bid)
    $112 Średnia Oferta:
    124 składanie ofert
    Google On-Page SEO Specialist 6 dni left
    ZWERYFIKOWANY

    I'm looking for an experienced professional capable of optimizing my website's on-page SEO, specifically focusing on content development and keyword optimization. Mastery of Google's search algorithms is crucial. Key tasks include: - Developing relevant and engaging content with optimized keywords - Conducting detailed keyword research The ideal candidate would have proven experience with on-page SEO and an understanding of how to apply these techniques effectively to climb Google's search rankings. Resourcefulness, creativity, and an in-depth understanding of SEO best practices are essential to perform well in this project.

    $250 - $750
    Ukryte
    $250 - $750
    106 składanie ofert

    I need an experienced structural engineer to help with load calculations for an industrial facility. The primary material used in the structure is steel, so familiarity with steel structures is essential for this project. The structure in question is an industrial facility. Therefore, the calculations must be robust and able to support the industrial activities within the facility. Ideal skills and experience for this job include: - Proven experience in structural engineering, particularly in steel structures - Proficiency in conducting load calculations - Experience with industrial facilities would be a plus

    $451 (Avg Bid)
    $451 Średnia Oferta:
    28 składanie ofert

    I am currently seeking an Arduino expert to enhance a project focused on...sensors should effectively detect people while minimizing false positives caused by small, irrelevant objects. The ideal candidate for this project should possess: Extensive experience in Arduino-based development, particularly with photoelectric sensors. Proficiency in testing the system for accurate people detection and troubleshooting any potential issues. Knowledge of human body detection algorithms and sensor tuning would be highly advantageous. I propose an hourly-based engagement via Zoom to discuss and address the project. While we have a functional system and code in place, it is encountering some issues. Thank you for your consideration. I look forward to potentially collaborating with you on thi...

    $21 / hr (Avg Bid)
    $21 / hr Średnia Oferta:
    19 składanie ofert

    I'm in need of a skilled carpenter to craft a traditional-style wooden gate for my home. The ideal freelancer for this project should have experience in woodworking, particularly in crafting gates and similar structures. Key Requirements: - Proficient in working with wood - Prior experience in creating gates is a plus - Ability to interpret and work from a design or reference image Please provide samples of your previous work, especially any similar projects you've done in the past. Your understanding of traditional gate design is essential. I will also appreciate if you can provide a rough timeline for completion of the project.

    $25 - $312
    Lokalna
    $25 - $312
    0 składanie ofert
    Twitter Trend Specialist Needed 6 dni left
    ZWERYFIKOWANY

    I'm seeking a developer who can help me trend on Twitter. Our goal is to increase visibility and create a social buzz. Key Responsibilities: - Crafting a strategy to make our topic trend - Implementing the strategy to achieve the number 1 spot - Ensuring the trend reaches a wid...social buzz. Key Responsibilities: - Crafting a strategy to make our topic trend - Implementing the strategy to achieve the number 1 spot - Ensuring the trend reaches a wide audience This project does not come with a specific deadline, allowing for flexibility in the execution. Ideal Skills and Experience: - Proven track record in making topics trend on Twitter - Understanding of Twitter algorithms and trends - Creativity in ensuring our topic stands out - Experience in social media marketing or...

    $469 (Avg Bid)
    $469 Średnia Oferta:
    42 składanie ofert
    Ute Tray Manufacturing Drawings 6 dni left
    ZWERYFIKOWANY

    I'm in need of a professional draughtsman experienced in manufacturing and auto engineering to create fabrication drawings for dual cab, single cab, and space cab Ute trays. These drawings should be highly detailed and catered towards manufacturing purposes. Here's what I expect: - Design and drafting of Ute tray structures for all three models - No specific features are required, you have the discretion in the design process. The ideal candidate for this job will have: - Experience in the related field - A good understanding of Ute trays and their fabrication - Proficiency in using CAD or any other relevant drafting software - Ability to deliver on a tight deadline, as the project is to be completed ASAP This is a task that requires a high level of skill and precis...

    $103 (Avg Bid)
    $103 Średnia Oferta:
    21 składanie ofert

    I'm in need of an AI/ML expert with a strong background in reinforcement learning algorithms and federated learning frameworks. Here’s what I’m looking for: Skills & Experience - Solid knowledge and experience with reinforcement learning algorithms and federated learning frameworks. This is a non-negotiable. Objective - The primary aim of this project hasn't been decided yet. But your suggestions and professional advice will be very much appreciated, and potentially, highly impactful to the project's direction. Target Platform - No specific platform has been decided for deploying this project yet. However, your insights will be valuable in making this determination. Feel free to bid if you have the necessary skills and experience. Let'...

    $190 (Avg Bid)
    $190 Średnia Oferta:
    34 składanie ofert
    Excel Data Blending in Alteryx 6 dni left
    ZWERYFIKOWANY

    I am looking for a skilled Alteryx expert who can take on a project involving data blending from complex Excel spreadsheets. The project specifically involves: - Utilizing Alteryx for blending data from multiple sheets in Excel - Handling complex data structures within the Excel spreadsheets, including nested tables and formulas. Ideal candidates will have: - Proven experience with Alteryx, particularly in handling data blending tasks - Strong understanding of complex data structures, like those found in nested tables and formulas in Excel This project requires a high level of attention to detail and proficiency in data manipulation, so please only apply if you have the necessary expertise.

    $21 / hr (Avg Bid)
    $21 / hr Średnia Oferta:
    32 składanie ofert

    ...effective and user-friendly matchmaking algorithm for an optimal user experience. This will play a vital role in the overall success of the app. • Messaging System: Allow seamless communication between prospective partners. Ideal Skills and Experience: Strong knowledge of app development across multiple platforms, prior experience in similar apps, especially with the development of matchmaking algorithms and secure messaging system, will be extremely beneficial....

    $257 (Avg Bid)
    $257 Średnia Oferta:
    15 składanie ofert

    I need to make a project for the university, on the subject Basics of computer graphics. The task is to implement a simple graphics card (gpu). And also ...izg_enqueue - the functionality of the video card implemented by you. In the student/ file, you implement the prepareModel, drawModel_vertexShader, and drawModel_fragmentShader functions. These functions are used to process the loaded model file into the graphics card memory and command buffer. In addition, the folder contains the file student/ - it contains declarations of structures and constants. The project is written on Linux, but is also suitable for Windows in Visual Studio and CMake. The task consists in adding and files Also, program testing is already configured. Deadline 22.05

    $118 (Avg Bid)
    $118 Średnia Oferta:
    10 składanie ofert

    ...to ensure that they meet all structural integrity requirements. - Compliance with Building Codes: The plans need to comply with all relevant building codes in Texas. You should have a deep understanding of these codes and be able to ensure that the plans adhere to them. - Room Additions: The projects involve room additions. It is crucial that the framing plans are suited to support these new structures. The ideal candidate will have: - A license as a structural engineer in Texas. - Prior experience with residential addition and remodel projects. - A keen eye for detail and the ability to assess whether a structure is safe and sturdy. - Strong knowledge of building codes in Texas. Please make sure that you are based in Texas and have the necessary qualifications before ...

    $429 (Avg Bid)
    $429 Średnia Oferta:
    36 składanie ofert

    I'm seeking a social media expert to create entertaining reels for my Instagram and TikTok accounts. Key Requirements: - **Platform & Length**: The reels should be more than 30 seconds and tailo...Instagram and TikTok accounts. Key Requirements: - **Platform & Length**: The reels should be more than 30 seconds and tailored specifically for Instagram and TikTok. - **Style of Content**: The reels should be entertaining, engaging, and suitable for my audience on those platforms. Ideal Candidate: - Experience in creating successful social media reels. - Understanding of Instagram and TikTok algorithms. - Proven creativity in generating entertaining content. - Strong grasp of current social media trends. - Excellent communication skills to understand and align the conte...

    $98 (Avg Bid)
    $98 Średnia Oferta:
    70 składanie ofert

    ...and prototypes Ensure a consistent, modern, and locally-relevant visual identity Focus on accessibility and inclusive design practices App Development User Registration and Profiles (Riders and Drivers) Real-time Mapping and Location Tracking (GPS integration) Browse Available Shared Routes/Taxis For select members/routes: On-demand Booking and Pickup Requests Route Planning and Optimization Algorithms In-App Messaging between Riders and Drivers Push Notifications for Ride Updates and Promotions Secure Payment Integration (Cash and Digital Payments) Rating and Review System for Drivers Driver App for Accepting/Rejecting Rides, Navigation, Earnings Tracking Admin Panel for Route Management, User Management, Analytics/Reporting The app should leverage cutting-edge technologies, wi...

    $2387 (Avg Bid)
    $2387 Średnia Oferta:
    138 składanie ofert

    ...structural engineers, CAD engineers, interior designers, rendering experts, estimation engineers, and drafting engineers, each with more than 3 years of experience. Together, we have successfully managed and completed projects of varying complexities. Our scope of services includes: 1. Structural design for RCC buildings, Bridges and culverts, steel composite structures, pipe rack, water retaining structures, industrial buildings, and wooden structures 2. Structural drafting for various buildings and infrastructure, architectural drafting and preparation of GAD for infrastructure projects 3. Architectural planning and elevation design, incorporating MEP design layouts 4. Interior and exterior designs, Exceptional renderings, Landscape designing accompanied by rende...

    $15 (Avg Bid)
    $15 Średnia Oferta:
    1 składanie ofert

    ...educational videos. The primary content is health information for women. The target audience includes students, professionals, and hobbyists alike, with the main goal being to make this information accessible to anyone in need. Skills & Experience Required: - YouTube Certified Strategist - A proven track record in boosting YouTube video engagement - Remarkable understanding of SEO and YouTube algorithms - Excellent knowledge in health education sector - Ability to understand and connect with the needs of varied audiences (students, professionals, hobbyists) - Strong creativity and ability to propose engaging content ideas Deliverables will include: - Strategic plans for improving video engagement - Suggestions and implementations of SEO tactics - Creating sustainable chan...

    $403 (Avg Bid)
    Pilny
    $403 Średnia Oferta:
    29 składanie ofert

    I'm in need of a SketchUp expert to complete a basic context model. This project is primarily for architectural visualization, so the focus is on creating approximate representation of the basic shapes and structures, using a google maps 3d import as a guide. I've set up the file, so it just requires the rest of the buildings to be modelled. Ideal Skills and Experience: - Proficiency with SketchUp. - Previous experience in architectural visualization projects. - Strong understanding of basic building structures. - A keen eye for detail and design aesthetics.

    $150 (Avg Bid)
    $150 Średnia Oferta:
    53 składanie ofert

    I'm in need of a savvy developer to overhaul the user interface of my existing CAB Service app. The pri...crucial redesign of the home page to be more intuitive and user-friendly. - Improving the existing search functionality. The aim is to make it more efficient and pinnacle to the app interface for a seamless user experience. The ideal candidate for this project should have a proven track record with mobile app UI redesign and have keen attention to detail. Experience in developing navigation structures and search functionalities is vital. Any past projects that involve ride-sharing or transportation app development will be considered an asset. Let's create an app that stands out in today's competitive ride-hailing market! Technical Skills required : Node js , reac...

    $1494 (Avg Bid)
    $1494 Średnia Oferta:
    48 składanie ofert

    I'm in need of a professional SEO expert to enhance our company's online visibility. Our business specializes in solar panels, electric generat...campaign is to improve our website's ranking on Google search results. - The project should be completed within a month. Skills and Experience Required: - Proven track record of successful SEO campaigns, preferably in the renewable energy industry. - Expertise in keyword research and optimization. - Ability to target niche audiences effectively. - Excellent understanding of Google's search algorithms and ranking factors. - Efficient time management skills to meet the project deadline. If you have a deep understanding of SEO, are passionate about renewable energy, and can deliver results within the specified timefram...

    $312 (Avg Bid)
    $312 Średnia Oferta:
    81 składanie ofert

    I'd love to get assistance from a skilled developer to correct an issue on my Android app built on Kotlin. The app has a problem where an API behaves as expected on a debug APK but fails on a signed APK. Ideal candidate: - Exceptional experience with Kotlin and Android app development - Excellent proficiency in API logics - Skilled in debugging...love to get assistance from a skilled developer to correct an issue on my Android app built on Kotlin. The app has a problem where an API behaves as expected on a debug APK but fails on a signed APK. Ideal candidate: - Exceptional experience with Kotlin and Android app development - Excellent proficiency in API logics - Skilled in debugging signed APK issues - Knowledge in re-templating code structures. Looking forward to a qui...

    $24 (Avg Bid)
    $24 Średnia Oferta:
    23 składanie ofert

    I require a capable and experienced deck designer to create plans for a composite deck of over ...stairs. It must be freestanding, not attached to the house, and should provide access through my sliding glass door. Understanding permitting in Massachusetts is key. Your skill set should include: - Knowledge of composite deck design - Familiarity with Massachusetts deck permitting processes - The ability to create detailed and correct deck plans - Experience designing decks with standalone structures - Crafting plans that incorporate stairs. - Must include foundation count, size of posts, sizing of joisting, sizing of railing and stairs - Must include materials list. Please provide your proposed timeline and budget along with relevant examples of similar projects you've complet...

    $683 (Avg Bid)
    $683 Średnia Oferta:
    48 składanie ofert

    ...create a cross-platform application. The app should primarily provide a data prediction feature similar to 'Probo app' or 'MPL Opinio'. The functionality of the data prediction feature needs to be a combination of predictive text input, machine learning algorithms, and real-time data analysis. Key Requirements: - Develop a cross-platform app for iOS and Android - Implement a data prediction feature - Ensure the data prediction is based on predictive text input, machine learning algorithms, and real-time data analysis Desirable Skills: - Proficiency in both iOS and Android app development - Strong background in data prediction and analysis - Previous experience with predictive text input and machine lear...

    $577 (Avg Bid)
    $577 Średnia Oferta:
    20 składanie ofert