Geolocation using sql serverεργασίες

Φίλτρο

Οι πρόσφατες αναζητήσεις μου
Φιλτράρισμα κατά:
Προϋπολογισμός
σε
σε
σε
Είδος
Δεξιότητες
Γλώσσες
    Κατάσταση Δουλειάς
    2,000 geolocation using sql server δουλειές που βρέθηκαν, με τιμές EUR

    We have server with windows server 2012 installed, recently we uninstalled DNS role from the server but just after connection issues have raised. It can ping the IPs but cannot resolve the names. Requiring assistance to remote connect and solve the name resolution problem on the server to reconnect it.

    €29 (Avg Bid)
    €29 Μέση Προσφορά
    24 προσφορές
    Server reboot not operational Έχει λήξει left

    Hi, we have our server down due to an error on the DB. DB query failed: SQLSTATE[HY000] [2002] Connection refused MariaDB is offline. We are using Plesk. We are requesting restoration and maximum attention to the DB. Please note that we do not "open" Milestone. Payment is only made upon perfect resolution.

    €28 (Avg Bid)
    €28 Μέση Προσφορά
    12 προσφορές

    I am seeking a skilled IT professional with specific experience in migrating data between servers. You'll be tasked to efficiently transfer file data from a PHP server to a new PHP host server. Your key responsibilities will include: - Analyzing the existing server environment and defining the most effective migration strategy. - Conducting the data migration, ensuring the integrity and security of the file data. - Verifying and testing the data on the new host server post-migration. The ideal candidate should possess: - Strong experience in server data migration (specifically on PHP servers). - High proficiency in handling file data. - An understanding of IT security protocols to ensure data safety during transfer. - Ability to troubleshoot any...

    €125 (Avg Bid)
    €125 Μέση Προσφορά
    10 προσφορές
    Google Map API Geolocation Services Έχει λήξει left

    I'm in need of a specialist to assist with Google Maps API, specifically focusing on geolocation services to enable location-based function triggering. The core functionality I'm aiming for is the display of customized content based on user's location. Key Skillsets: - Proficient with Google Maps API - Experience in implementing geolocation services - Ability to customize content display based on location data. The right freelancer will be well-versed in this kind of integration and customization. I look forward to working with someone who can efficiently realize this aspect of my project.

    €145 (Avg Bid)
    €145 Μέση Προσφορά
    16 προσφορές
    €86 Μέση Προσφορά
    25 προσφορές

    buenas, necesito alguien que conozca del tema para compilar un kernel personalizado para sacarle el máximo rendimiento al server. Sistema operativo: ubuntu 22.04.4 LTS Muchas gracias.

    €28 (Avg Bid)
    €28 Μέση Προσφορά
    2 προσφορές

    ...(API) (SQL) (NoSQL) (RESTful) We produce radio frequency identification (“RFID”) readers and use several proprietary applications during production, fulfillment, software licensing and support of our hardware products. These applications are written in C++ and Java and run on Windows. Our contract manufacturers and fulfillment centers use these proprietary applications which produce a variety of files and data stored locally during production of each device. Information regarding post-production sales of software add-on features is also stored in the database. Each operations location generates local SQLite databases and other data files which are individually copied to our home office and merged to contain data from all locations. We want to move to a cloud da...

    €39 / hr (Avg Bid)
    €39 / hr Μέση Προσφορά
    19 προσφορές

    I need a highly skilled and experienced coder who can assist with migrating my large-scale data of 800 GB from one server to a larger one. AND who will continue to work with me on my site, PLEASE NOTE: THIS IS A GAY ADULT WEBSITE - You must write back, “I am aware this is an adult gay website.” Or I will delete your bid. - Operating System: You should have a strong knowledge and experience working on Linus servers (XEON). - Experience with operations. - Type of Data: The migration will cover databases, file systems, and web applications. The willingness and capability to accurately and efficiently migrate these types of data is a must. - Size of Data: The data at hand is large, over 800 GB. Previous experience handling and successfully migrating such large volumes

    €22 / hr (Avg Bid)
    €22 / hr Μέση Προσφορά
    68 προσφορές

    I am looking for a statistician who has expertise in using R or similar software to run a logistic regression with robust standard errors using the dataset attached. Then, you give me a generally statistically acceptable output. I have already run a primary logistic regression with robust standard errors. The primary model, in all respects, looks okay, but its specificity is 0.000. Have a look at the primary logistic regression output attached and improve the specificity (from 0.000) by adjusting the threshold (from 0.5) in your logistic regression with robust standard errors using the dataset attached. The dependent variable is ELECTIONSTATUS. My target independent variables are ELECTORAL_GOVT and EDM, both of which are categorical variables. I need the effect of all...

    €12 (Avg Bid)
    €12 Μέση Προσφορά
    8 προσφορές

    Quick matlab assignment, statics question solved using Matlab and matrices

    €24 (Avg Bid)
    €24 Μέση Προσφορά
    24 προσφορές

    ...professional to handle my network hub and server management issues. Your responsibilities would include: - Server management: Delve into the intricate details of server operation, configuration, and routine maintenance, focusing on a Windows operating system. - Network hub management: Macro-level management of the network hub, ensuring seamless interconnectivity and performance. - Troubleshooting & maintenance: Prompt identification and resolution of issues related to the server and network hub, ensuring optimal uptime and reliability. - Security enhancement: Develop and implement strategies to fortify the security of my servers and network hubs preventing unauthorised access or potential attacks. Key skills include extensive experience in Windows ...

    €34 / hr (Avg Bid)
    €34 / hr Μέση Προσφορά
    30 προσφορές

    ...being easily understood - makes an otherwise simple task - impossible. Whilst the task itself is isolated to a great extent from the much larger project, unless the meaning of the words comes as second nature - it would take more time to document the task than to just do it. Further the tasks requires access to a database key that is not a toy. As per the auto generated blurb below - celery and sql skill sets are also required. Thanks for your consideration. - Being geographically placed in the US or Canada is not a skill per se, it is desirable to facilitate better communication and collaborative working, this is not a task you will be able to just "do" - although the right person will be able to do it very quickly as its more common sense than technical skills requ...

    €33 / hr (Avg Bid)
    €33 / hr Μέση Προσφορά
    56 προσφορές

    ...the Jetson Nano are available here: Project Requirements: Data packets to be transmitted are split into frames of 8 bytes each, with the first 7 bytes of the frame encoded in ASCII. The last byte is an integer frame counter that does not convert to ASCII. A checksum is generated from the packet data and appended at the end of the packet using the following function: c Copy code uint16_t crc_chk_value(uint8_t *data, uint16_t size) { uint16_t crc = 0; while (size--) { crc ^= *data++; for (unsigned k = 0; k < 8; k++) crc = crc & 1 ? (crc >> 1) ^ 0xa001 : crc >> 1; } return crc; } If the last frame has free space, it is filled with zeros. An example of a packet

    €469 (Avg Bid)
    €469 Μέση Προσφορά
    20 προσφορές

    I require a skilled professional to connect my Windows application directly to a private cloud Microsoft SQL server single database instance. My aim is to improve efficiency in data communication between the two entities. Key Requirements and Skills: • Extensive experience in cloud computing and SQL server database • Proficiency in Direct Connection of a Windows application to a private cloud platform • Knowledge in setting up Single database SQL Server Architecture • Ability to collaborate and provide effective solutions The right freelancer will work with me closely to ensure smooth and efficient functioning of this connection. Your communication skills, prompt responsiveness and understanding of this technology will be c...

    €138 (Avg Bid)
    €138 Μέση Προσφορά
    20 προσφορές

    I am seeking a proficient Sketchup designer adept at creating built-in designs. Key Deliverables: - Blueprint of the built-in design - Inclusion of adjustable shelves and hidden compartments Specific Requirements: - The design should accommodate dimensions of 11 ft long by 9 ft tall - Proven experience in designing furniture or built-ins using Sketchup is necessary. Please provide examples of your previous Sketchup designs while bidding for the project. Let's create unique and functional built-ins together!

    €36 (Avg Bid)
    €36 Μέση Προσφορά
    21 προσφορές
    Python Licensing Server Development Έχει λήξει left

    I'm looking to hire a skilled Python developer to build a licensing server for my application. You will need to set up an architecture that is capable of automatically renewing expired licenses, blacklisting certain keys, and permitting multiple license types. This licensing server should be able to generate license keys and place them appropriately within my application server. Key Deliverables: - Python-based licensing server - Auto-renewal of expired licenses - Functionality for blacklisting keys - Capacity for various license types - License key generation and placement in server I intend to distribute these licenses to users through API integration, so an understanding and ability to carry out this integration is crucial. Ideal candidate woul...

    €198 (Avg Bid)
    €198 Μέση Προσφορά
    21 προσφορές
    SQL Data Analysis with Power BI Έχει λήξει left

    I am looking for a Power BI developer to help me make a new visual and table where elements are mapped together. Must work over teamviewer or anydesk. I cannot give out passwords for SQL

    €37 (Avg Bid)
    €37 Μέση Προσφορά
    12 προσφορές
    Event/Panner Demo using Figmas Έχει λήξει left

    As the client, I am seeking an adept, focused and creative web developer to design a sophisticated and interactive website DEMO. BUT this PART OF THE project is ONLY for CREATING the FIgmas using mostly our notes and outlines. Key features of the FIGMAS include: - Event vendor and planner profiles, showcasing their services, past projects and areas of expertise. - An intuitive messaging system to facilitate clear and efficient communication between parties. - A 3-tiered membership system for vendors (Basic, Premium, and Gold), providing varying levels of service and benefits. - An Affiliate program to promote our services and draw new users. - A comprehensive, custom-designed dashboard for each type of user. - All vendors, such as caterers or food truck operators, to create 2 type...

    €155 (Avg Bid)
    €155 Μέση Προσφορά
    57 προσφορές

    I am currently in need of expert C# programmers who could develop a software capable of user authentication and database integration. Key functionality includes: - User Authentication: The program should allow users to securely log in using a username and password. Experience in developing secure login systems is highly appreciated. - Database Integration: The solution must integrate with SQL databases, hence, proficiency in SQL database connections is mandatory. The developers must be experienced in C# programming, SQL databases, and secure user authentication. Candidates with a proven track record of similar projects will be prioritized.

    €6 / hr (Avg Bid)
    €6 / hr Μέση Προσφορά
    47 προσφορές
    Social Media Manager using Canva Έχει λήξει left

    I need an individual to handle our company's social media profiles, specifically Instagram, Facebook, and LinkedIn. Your job is to input provided information into premade Canva design templates for regular posting. Responsibilities: - Implement given content into Canva templates. - ensure spelling in grammar is correct and cohesive - post on the social media channels on time Skills: - Familiar with Canva and social media platforms. - Able to post consistently and accurately across multiple platforms.

    €30 (Avg Bid)
    €30 Μέση Προσφορά
    56 προσφορές
    SQL Power BI Dashboard Development Έχει λήξει left

    I need assistance in creating a Power BI dashboard that clearly visualizes survey results data. Connecting to SQL databases forms the backbone of this project. The dashboard must be updated weekely with new survey results data. Ideal Skills & Experience: - Proficient in Power BI - Experience with SQL databases - Familiar with survey results data representation - Ability to schedule monthly updates in Power BI Your primary task will be to make the survey results understandable and accessible through a well-designed Power BI dashboard. Your expertise in SQL and Power BI dashboard creation is crucial for this job.

    €63 (Avg Bid)
    €63 Μέση Προσφορά
    17 προσφορές

    ...Creating a proof of concept web page in which an existing file, stored in OPENAI storage, is utilised as a reference during an API call. File types: To include: pdf, ms word, Excel, CSV, text, XML, JSON User acceptance: To be able to query openAI about the file and get responses that relate exclusively to the reference file. Code: Native JavaScript. Can use external libraries. Should run on any server without installing plugins. Specifications: - The file constitutes mixed data, encompassing both numerical and textual information. - The system should seamlessly interact with the entirety of the file. - The primary task involves integrating the API to fetch data from the stored file, read and analyse it as required, and send appropriate responses. Ideal Skills & Exper...

    €168 (Avg Bid)
    €168 Μέση Προσφορά
    35 προσφορές
    Python Expert for small task -- 3 Έχει λήξει left

    I need python expert for small task , Sql task and ftp task I need it to start now be done today if you can do it pls start your bid NOW

    €16 (Avg Bid)
    €16 Μέση Προσφορά
    19 προσφορές

    ...sources of my interest are platforms like Spark, AWS, Azure, GCP, and Hive. I want to understand effective methods for data extraction from these particular sources. Ideal Skills and Experience: - Expertise in ETL tools for data extraction - Hands-on experience with Spark, AWS, Azure, GCP, Hive - Profound knowledge in data engineering - Experience in career coaching or mentoring will be a bonus - SQL -Python This assistance will give me a competitive edge in my upcoming interviews by providing me with practical skills, knowledge, and confidence in addressing ETL-related questions. So, a mentor with over 10 years of experience in data engineering, particularly in ETL processes and in touch with modern data extraction techniques, would be ideal....

    €8 / hr (Avg Bid)
    €8 / hr Μέση Προσφορά
    4 προσφορές

    This project aims to optimize the design of a mechanical component by minimizing three objective functions (F1, F2, and F3) subject to certain constraints. The optimization process is carried out using a Particle Swarm Optimization (PSO) algorithm implemented in Python. The optimized design parameters are then used to create a finite element model of the component using PyANSYS, a Python interface for the ANSYS Parametric Design Language (APDL). The project involves two main tasks: Implementing the PSO algorithm with Pareto optimization to find the optimal design parameters that minimize the three objective functions while satisfying the specified constraints. Integrating the optimized design parameters into the PyANSYS code to create and analyze the finite element model of...

    €95 (Avg Bid)
    €95 Μέση Προσφορά
    8 προσφορές

    Kitchen designer needed ..context is to make it modern , best utilisation. Looking for innovative designer

    €80 (Avg Bid)
    €80 Μέση Προσφορά
    55 προσφορές
    Python Expert for small task -- 2 Έχει λήξει left

    I need python expert for small task , Sql task and ftp task I need it to start now be done today if you can do it pls start your bid NOW

    €16 (Avg Bid)
    €16 Μέση Προσφορά
    20 προσφορές
    Python Expert for small task Έχει λήξει left

    I need python expert for small task , Sql task and ftp task I need it to start now be done today if you can do it pls start your bid NOW

    €14 (Avg Bid)
    €14 Μέση Προσφορά
    19 προσφορές
    Server support professional Έχει λήξει left

    We are seeking a server support professional with 20+ years of extensive knowledge in configuring and maintaining servers and domains. Ideal skills and experiences: - Proven experience in server and domain management in PLESK, AWS SERVER, CLOUDFLARE, CONTABO - Expertise in both Windows and Linux server environments - Ability to provide services such as server configuration, server maintenance, and domain registration - Excellent problem-solving skills and commitment to tackling any server or domain issues This project is open-ended and could potentially require varied services. please mention in your bid what are your other strengths and why I should choose you over other freelancers?

    €105 (Avg Bid)
    €105 Μέση Προσφορά
    34 προσφορές
    Geolocation Mobile App Development Έχει λήξει left

    I'm looking for a mobile app developer to create an application for both Android and iOS platforms (mainly Android). The key functionality of the app is to read and send geolocation data to a server consistently, even in the background or when the screen is locked. Key responsibilities: - Develop the app. - Enable the app to access and read geolocation data. - Ensure continuous data transmission even when the app runs in the background or the screen is locked. Skills and experience: - Knowledge of geolocation technology. - Ability to code for background operations and data transmission. Please mention the programming language you can develop this. Please check the attached image for detailed specs. Looking forward to working with you on this!

    €248 (Avg Bid)
    €248 Μέση Προσφορά
    8 προσφορές
    web sitesi sql vt bağlantılı Έχει λήξει left

    muhasebe programı sql den web sitesi üzerinden işlem yapmak

    €488 (Avg Bid)
    €488 Μέση Προσφορά
    20 προσφορές

    More details: Do you already have a VPS server set up for hosting your website? This question was skipped What information should successful freelancers include in their application? This question was skipped Will you provide the necessary files and database for the Laravel website? This question was skipped

    €13 (Avg Bid)
    €13 Μέση Προσφορά
    15 προσφορές

    My project demands high level expertise in managing, optimizing and configuring Redis servers. The ideal candidate would have hands-on experience with: - Configuring Redis servers to match project requirements and ensure optimal functionality - Optimizing Redis server performance for improved speed and efficiency - Troubleshooting and addressing any issues related to Redis servers I also need assistance in implementing specific features using Redis server such as: - Setting up caching mechanisms - Managing sessions efficiently - Enabling real-time data processing Further, the project is large scale with a high-traffic application. Therefore, a solid understanding of working with large scale applications and handling high web traffic is expected. The professional...

    €139 (Avg Bid)
    €139 Μέση Προσφορά
    17 προσφορές
    Develop Project Management Web App Έχει λήξει left

    ...developer to build a project management app aimed at improving team productivity and collaboration. The app will feature user authentication, project tracking, task management, real-time messaging, and analytics. See attached designs for more details. Skills Required: - Expertise in HTML, CSS, JavaScript, and one of React.js/Vue.js/Angular - Proficiency with server-side programming (prefer Node.js or Python) - Experience with databases (SQL or MongoDB), RESTful APIs, and cloud services - Strong UI/UX design ability, with attention to responsive design Responsibilities: - Develop, test, and deploy the web app - Ensure cross-browser and device compatibility - Implement security and data protection measures - Collaborate on design refinement and functionality We're ...

    €9772 (Avg Bid)
    €9772 Μέση Προσφορά
    86 προσφορές

    My project involves getting an AWS server up and running, equipped with Cpanel/WHM. I need help from someone with a deep understanding and experience in the platform. This is what you need to do: * Set up my AWS account * Install and configure Cpanel/WHM on the AWS server. The preferred operating system for my server would be Cloudlinux. Considering the nature of the tasks involved, the ideal person for this project should have - * Experience setting up AWS accounts and servers * Proficiency in installing and configuring Cpanel/WHM * Familiarity with the Cloudlinux operating system Let's get this server up and running!

    €103 (Avg Bid)
    €103 Μέση Προσφορά
    49 προσφορές

    I'm in need of a server manager with intermediate-level cybersecurity and Linux experience to effectively monitor the security of my server. Key responsibilities include: - Ongoing security monitoring of the server and Wordpress websites - Threat identification and mitigation - Advise on potential security upgrades - Ensure the safety of sensitive information It is essential for potential freelancers to understand the Linux operating system thoroughly, and have a sound understanding of server cpanel and Vesta Cp. The ideal candidate should bring a proactive approach to identify and fix security weaknesses, offering consistent updates and reports on server security status. Be patient honest and always willing to go an extra mile for longterm wo...

    €48 (Avg Bid)
    €48 Μέση Προσφορά
    19 προσφορές

    I urgently need an expert coder well-versed with Database Management System. The specific DBMS that will be used is not specified yet, so the ideal freelancer will be someone comfortable working with multiple types including MySQL, Oracle, SQL Server, PostgreSQL, MongoDB etc. Key requirements: - Extensive knowledge and experience in various Database Management Systems - Flexibility and adaptability to any DBMS - Ability to deliver high-quality work on a urgent timeline This project has a high level of priority, so I need someone who can start working immediately. I'm looking for a freelancer who can communicate effectively and complete the project ASAP. Your expertise in navigating different DBMS will be a significant factor in accomplishing this task.

    €6 - €48
    Σφραγισμένο
    €6 - €48
    26 προσφορές
    SQL Database Product Image Gallery Έχει λήξει left

    ...need of a skilled SQL programmer to create an image gallery on my website that will display product images. The distinct specifications for this project are outlined below: - The gallery should pull product images from an SQL database. Robust SQL skills are therefore essential. - The images should be organized and displayed in chronological order, determined by the date. Proficiency in coding for complex sorting algorithms is a must-have for potential freelancers. - The gallery must include a zoom-in function on each image to allow viewers a more detailed view of each product. Agile proficiency in Javascript or other relevant languages for this functionality is crucial. In order for smooth collaboration, excellent communication skills are desired. Extensive expe...

    €135 (Avg Bid)
    €135 Μέση Προσφορά
    23 προσφορές
    Développement Site Web Έχει λήξει left

    Plongez dans le monde numérique avec un service de développement de sites web sur mesure qui transforme vos concepts en réalités en ligne ! Je suis un développeur web passionné, spécialisé dans la conception de solutions web uniques et adaptées à vos besoins. Fort d’une expertise pointue en HTML, CSS (notamment avec l’utilisation de WordPress), PHP, SQL et une maîtrise des technologies telles que WordPress, SQL, et PHP, je suis parfaitement équipé pour concrétiser toutes vos idées de présence en ligne, que ce soit pour un portfolio saisissant, une boutique en ligne dynamique, ou une plateforme interactive pour votre communauté. Ma méthode r...

    €15 / hr (Avg Bid)
    €15 / hr Μέση Προσφορά
    22 προσφορές
    C++ Image Inversion Using OpenMP Έχει λήξει left

    I am seeking an adept C++ developer with specialized knowledge in OpenMP to create a program. This task involves manipulating a 150 KB bitmap image file, carefully inverting the colors to ultimately produce a negative version of the original image. Key Deliverables: - Use OpenMP for task execution, taking advantage of dual-core processing to optimize CPU usage. - Execution of the ~ operator to complement each byte in the character array. Required Skills and Experience: - Extensive understanding of C++ - Familiarity with OpenMP - Experience in image manipulation - Proficient in efficient code writing and maintenance. While there is no strict adherence to a specific coding standard, the successful freelancer must demonstrate a commitment to clean, efficient, and well-documented code. Th...

    €144 (Avg Bid)
    Επείγον
    €144 Μέση Προσφορά
    6 προσφορές
    Trophy icon Raspberry Pi 4 VPN Server Setup Έχει λήξει left

    I am seeking a developer who is well-versed in bash shell scripting to install WireGuard on my Raspberry Pi 4 and utilize it as a secure VPN server. Core tasks include: - Installation of WireGuard on Raspberry Pi 4 - Automatic generation of a QR code to launch SpyGuard from a smartphone or PC, I have a specific software in mind for this. - The setup should allow secure connections through the VPN server. The ideal freelancer for this project would have extensive experience with Raspberry Pi, VPN setup, bash shell scripting, and QR code generation tools. Demonstrated experience in similar projects would certainly be a bonus.

    €29 (Avg Bid)
    Εγγυημένος

    I have a Wordpress Website, I need to convert it to android and iOS app, I will provide the source code for the work from one of CodeCanyon products that converts web to app. the developer need to: - Convert my Ready WP website to an app - Integrate Push notification service (already available in the source code) - Publish the app on my iOS AppStore and PlayStore accounts

    €12 (Avg Bid)
    €12 Μέση Προσφορά
    6 προσφορές

    ...an expert in server security with a specific focus on Linux and Apache error logs. High-Level Requirements: - Know Linux in detail - Check Apache Error Logs and Security logs - Should understand why server down some times or lags after a while Key Skills: - Proficient in Linux security tactics and solutions - Strong knowledge of Apache and experience in analyzing error logs Experience: Freelancers who have extensive experience and expertise in server security are encouraged to apply. As we're dealing with sophisticated systems, I prefer an individual with a high level of expertise. Past experience, particularly dealing with Linux and Apache, will be the cornerstone of your application. Your experience is key, so please highlight your skills and success sto...

    €12 / hr (Avg Bid)
    €12 / hr Μέση Προσφορά
    15 προσφορές

    I'm seeking an experienced Data Engineer with proficiency in SQL and PySpark. Key Responsibilities: - Develop and optimize our ETL processes. - Enhance our data pipeline for smoother operations. The ideal candidate should deliver efficient extraction, transformation, and loading of data, which is critical to our project's success. Skills and Experience: - Proficient in SQL and PySpark - Proven experience in ETL process development - Previous experience in data pipeline optimization Your expertise will significantly improve our data management systems, and your ability to deliver effectively and promptly will be highly appreciated.

    €85 (Avg Bid)
    €85 Μέση Προσφορά
    17 προσφορές

    I need an experienced professional to develop a toll pricing model system that will be eff...Experience: - Proficiency in traffic modelling software, especially PTV Vissim. - Knowledge of traffic algorithms. - Experience with systems related to toll collection or traffic management. Toll Revision Algorithm: An efficient algorithm should operate based on traffic volume and dynamic pricing. The mechanism should: - Adjust toll prices based on the volume of traffic. - Implement dynamic toll pricing using real-time data, changing according to the time of day. The system will need to pull from historical traffic data sources for accurate information on traffic volume and time-of-day variation. Understanding of data analysis and manipulation from such sources will be key to this project&...

    €123 (Avg Bid)
    €123 Μέση Προσφορά
    4 προσφορές

    The goal of this project is to create an advanced weather forecasting system that utilizes weather data provided by the Visual Crossing API. The project aims to process and analyze historical and current data to create weather forecasts for the next 26 days. The system will be built using TensorFlow in the Google Colab environment, which will allow for the use of cloud computing resources and facilitate the work on the project. Requirements: Integration with Visual Crossing API: Implementation of integration with the Visual Crossing API is required to retrieve weather data. The data should cover a wide range of information, such as temperature, precipitation, humidity, wind speed, atmospheric pressure, and more. Data Processing and Analysis: Weather data should be processed and p...

    €26 (Avg Bid)
    €26 Μέση Προσφορά
    9 προσφορές
    app development using flutter Έχει λήξει left

    More details: What is the main objective of your app? calorie tracker What specific features do you want in your calorie tracker app? Calorie database How do you want the calorie database function to operate? Manual input of food items and have charts showing your daily intake

    €200 (Avg Bid)
    €200 Μέση Προσφορά
    4 προσφορές

    I'm seeking a creative professional to design 3 engaging and editable Powerpoint presentation slides from an existing image reference but with a light green color scheme. The designed presentation should: - Be in a light green color theme. - Be based on image references I will provide. - Be fully editable as content might change over time. - Work needed in 5-6 hours maximum

    €45 (Avg Bid)
    €45 Μέση Προσφορά
    20 προσφορές

    I am an experienced developer who specializes in Kafka and Genesys system integration. The following is the tasks and main aim for this project: i) Deploy (Apache) Kafka on existing YTLC CES server and ensure it is compatible with the required Co-Browse version ii) Integrate Genesys Co browse to Kafka for it to send the Co-Browse Reporting Event to Kafka iii) Integrate Infomart to Kafka for it to extract data from the Kafka data stream and transforms it into the COBROWSE_FACTtable iv) To ensure / enable RAA to summarize and organizes the Info Martdata in ways that enable GI2 to extract meaning. v) To support required Custom Report template based on available reporting data field and ensure the required Co-browse reporting data appear in the GI2 Custome Report. vi) To ensure / enabl...

    €147 (Avg Bid)
    €147 Μέση Προσφορά
    3 προσφορές