Parse address pythonJobb

Filter

Mina senaste sökningar
Filtrera:
Budget
till
till
till
Typ
Kompetens
Språk
    Jobbstat
    2,000 parse address python 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
    Software in Python Avslutades left

    Good programming skills

    $30 (Avg Bid)
    $30 Snittbud
    1 bud

    I want article reasearch and bloggposts on topics such. What is and IP address? What is a Webbproxy? News about internet in general. I will provide the topics. Blogg posts are to be written in English.

    $155 (Avg Bid)
    $155 Snittbud
    2 bud
    Skriv några artiklar Avslutades left

    Jag vill ha artikelresearch och bloggposter på ämnen som - vad är en IP address? vad är en webproxy? Länkbyggnation och nyheter om internet i allmänhet. Ämnesvalen anger jag. Bloggartiklarna skall vara skrivna på Engelska.

    $30 - $250
    $30 - $250
    0 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
    Bygg en hemsida Avslutades left

    ...Skadeverkstad Göteborg, Spotrepair Göteborg, Billackering Göteborg, Rostskydd Göteborg, Solfilm Göteborg, Ditec Göteborg, Ceramic pro Göteborg, Tectyl Göteborg, Dinitrol Göteborg. Keramisk lackskydd, MrDry Göteborg, Lagning av bucklor, Stenskott . 4-Make new look of the website and create new pages with more information. (I fix text and images). 5 Optionally, create a new website with the domain address 6-creating company page on Facebook, Instagram. (Ditec Sisjön) 7-please come with more suggestions. Swedish Hemsida, Google, SEO, Socialamedier. 1-Fixa Google+ Lokalt (Ditec Center Sisjön) sökorden ska vara Bilvård Göteborg, Rekond Göteborg, Rekonditionering, Biltvätt G&...

    $1354 (Avg Bid)
    $1354 Snittbud
    18 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 in need of a highly skilled and experienced Python Developer who specializes in Large Language Models (LLM) and Retrieval Augmented Generation (RAG) tasks. Key Tasks: -Your main responsibility will be to create a custom AI Chatbot by combining LLM (Large Language Model) with RAG (Retrieval-Augmented Generation) using custom data. General Requirements: - Demonstrable proficiency in Python and understanding of LLM and RAG is a generally necessary. - Familiarity with Chatbot modeling, data analysis, model building, web scraping, data extraction, and task automation will be regarded as additional advantages. This project provides an excellent opportunity for individuals deeply interested in language models and augmented generation. Interested and qualified bidders are a...

    $15 (Avg Bid)
    $15 Snittbud
    2 bud

    My PHP + Twig + Javascript website is currently experiencing functionality issues. I am looking for a skilled developer to diagnose and address these issues promptly. Key Points: - The website is built on PHP, Twig and Javascript, so expertise in these languages is essential. - I need the professional to investigate and resolve the functionality problems I've detected. - The specific issues are not clearly defined, but it's related to how the website operates. - The developer should have experience with identifying and rectifying common PHP, Twig, and Javascript functionality errors. This project requires a proactive and experienced developer who can quickly understand the website's code and rectify the identified issues.

    $36 (Avg Bid)
    $36 Snittbud
    23 bud

    Seeking skilled debt consolidation professional to address my business's current financial challenges. Currently, we are grappling with over $100,000 in business loan and credit card debt. Our primary approach has been to cut expenses, which helped to a certain degree, but hasn't fully addressed the problem. We are open to other strategies, including debt consolidation, to find a practical solution. Ideal freelancer should have: 1. Proven background in Financial Planning or Debt Management 2. Experience dealing with business loans and credit card debt 3. Strong problem solving, strategic, and planning skills 4. Previously demonstrated success in helping similar businesses minimize and manage their debts.

    $1374 (Avg Bid)
    $1374 Snittbud
    18 bud

    I am in need of a skilled Python developer to assist with compiling a Python project into an executable file for Windows. Key Responsibilities: - Compile a Python desktop application into an executable file that can be run on Windows. Ideal Skills and Experience: - Proficiency in Python programming. - Experience with compiling Python applications into executable files. - Knowledge of Windows development environments and tools. This is a straightforward task, but I require someone with experience in compiling Python programs for Windows, as I am keen on ensuring the final product is suitable for distribution and use on Windows operating systems.

    $35 (Avg Bid)
    $35 Snittbud
    24 bud

    ...appealing leaflet that effectively communicates our services, introducing our expert garage mechanics, and detailing our workshop facilities - Incorporate the following services in an attractive and appealing manner: Car repair, Oil change, Battery replacement, Denting Painting, Modifications, upgrades, all types of car accessories - Include contact details such as phone number, email address, physical address, as well as our Instagram and Facebook pages to ensure easy access to our workshop Ideal skills and experience for this project: - Proven experience in creating engaging and effective leaflet designs for businesses, particularly in the automotive sector - Strong graphic design skills with a keen eye for detail and aesthetics - Ability to effectively communicate bot...

    $16 (Avg Bid)
    $16 Snittbud
    25 bud

    ...data. 2. **Export to QField:** - Prepare and export the QGIS maps to QField format, ensuring compatibility with QField standards. - Test the maps on QField to verify their operability and accuracy for field use. 3. **Quality Assurance and Testing:** - Conduct thorough testing at each stage of the project to ensure the integrity of the data and its usability in QGIS and QField. - Address any issues identified during testing to ensure the maps meet project requirements. **Deliverables:** - QGIS files of the converted maps, ready for use. - Documentation detailing the conversion process, including any specific adjustments made to ensure compatibility with QGIS and QField. - A final report summarizing the project outcomes, challenges encountered, and solutions implemen...

    $102 (Avg Bid)
    $102 Snittbud
    7 bud

    As a business using Zoho Creator, I'm looking for a skilled developer to create advanced workflows between Zoho Creator and Zoho applications. Key Requirements: - Integrating Zoho Creator with Zoho applications - Implementing triggered actions based on specific events - Implementing custom ...this to happen, I would like that a message will appire when the form are submitted saying: Thank you for sub-meeting the forms, your information and privacy is important to us and we will be in touch soon to discuss the results. and I would like the chart result to be sent automatically to my email address, in a PDF Format, Subject of the email should be the name of the individual that submeeted the forms, as well I would like to obtain their information likle Telephone number, name and...

    $146 (Avg Bid)
    Sekretessavtal
    $146 Snittbud
    8 bud

    I'm in need of a skilled...website is fully responsive across all devices and navigation within the website is tidied up. -**Shop Design:** Tidy the shop pages up and ensure they are fully working as expected. Ideal Skills: - Advanced knowledge of Elementor - Strong experience in website optimization and performance improvement - Proficient in responsive web design principles I'm looking for someone who can efficiently address these issues and refine the overall user experience of my site. Ideally I would like to keep working with you after this on follow-up projects if you're interested, so I'd prefer an hourly quote over a project quote. My website is dookery.com. You can see the website framework by going to or and navigating from there.

    $21 / hr (Avg Bid)
    $21 / hr Snittbud
    101 bud
    Company Profile Design in Figma 6 dagar left
    VERIFIERAD

    ...- Significant projects and developments 4. Where We Are Going Next: - Future plans and strategic direction 5. Our Technology: - Overview of technological features 6. Benefits: - Key benefits of using our platform 7. Funding Solutions: - Types of funding solutions offered 8. Target Audience: - Detailed profiles of who the platform is built for - Specific needs and how we address them Deliverables: - A polished, multi-page company profile/documentation overview designed in Figma. - All design assets and source files. - A consistent and professional design that aligns with our brand guidelines. - Interactive elements where applicable (e.g., clickable links, forms). - High-resolution export of the final design in PDF format. Design Requirements: - Adherence t...

    $231 (Avg Bid)
    $231 Snittbud
    80 bud

    ...solution? 6. We are in RFID business deeply for several years. Please let us know if you need us to provide some sample RFID tags for your testing, else we assume you will get them. Though they are available at very inexpensive price everywhere. 7. Suggest ways to improve/optimize the RFID passive tag's relative location x,y,z co-ordinates results. 8. Any questions you have that we may have failed to address here. 9. What all editors will be used? 10. Confirm All the IP rights, editable form of designs, drawings, supporting docs, source codes, professional user, installation manuals and any other related materials will be submitted to us, before any payment request. 11. Any exceptions taken. 12. Submit Testing procedures to verify & confirm for your satisfaction 13. Subm...

    $970 (Avg Bid)
    $970 Snittbud
    6 bud
    Excel to Gmail Email Sender 6 dagar left
    VERIFIERAD

    I'm looking for a skilled developer who can create a program that will fac...include: - Using Gmail as the email service provider. - The emails will be sent to multiple recipients with the same content. - The frequency of sending emails is irregular. The main responsibilities of the program are: - Extracting email addresses and any other necessary information from the spreadsheet. - Attaching a PDF to each email. - Sending out the emails. Ideal skills: - Proficiency in Python or similar programming language. - Experience in working with Gmail API. - Proven track record in developing email automation tools. Please note that while personalization is not currently required, the program should be built in a way that adding personalization features in the future would be a straig...

    $95 (Avg Bid)
    $95 Snittbud
    56 bud

    I need a python programme to download historical prices on daily basis of a list of stocks from the BSE India (Bombay Stock Exchange) website. Data should be stored in csv or excel file. Retrieve data accurately and efficiently.

    $55 (Avg Bid)
    $55 Snittbud
    9 bud

    I'm looking for a skilled software developer with proficiency in Java, Python, and C# to create a mobile application. The main goal of this project is to design and develop a mobile application with a seamless user interface and user-friendly experience. Key functionalities that the application should have include: - Efficient product catalog and search system to allow users to easily find and browse through available products - Intuitive user registration and login features to ensure a personalized experience for users The ideal candidate for this project should have a proven track record of developing mobile applications, with a strong understanding of Java, Python, and C#. Experience in e-commerce development and a keen eye for user experience design would be highl...

    $419 (Avg Bid)
    $419 Snittbud
    17 bud

    Must use logo to match the feeling I'm looking for a unique and creative business card design for my Caribbean style restaurant. The design should embody the essence of the Caribbean and all the information needed for a solid business card. Key requirements: - Incorporate the restaurant name and logo in a way that's prominent and appealing - Include the address and contact information clearly and legibly - Add Social Media handles in a way that's visually appealing and in line with the overall Caribbean theme Additional requirements: - I'd like the business card to be double-sided, with perhaps a Caribbean design on the back or additional information about the restaurant Ideal Skills and Experience: - Experience in designing business cards, particularly for ...

    $10 (Avg Bid)
    Garanterad
    $10
    72 bidrag

    I am in need of a network-savvy professional to help me configure a Unifi Dream Machine Pro to enable it to do a passthrough of an IP address to another router (Edgerouter). Skills and Experience: - In-depth knowledge of networking principles. - Proven expertise in Ubiqity products like Dream Machine and Edgerouter - Strong troubleshooting capabilities.

    $30 / hr (Avg Bid)
    $30 / hr Snittbud
    15 bud

    Description: We are seeking an e...service. Analyze data related to rental amounts, property types, locations, and amenities. Provide detailed reports comparing market trends, prices, and available amenities. Create visualizations that clearly illustrate market dynamics. Requirements: Proven experience in data collection and analysis, particularly in real estate or similar markets. Strong proficiency with data analytics tools (Excel, Python, R, etc.). Ability to interpret large amounts of data and to multi-task. Strong analytical skills with attention to detail. Excellent communication and presentation skills. Project Scope: The project will commence immediately upon hire and is expected to last approximately 4 weeks. The analyst will provide weekly updates and a comprehensive fin...

    $138 (Avg Bid)
    $138 Snittbud
    26 bud

    ...**Pricing Tiers:** Clearly present 3-4 pricing tiers with their features and benefits. * **Call-to-Action:** Include strong CTAs (e.g., "Start Free Trial," "Get Started") for each tier. * **Visuals:** Use icons or graphics to highlight key features of each tier. * **Comparison:** If applicable, provide a comparison table or chart for easy decision-making. * **FAQ Section:** (Optional) Address common questions about pricing and features. **Technology:** * **Firebase:** Leverage Firebase Authentication for secure login management. * **Design Tools:** Designer's choice (e.g., Figma, Sketch, Adobe XD) for creating the designs. **Deliverables:** * High-fidelity mockups of the login and pricing pages in various screen sizes. * Assets (logos...

    $2149 (Avg Bid)
    $2149 Snittbud
    88 bud

    ...completing this project: 1. Develop a web scraping script using Python (e.g., BeautifulSoup, Scrapy) to extract data from relevant grant databases and websites (if possible, considering anti-scraping measures). Sites to be scraped: 2. Design a database schema to store the extracted data. 3. Write scripts to clean, transform, and load the data into the database. 4. Design a WordPress directory listing interface with search filters to display the grant information. 5. Develop a user interface to query and display the grant information based on customer criteria 6. Create a Python plugin for WordPress to automate the scraping work, using tools like WP-Python or PyWP. This plugin would allow for scheduled scraping, data

    $14 / hr (Avg Bid)
    $14 / hr Snittbud
    67 bud

    DETAILS: Name: Benjamin Date: 6/23 3:30PM Address: 13 Musket Lane Eatontown 'm looking for a creative graphic designer to help me create a sweet and unique first birthday card for my child. - Design: I'd like the card to feature a Teddy Bear theme, considering it's for a child's birthday. The overall design should be cute, colorful, and playful. - Size: The dimensions of the card should be A6 (105mm x 148mm), keeping it small and compact, yet still visually appealing. - Elements: While I haven't chosen specific elements, feel free to incorporate a Teddy Bear with a birthday cake, balloons, or a party hat to make the design more celebratory and fun. The final deliverable should be in a high-quality, printable format, and I'm open to your creative...

    $10 (Avg Bid)
    Garanterad
    $10
    42 bidrag

    ...flows through the entire checklist, maintaining dependencies and task sequences. Set up triggers to initiate automations based on specific actions (e.g., task creation, completion, or status change). Email Integration: Integrate our email system with ClickUp to enable direct email sending from within ClickUp. Ensure that email addresses prepopulate as contacts' details are typed into the email address field. Create and configure email templates for common communications. Contact Management: Import and manage a large contact list (approx. [specify number]) within ClickUp. Ensure synchronization of the contact list with external sources if needed. Checklists and Task Management: Organize and automate around 20-25 checklists with varying numbers of tasks. Set up dependencies an...

    $144 (Avg Bid)
    $144 Snittbud
    8 bud

    As the owner of an advanced security level website, I am seeking professional ha...professional hacking services to conduct thorough penetration testing. The key focus areas would be: - User Authentication Process: Probe for any weak links in our login and authentication systems. - Data Encryption: Assess the robustness of our data encryption protocols. - Server Security: Evaluate potential weaknesses in our server security. Ideal applicants would have significant experience with Python-based hacking tools and a proven track record in cybersecurity. Knowledge of advanced security measures and the ability to recommend improvements after testing is highly desirable. Please provide evidence of your skills and previous work in your application. Make sure your proposals are competitive...

    $700 (Avg Bid)
    $700 Snittbud
    11 bud

    I'm in need of a skilled developer who can create a sophisticated SERP analysis tool specifically for Google. - Your main task will be to develop a tool that can accurately analyze Google's search engine results pages (SERPs). - I'm looking for someone who has experience in developing software that can parse and interpret SERP data effectively. - While I'm not looking for a full suite of features, ensuring that the tool can provide a comprehensive SERP analysis is crucial. - The tool should be user-friendly, intuitive, and capable of generating clear and concise reports based on the analysis conducted. Given the nature of the project, expertise in web scraping and data analysis would be highly beneficial. Familiarity with Google's search algorithms an...

    $349 (Avg Bid)
    $349 Snittbud
    47 bud

    The objective of this project is to address issues related to Facebook login functionality within our iOS mobile application. Currently, users are experiencing difficulties logging in via Facebook authentication. The project involves diagnosing the root cause of the problem and implementing necessary fixes to ensure seamless and reliable Facebook login experience for users. Key Tasks: Diagnosis of Existing Issues: Conduct thorough testing and analysis to identify the specific issues causing the Facebook login failure on the iOS app. Review Facebook SDK Integration: Evaluate the integration of Facebook SDK within the iOS app to ensure compliance with the latest SDK version and best practices. Address Authentication Errors: Implement necessary changes to resolve authentic...

    $104 (Avg Bid)
    $104 Snittbud
    21 bud
    Git and Python Tutor for ML and AI 6 dagar left
    VERIFIERAD

    I'm a beginner looking for a tutor to help me learn and understand Git and Python, with a focus on branching, version control, Python syntax and functions, as well as building Machine Learning (ML) and Artificial Intelligence (AI) models. My preferred learning style is through hands-on projects. The ideal candidate should have the following skills and experience: - Proficiency in Git and Python - Experience with version control, branching and merging - Strong understanding of Python syntax and functions - Background in building ML and AI models - Ability to teach through hands-on projects.

    $24 / hr (Avg Bid)
    $24 / hr Snittbud
    55 bud
    VCF File Conversion & Parsing 6 dagar left
    VERIFIERAD

    I'm in need of a freelancer who can help me parse my VCF file and convert it to a different format. The main goal of this task is to extract the genotype information from the file. input will be VCF file (from ONT whole genome run) and csv file with columns containing rsID, chromosome number, position. output will be same as input csv file, with extra column showing genotype from VCF at the given position can run on Mac shell so either perl or python would be fine. Ideal Skills & Experience: - Proficient in parsing VCF files and understanding genotype data - Experience in converting files to various formats like CSV, TXT, and XLS - Attention to detail to ensure accurate extraction of the data - Knowledge of any data validation methods would be a plus. should be a s...

    $458 (Avg Bid)
    $458 Snittbud
    73 bud

    I'm in need of a skilled developer who can create a Windows GUI application. This app should be capable of opening and editing a pre-formatted CSV file. Key Features: - The app should have interfaces for inputting free-form English text in certain fields and selecting options from drop-down menus in o...understanding of UI/UX design, especially in creating professional and corporate visuals - Ability to deliver a straightforward and intuitive user experience - Strong communication skills for clarifying any requirements during the development phase. The net result will be a simple app to edit a CSV file before it is uploaded to a copier. We are tired of using a text editor to maintain a copier address book. This format is specific to Ricoh's. Demo Export Attached. Key inc...

    $122 (Avg Bid)
    $122 Snittbud
    18 bud

    I'm in need of a Python GUI software to automate sending messages through Google Voice. The software should be able to perform the following functions: - Send messages to individual contacts on Google Voice - Support precise date and time scheduling for these messages -Automated Sending with customized message example: message example {name} and {adsress} -Custom delay settings for each message -Multiple Profile Sender (custom threads) with multiple Proxy support (enable/disable proxy) -Auto login accounts - Auto Skip Terminated Accounts -License system for users -Sending reports Ideal Skills and Experience: - Proficient in Python programming - Experience in developing GUI applications - Familiarity with Google Voice API is a definite plus - Strong understanding of me...

    $235 (Avg Bid)
    $235 Snittbud
    13 bud