Tox python environmentJobb

Filter

Mina senaste sökningar
Filtrera:
Budget
till
till
till
Typ
Kompetens
Språk
    Jobbstat
    2,000 tox python environment jobb har hittats, med prissättning USD

    Hej, Jag har en idé om en multiplayer sudoku spelapp. Jag har fått offerter på 25000 usd för att utveckla spelet men jag vill inte satsa dessa pengar. Jag vill istället skapa spelet själv, men saknar kompetens att göra det. Jag har erfarenhet av programmering i Python, men inte spel. Jag vill ha någon som sätter upp en arbetsplan, där varje steg beskrivs, därefter ger mig viss guidning för att komma genom varje steg. Jag vill alltså både utveckla spelet och lära mig att utveckla själv. Jag behöver någon med erfarenhet av att utveckla multiplayer-spel (design kommer vara relativt enkel) för iphone/android. Dessutom villig att lära ut (skicka länkar/tips på litte...

    $17 / hr (Avg Bid)
    $17 / hr Snittbud
    2 bud
    Project for Raja S. Avslutades left

    Hej, har ett pågående projekt. Vi har kört fast så skulle behöva ett andra öga på projektet. Innefattar python, flask, webscraping.

    $45 / hr (Avg Bid)
    $45 / hr Snittbud
    1 bud

    Uppgiften är att bygga en slumpgenerator i programmeringsspråket python i miljön google colab. Slumpgenreatorn ska kunna läsa in information(i det här fallet namn ifrån ett google spreadsheet och slumpa ut dem här namnen i basgrupper(6 basgrupper, 6 i varje grupp, där vissa grupper blir färre personer) i spreadsheatet. Så alla basgrupperna och elever får bra placeringar. progrmmaet ska och kunna t.e.x slumpa om placeringar och basgrupper i klassrummet om man vill det. Jag kanske inte har förklarat uppgiften så väl, så jag kan enkelt bara dela instruktionerna där allting är väl skrivet så ni får en ökad förståelse för uppgiften.

    $248 (Avg Bid)
    $248 Snittbud
    2 bud

    Hemsida ska ta in en del information från användare och spara de i databas. I hemsidan kan man se hela tabellen i databasen och kan ändra om man vill. Man kan även lägga in nya rekord i databasen. I python programmet som jobbar på bakgrunden skulle jag kunna läsa in de värdena från databasen och föra till en algorithm som är också skriven i python.

    $181 (Avg Bid)
    $181 Snittbud
    2 bud

    Jag jobbar med att sälja plåt och vi skickar certifikat till våra kunder på stålet, jag skulle vilja ha en portal där de kan söka efter certifikatet och ladda ner pdf filen på egen hand. Se länk nedan på liknande lösning. Jag vill kunna lägga upp pdf filerna antingne på onedrive eller köra ftp mot en server. Vi har redan en server som kör lite python grejer så den kan säkert användas för att placera detta i. Vår hemsida är och den är byggd med wordpress.

    $1097 (Avg Bid)
    $1097 Snittbud
    9 bud

    ITSM Delivery söker Integrationsutvecklare för vår kund. Krav: Java Scala Python R Biztalk Erfarenhet av IBM MQ-server och Biztalk som meddelandesystem att integrera till. Erfarenhet av att bygga near-realtime-instrumentpaneler för att stödja affärsverksamheten. Målet är att använda Spark streaming. Erfarenhet - 6 år. Start: augusti, 2019 Ort: Stockholm / Solna Vi erbjuder: Mycket kreativ och dynamisk miljö, vilket ger en hälsosam professionell utmaning till proffs. Långsiktiga projekt och mysig atmosfär. Det här är ett heltidsjobb i Stockholm, ingen frilansmöjlighet. Ta gärna kontakt med mig för mer information.

    $53 / hr (Avg Bid)
    $53 / hr Snittbud
    3 bud
    Uppehåll av hemsida Avslutades left

    Hjälp med kontroll av hemsida. Program som används. MongoDB SailsJS Elastic Search Python MVC - generellt API

    $402 (Avg Bid)
    $402 Snittbud
    2 bud

    sKils: -Docker Hub -Git -Python -Django -AWS -Redis -S3 -NodeJS -Go

    $17 (Avg Bid)
    $17 Snittbud
    9 bud
    Web development Avslutades left

    Jag vill fixa till en webbsida Pandas Python django

    $555 (Avg Bid)
    $555 Snittbud
    1 bud

    ...utifrån våra önskemål och din kompetens. Har du dessutom erfarenhet av Googles Adwords-API så kan det bli aktuellt att göra motsvarande projekt där. **English version** We're looking for someone who has experience working with Facebook's API for advertising, who can help us automate the process of publishing targeted ads from our system to Facebook. Our system is based on a Java-environment, where we have a large number of job ads targeted to different groups stored in a database. It's some of these jobs we're looking to publish as Facebook ads, targeted at the correct audience (gender/age/region). This project can either be done as something you write in Java, which will be added as a module to our current...

    $1465 - $2930
    $1465 - $2930
    0 bud
    Software in Python Avslutades left

    Good programming skills

    $30 (Avg Bid)
    $30 Snittbud
    1 bud
    Programmering i Python Avslutades left

    Hej, Kolla bifogade filer för ytterligare information! Mvh t1f0

    $50 - $50
    $50 - $50
    0 bud

    Hej, har du möjlighet att hjälpa mig med tre deluppgifter i Python? Ämnet är, som nämns i rubriken, sortering och sökning. Deadline fredag 8.5.2015 kl. 22:00 Information om projektet finns bifogat som filer. Med vänlig hälsning, t1f0

    $30 - $30
    $30 - $30
    0 bud
    Vigenerechiffer Python Avslutades left

    Uppgift 1: Din uppgift är nu att skapa ett program med vilket du kan kryptera och dekryptera text som endast innehåller stora bokstäver enligt Vigenere-algoritmen. För att göra det behöver du en tabell, som du t.ex. kan generera med följande funktion: def make_cipher(): cipher = [] i = 0 j = 0 # Väljer bokstäverna A-Z for char in [:26]: ([i:26]+[:j]) i += 1 j += 1 return cipher Förutom funktionen make_cipher behöver du igen två funktioner för att kryptera resp. dekryptera ett meddelande. def encrypt(key, msg): cipher = make_cipher() # ...mer kod def decrypt(key, msg): cipher = make_cipher() # ...mer kod Uppgift 2: Testa programmet med exemplet på ...

    $15 (Avg Bid)
    $15 Snittbud
    1 bud

    for och sekvenser (python) 1) Skriv ett program som tar hand om röstberäkningen i ett val. Kandidaterna numreras 2-7, och vi lagrar varje kandidats sammanlagda röstantal i en lista (rösterna för nr. 2 ska lagras i position 2, rösterna för nr. 3 i position 3 etc). Tänk noga på hur stor lista du behöver! Varje element ska 0-ställas innan man börjar mata in de enskilda rösterna (ingen valfusk här!). För övningens skull antar vi att antalet röstberättigade är 10 personer, av vilka alla röstar (men de kan rösta blankt eller ge proteströster, så varje given röst måste kontrolleras!). Sist ska varje kandidats röstantal skrivas ut 2) För att göra r...

    $15 - $15
    $15 - $15
    0 bud

    hej jag en kurs programmering( python ) som är databaserad och behöver hjälp med. Det är för nybörjare . Pris kan vi komma överens om . hör av dig så fort som möjligt Med vänlig hälsning,

    $155 (Avg Bid)
    $155 Snittbud
    1 bud
    Programkurs att göra Avslutades left

    hej jag en kurs programmering( python ) som är databaserad och behöver hjälp med. Det är för nybörjare . Pris kan vi komma överens om . hör av dig så fort som möjligt Med vänlig hälsning,

    $150 (Avg Bid)
    $150 Snittbud
    1 bud
    uppgift python Avslutades left

    olika delmoment: Kodskelett Innan programmet skrivs ska en specifikation i form av ett kodskelett lämnas in. Syftet är att du ska tänka igenom problemet innan du försöker lösa det. Prototyp När ditt kodskelett har blivit godkänt så är det dags att börja arbeta med en prototyp av programmet. En prototyp är en första körbar version av programmet som innehåller den mest grundläggande funktionaliteten. Syftet med att lämna in en prototyp är att vi ska kunna ge tips och råd om förbättringar och ändringar redan innan programmet är helt klart. Beskrivning av upgiften: Varudeklaration: Filhantering. Str¨anghantering. Hantering av datastrukturer samt s¨ok...

    $27 (Avg Bid)
    $27 Snittbud
    2 bud
    Skriv lite programvara Avslutades left

    Programmeringsspråk: Openwrt (ev. kan Python vara möjligt) Plattform: Carambola2 Applikation: Vid power-on ska enheten kolla GPIO pinnar, koppla upp mot ett av några förutbestämda WiFi-nät och skicka ett e-post och sedan göra sig beredd på power-down. Slutapplikationen är olika, men enkla och ska helst kunna skrivas i ett ANSI-C program som kallar på det som beskrevs ovan, Alternativt en kort intensivkurs att programmera slutapplikationen i Openwrt. WiFi inställningar, e-postadress, e-posstmeddelande och ev. övriga inställningar ska kunna konfigureras via t.ex. USB från en PC (Teraterm duger). Om möjligt vore det bra att kunna ändra dessa inställningar genom att t.ex. skicka e...

    $29 - $245
    $29 - $245
    0 bud

    Jag har pågående arbete relaterat till vårat tidigare projektpython programming'

    $20 / hr (Avg Bid)
    $20 / hr Snittbud
    1 bud
    uppgift python Avslutades left

    olika delmoment: Kodskelett Innan programmet skrivs ska en specifikation i form av ett kodskelett lämnas in. Syftet är att du ska tänka igenom problemet innan du försöker lösa det. Prototyp När ditt kodskelett har blivit godkänt så är det dags att börja arbeta med en prototyp av programmet. En prototyp är en första körbar version av programmet som innehåller den mest grundläggande funktionaliteten. Syftet med att lämna in en prototyp är att vi ska kunna ge tips och råd om förbättringar och ändringar redan innan programmet är helt klart. Beskrivning av upgiften: Varudeklaration: Filhantering. Str¨anghantering. Hantering av datastrukturer samt s¨ok...

    $138 (Avg Bid)
    $138 Snittbud
    1 bud

    We are seeking a highly skilled and experienced Data Scraping Spe...and IP blocking. Ensure data scraping processes comply with legal and ethical standards. Troubleshoot and resolve any issues that arise during scraping operations. Collaborate with our development team to integrate scraping solutions seamlessly. Requirements: Proven experience in web scraping and data extraction at scale. Proficiency in programming languages commonly used in web scraping (e.g., Python, Node.js). Experience with cloud services (AWS, GCP, Azure) and deploying scalable scraping solutions. Advanced understanding of web security measures and techniques to bypass them. Strong problem-solving skills and the ability to work independently. Excellent communication skills and the ability to document processe...

    $239 (Avg Bid)
    $239 Snittbud
    13 bud
    Looking for Only Fans Chatter 6 dagar left
    VERIFIERAD

    I'm in need of an experienced professional to manage a only fans chatter platform tailored specifically for India. The role will involve overseeing and interactions within the comm...community - Implement any necessary measures to maintain user satisfaction and platform safety Ideal Candidate: - Proven experience in community management, preferably in a only fans platform - Strong understanding of Indian culture and interests - Proficient in moderation practices, with experience in handling sensitive content - Ability to enforce rules while fostering a positive community environment - Excellent communication and problem-solving skills The chosen freelancer must demonstrate a proactive and responsible approach to managing the community, as well as a keen understanding of the t...

    $7 - $18
    $7 - $18
    0 bud

    I'm seeking a Django and Python Fullstack developer who can lend their expertise to my application project. The chosen freelancer should excel in creating: - Robust user authentication and authorization systems - Seamless database integration - Responsive design that adapt to various devices I have certain design ideas but I would highly appreciate guidance to help realize these concepts. The freelancer should possess a strong grasp of user-centric design and prove instrumental in translating these concepts into a streamlined, functional, and easy-to-use interface. Ideal skills: Python, Django, Database Management, User Interface Design, User Experience Design, and Responsive Web Design. It's a bonus if the candidate has a knack for making technical functionalit...

    $250 - $750
    $250 - $750
    0 bud
    Agile Scrum Master Needed 6 dagar left
    VERIFIERAD

    I'm in need of an Agile Scrum Master to guide my small tea...principles - Ensuring the team adheres to Scrum practices and values - Collaborating with Product Owners and other stakeholders to ensure successful delivery - Identifying and resolving any impediments that may obstruct the team's progress - Promoting continuous improvement in the team's processes and practices Ideal Candidate: - Proven experience as a Scrum Master in a software development environment - Strong understanding and practical application of Agile and Scrum principles - Excellent communication, facilitation, and coaching skills - Ability to work effectively with small teams - Adept at fostering a collaborative and empowered team culture - Certified Scrum Master (CSM) or similar certification is ...

    $20 / hr (Avg Bid)
    $20 / hr Snittbud
    6 bud

    ...while Ben, aged 14, and Emma, 8 years old, are at critical stages in their academic journey. Yet, without financial assistance, their dreams of receiving a quality education may remain out of reach. Your support will directly impact the lives of these three children by covering their school fees, purchasing essential supplies, uniforms, and ensuring they have access to a conducive learning environment. By investing in their education, we're not just providing them with knowledge; we're empowering them to break free from the cycle of poverty, build brighter futures, and become agents of change in their communities. Together, we can make a tangible difference in the lives of Alice, Ben, Emma, and countless other children across Uganda who deserve the chance to thrive. Y...

    $10 - $30
    $10 - $30
    0 bud

    ...promotional materials with branding and campaign strategies. 3. Conceptualize and execute engaging promotional campaigns that capture the target audience's attention and drive engagement. Leadership and Team Management: 1. Manage a team of video editors, motion graphics artists, and post-production staff, delegating tasks, providing feedback, and fostering a collaborative and supportive work environment. 2. Mentor junior editors and provide training opportunities to enhance their technical skills, creative abilities, and professional development. Quality Assurance and Technical Expertise: 1. Conduct quality control checks on video content to ensure technical accuracy, visual consistency, and adherence to client specifications and brand guidelines. 2. Troubleshoot technical...

    $1697 (Avg Bid)
    $1697 Snittbud
    19 bud
    Created a Website with 3D Logo 6 dagar left
    VERIFIERAD

    ...improve the overall quality and effectiveness of the website. Project Timeline: Day 1: Initial Kickoff and Sample Home Page Design Discuss project requirements and finalize design specifications. Deliver a sample home page design for review and approval. Day 2-4: Design Finalization and Setup Review feedback on the sample home page and make necessary adjustments. Set up the WordPress environment and necessary plugins. Create a sitemap and finalize the content structure. Day 5-7: Development Phase 1 Begin development of the main pages (Home, About Us, Services). Integrate 3D logo and initial animations. Ensure responsive design and cross-browser compatibility. Day 8-10: Development Phase 2 Develop additional content pages (Case Studies, Blog, Contact Us). Continue i...

    $289 (Avg Bid)
    $289 Snittbud
    26 bud

    ...Backend Development (3-4 weeks) • Set up the database and develop API endpoints. • Implement user authentication, payment processing, document management, and chatbot integration features. Phase 4: Integration and Testing (3-4 weeks) • Integrate frontend with backend. • Conduct unit testing, integration testing, and user acceptance testing. Phase 5: Deployment (1 week) • Set up the production environment and deploy the website. • Ensure domain and hosting are configured. Phase 6: Post-Launch Support (3 months) • Monitor the website for any issues. • Provide bug fixes and updates as needed. • Offer user support. Technology Stack Frontend: • HTML, CSS, JavaScript • Framework: React.js (or Angular/Vue.js) Backend: • Node.js...

    $505 (Avg Bid)
    $505 Snittbud
    39 bud

    Here is your rare opportunity to make Good Money!!! Do you thrive in a fast-paced environment where your success is directly tied to your effort? Are you passionate about connecting businesses with the power of a stellar website? If so, we want YOU on our team! We're a High Converting Website Design Agency looking for a driven, commission-only sales superstar to join our ranks. In this role, you'll be responsible for: Prospecting and Cold Calling: You'll identify potential clients who need a website refresh or a brand new online presence. Be prepared to make a positive first impression and build rapport over the phone. Understanding Client Needs: You'll have a knack for uncovering a client's vision and translating that into actionable website goals. Selli...

    $5000 - $10000
    $5000 - $10000
    0 bud

    ...multitasking office boy, who aside from being handy with common office duties, is also an experienced electrician. Their responsibilities will include: - Installing and repairing electrical outlets - Troubleshooting common electrical issues Along with the electrical tasks, the hired individual would also be expected to execute: - Cleaning and organizing tasks within a large office space environment, consisting of 7+ rooms - Running necessary errands as and when necessary - Assisting with basic office administrative tasks Ideal candidates should be well organized, experienced in office administration, and have a proven track record in handling electrical tasks. Prior experience in a similar role will be highly preferred....

    $248 (Avg Bid)
    $248 Snittbud
    3 bud

    I'm currently seeking a proficient freelancer in Google Cloud Platform (GCP) who specializes in Infrastructure setup, Virtual Machine management, and Data storage and management. Key Tasks: -Setting up a secure and efficient GCP Infrastructur...and efficient GCP Infrastructure -Managing and optimizing Virtual Machines -Handling Data storage and management effectively The freelancer needs to have: -Sound knowledge and experience in GCP -The ability to implement advanced automation in GCP Programming Skills: -High-level proficiency in Python -Competency in Shell scripting is necessary This project is for those who are passionate about cloud technologies and eager to help initiate an advanced level of automation within my GCP environment. Please, only those with the ...

    $50 (Avg Bid)
    $50 Snittbud
    2 bud

    I'm looking to hire a full-time Office Boy and Electrician for my medium-sized office space, handling a mix of general office support and electrical maintenance tasks. Key Responsibilities: - Office Boy: - Cleaning and organizing: The candidate will be responsible for maintaining the cleanliness of...Experience: - Proven experience working as an Office Boy in a similar sized office is a must. - Previous experience as an Electrician, with a good track record of installing and maintaining electrical systems. - Strong organizational skills and attention to detail, as well as a proactive approach to problem-solving. - Good interpersonal skills and the ability to work well with others in a team environment. If you have the right skills and experience for this role, I'd lo...

    $33 (Avg Bid)
    $33 Snittbud
    2 bud

    I'm looking for a Python expert who can help me preprocess and normalize a CSV dataset for a machine learning project. Key Responsibilities: - Loading the CSV dataset - Adjusting timestamps - Merging data from a single file - Normalizing the data using Min-Max scaling Ideal Skills and Experience: - Proficient in Python programming - Solid understanding of data preprocessing techniques - Experience with handling and merging large datasets - Familiarity with statistical analysis and machine learning modeling This project is crucial for setting a solid foundation for the subsequent machine learning analysis. The freelancer who takes on this role should be able to execute these tasks accurately and efficiently, with a strong eye for detail.

    $64 (Avg Bid)
    $64 Snittbud
    17 bud

    ...web dashboard using Python with Django framework. The purpose of the dashboard is to monitor a specific service. Admin can create new services or update / delete Ability to add commands to start a service if it crashes by using the commands and notify on successful execution. As well as provide web dashboard for visibility . If this service crashes, the dashboard should send notifications via email and then restart the service. Key Requirements: - Develop a Python-based web dashboard using the Django framework. - Implement a monitor for a specific service. - Configure email notifications to be sent out to a designated email address upon service crash. - Enable the dashboard to automatically restart the service upon crash. Your Experience: - Proficiency in Python...

    $168 (Avg Bid)
    $168 Snittbud
    13 bud

    I'm seeking an experienced interior designer to transform the layout and display of a retail pharmacy located within a hospital. Your focus will be on creating an intuitive and efficient layout and on strategic merchandising to optimize the space and improve customer experience. * **Expertise required:** - Proven experience in retail interior des...knowledge of effective merchandising practices. * **Project Scope:** The design should reflect a "professional and clinical" theme to match the setting and appeal to a broad demographic that includes hospital patients, visitors and staff. Freelancers with similar previous projects and a portfolio showcasing their design abilities will be considered first. Your creative ideas can help enhance the environment and servic...

    $394 (Avg Bid)
    $394 Snittbud
    46 bud

    I'm looking for a skilled Python developer to help me with a scraping project. I need to extract specific product data from a website's table. Skillset: - Proficiency in Python and Scrapy - Experience in web scraping - Familiarity with handling web popups The website () contains a table with important product information. For each product, I need the following details scrapped: Certificate Type Certificate Number Product Type Organization Name Country Issue Date Expiry Date in addition to Product Details Brand Model Description Barcode The data should be saved in a CSV file. There are no specific rules or requirements to be followed during the scraping process.

    $44 (Avg Bid)
    $44 Snittbud
    22 bud

    I'm looking for a professional who is proficient in converting PDF files to Word documents. This project entails: - Working with a PDF file that primarily contains textual content. - Ensuring the Word document mirrors the PDF format exactly, from text placement to style. - Operating within a Windows environment. The ideal freelancer should have superb attention to detail, and should deliver the work in a timely manner. Experience with Adobe Acrobat and Microsoft Word is highly desirable. Accuracy and format preservation is of utter importance in this task.

    $18 / hr (Avg Bid)
    $18 / hr Snittbud
    48 bud

    ...system should be able to process various types of documents including printed documents, handwritten notes, and scanned images. Key requirements for the project include: - Develop the system using Python, Java, and C# - Ensure that the system can accurately extract and process text from different types of documents - Implement a reliable method for processing printed documents, handwritten notes, and scanned images - Provide a user-friendly interface for uploading and retrieving documents Ideal candidates for this project should have: - Proven experience in developing OCR systems - Expertise in Python, Java, and C# - Strong understanding of document processing techniques - The ability to deliver a user-friendly and efficient solution If you have prior experience in OCR...

    $87 (Avg Bid)
    $87 Snittbud
    10 bud
    Python PDF to XML Conversion 6 dagar left
    VERIFIERAD

    I need a Python developer to help me convert a PDF file into an XML file. And Share that Python Code With me as well. Key Requirements: - The primary task is to extract text from the PDF and structure it into an XML file. Ideal Skills: - Strong proficiency in Python, with a good understanding of its syntax and libraries, particularly for PDF processing. - Experience in text extraction from PDFs is a plus. Please note that I do not have a predefined XML structure in mind, so I'll need some guidance on how to structure the output.

    $21 (Avg Bid)
    $21 Snittbud
    31 bud
    Expert in Neural Network -- 2 6 dagar left
    VERIFIERAD

    My project requires an expert in machine learning, particularly with a focus on using Python for neural networks. Ideal Skills and Experience: - Proven experience in machine learning projects - Expertise in Python programming - Proficiency in neural network programming - Strong understanding of deep learning Your understanding of machine learning principles, advanced Python programming, and neural network frameworks will be pivotal to the success of this project. Please detail your relevant experience and provide examples of similar projects.

    $100 (Avg Bid)
    $100 Snittbud
    12 bud
    Python Selenium Expert Needed 6 dagar left
    VERIFIERAD

    I'm looking for a skilled Python developer with experience in web scraping and Selenium. Your task is to extract a domain list from a given URL (). The data extracted should be cross-referenced for each domain with the following fields: name, full address, email, and phone. Key Requirements: - Extract domain list from a specific website () - Implement cross-referencing for each domain with name, full address, email, and phone - Proficiency in Python and Selenium for web scraping - Ideally, experience with data cleaning and manipulation Please note that the number of records on the dealer locator is unknown. Your ability to handle large data sets will be crucial for the successful completion of this project.

    $154 (Avg Bid)
    $154 Snittbud
    27 bud

    I'm looking for an experienced Python developer who has previously worked with options Greeks and the Zerodha API. Your main tasks will involve: - add third order greeks to an existing code The ideal candidate should have a strong command over Python, especially the Pandas library, and a thorough understanding of financial markets, particularly options Greeks. Prior experience working with the Zerodha API will be highly beneficial for this role. I look forward to your proposals!

    $16 (Avg Bid)
    $16 Snittbud
    4 bud

    ...a skilled developer who can create a tool that utilizes Google Chrome to perform searches and click on search results multiple times. Key Project Requirements: - The tool should be built using Python, Java or Visual Basic - The primary goal of the tool is to perform automated web browser searches and click on various results - The tool should utilize Google Chrome as the web browser To give you a better idea, the tool should: - Conduct multiple web searches on Google - Click on a configurable number of search results from the returned search page Ideal Skills and Experience: - Proficient in Python, Java or Visual Basic - Experience in browser automation and web scraping - Familiarity with Google Chrome's automation capabilities If you have experience with similar ...

    $496 (Avg Bid)
    $496 Snittbud
    46 bud

    I'm looking for a talented game developer who can integrate Google Maps into a puzzle game I'm developing. Key requirements: - Creating simple puzzles with clear solutions - Google Maps integration for navigation purposes during gameplay - walking in street view and find things. Environment updated by downloading from google as you walk. Effective skills and Experience: - Game development, specifically in puzzle games - Proficiency in integrating Google Maps feature for navigation during game design - Capability to design simple but engaging puzzles Your knowledge and expertise in these areas will be pivotal to the successful development of a user-oriented puzzle game with an exciting navigation feature.

    $569 (Avg Bid)
    $569 Snittbud
    34 bud

    I'm in need of a skilled Python developer to work on a web scraping project. Key Requirements: - I'm primarily focusing on Web scraping as the main functionality for the project. - You should be well-versed in Python and have a proven track record in data analysis. - Knowledge of web scraping is essential to ensure efficient and reliable data extraction.

    $101 (Avg Bid)
    $101 Snittbud
    23 bud
    Marketing Manager SAAS start up 6 dagar left
    VERIFIERAD

    ...in a SaaS environment. Proven Results: Demonstrable track record of creating and executing successful marketing campaigns that drive growth and ROI. References: Strong professional references to verify past performance and results. Skills: Excellent communication, project management, and analytical skills. Knowledge: Deep understanding of digital marketing, including SEO, SEM, social media, email marketing, and content marketing. Education: Bachelor’s degree in Marketing, Business, or a related field (MBA is a plus). Preferred Qualifications: Experience with digital signage solutions. Familiarity with marketing automation tools. Strong understanding of customer acquisition and retention strategies. Benefits: Competitive salary and performance-based bonuses. Flexible work ...

    $447 (Avg Bid)
    $447 Snittbud
    21 bud

    My project requires an expert in machine learning, particularly with a focus on using Python for neural networks. Ideal Skills and Experience: - Proven experience in machine learning projects - Expertise in Python programming - Proficiency in neural network programming - Strong understanding of deep learning Your understanding of machine learning principles, advanced Python programming, and neural network frameworks will be pivotal to the success of this project. Please detail your relevant experience and provide examples of similar projects.

    $88 (Avg Bid)
    $88 Snittbud
    8 bud

    I'm in need of a skilled Python coder to assist me in deploying Locally Hosted Language Model (LLM) applications. Here are the details: - **Operating System**: The deployment is hybrid, so familiarity with Windows, macOS, and Linux is ideal. - **Purpose**: The primary aim of the deployment is for text ebedding (vector db) and generation. - **Requirements**: Specifically, I'm looking for functionality related to Language modeling and retrieval augment generation in the LLM applications. - mongoDB should be set up runining a .sh file - docker-compose deploy of the app - whisper transformers for stt ttl - AWS S3 bucket for file serving Essential skills for this project include a strong background in Python programming and experience with deploying applications on di...

    $207 (Avg Bid)
    $207 Snittbud
    15 bud

    I have a website, built on Custom PHP, that I've recently migrated from a test environment to a new domain. However, although subpages are accessible via the new domain, the main page isn't redirecting properly. Key requirements: - Troubleshoot and fix the issue with the main page so that the website is fully functional on the new domain. You should have: - Strong experience with Custom PHP. - Proficiency in React and PHP Laravel. - Good understanding of website migration processes. I have access to the admin panel and can provide you with the necessary logins.

    $28 (Avg Bid)
    $28 Snittbud
    43 bud