10 C# Developer & Programmer Interview Questions and Answers
Find and hire talent with confidence. Prepare for your next interview. The right questions can be the difference between a good and great work relationship.
Describe the basic construction of a C# program. Write a simple program that outputs โHello Worldโ to the console.
A typical C# program consists of a namespace declaration, a class, methods, attributes, a main method, statements, expressions, and comments. A potential example for printing โHello Worldโ to the console is detailed below.
using System;
namespace HelloWorldApplication
{
class HelloWorld
{
static void Main(string[] args)
{
Console.WriteLine("Hello World");
Console.ReadKey();
}
}
}
Can you name three ways to pass parameters to a method in C#?
The three ways to pass a parameter to a method are detailed below.
- Value Parameters: Passing a parameter to a method by value creates a new storage location for the value parameter. Any changes to the value parameter by the method have no effect on the argument.
- Reference Parameters: Passing a parameter to a method by reference can be achieved by using the ref keyword. Instead of creating a new storage location for the parameter, the method accesses the memory location of the argument and passes it as a parameter. Changes made to the parameter will also affect the argument.
- Output Parameters: The out keyword allows a method to return two values from a function. It's similar to passing a reference parameter, except in this case data is being transferred out of the method.
Write a C# method to total all the even numbers in an array of ints.
This is an open-ended coding question that is likely to produce a variety of answers. What youโre really looking for is how the developer chooses to solve the problem. Do they settle for the obvious one-liner, return intArray.Where(i => i % 2 == 0).sum() or will they notice the high probability of overflow and instead opt for something more nuanced like the sample answer below?
static long TotalAllEvenInts(int[] intArray) {
return (from i in intArray where i % 2 == 0 select (long)i).Sum();
}
Experienced C# developers will take this as an opportunity to show off their knowledge of C# language constructs that make simple solutions like the one above possible.
What is Operator Overloading and how does it work?
Most of the built-in operators available in C# can be overloaded or redefined using the operator keyword. The sample code below depicts the syntax used to implement the addition operator (+) for a user-defined class.
public static Rectangle operator+ (Rectangle b, Rectangle c)
{
Rectangle rectangle = new Rectangle();
rectangle.length = b.length + c.length;
rectangle.breadth = b.breadth + c.breadth;
rectangle.height = b.height + c.height;
return rectangle;
}
What is the difference between dynamic type variables and object type variables in C#?
The difference between dynamic and object type variables has to do with when the type checking takes place during the application lifecycle. Dynamic type variables handle type checking at run time, while object type variables handle type checking during compile time.
How does C# handle encapsulation?
Encapsulation is a classic object-oriented design principle that reduces coupling between objects and encourages maintainable code. It involves enclosing objects within a logical package by limiting access to implementation details. In C#, this is accomplished through the access specifiersโpublic, private, protected, internal, and protected internal.
Predict the output of the code below.
delegate void Iterator();
static void Main()
{
List iterators = new List();
For (int i = 0; i < 15; i++)
{
iterators.Add(delegate { Console.WriteLine(i); });
}
Foreach (var iterator in iterators)
{
iterator();
}
}
This program tests the prospective developer on their experience working with loops and delegates. At first glance, one would expect the program to output the numbers 0 to 15, fifteen times. Instead, the number 15 is printed fifteen times. Since the delegate is being added within the for loop, and because the delegate is only referencing the variable i instead of the value itself, the loop sets the value of the variable i to 15 before it is invoked within each delegate.
Explain nullable types in C#.
Nullable types are data types that, in addition to their normal values, also contain a defined data type for null. Nullable types exist to help integrate C#, which generally works with value types, and databases, which often use null values. You can declare a nullable type in C# using the following syntax:
? = null;
Explain the role of structs in C#. Why would you choose to define a type as a struct instead of a class?
Structs are used to create structures, a value type that is used to represent a record. Structs play a similar role to classes, which are a reference type in C#. Since structs are value types, they are allocated and deallocated on the stack or inline in containing types. This generally makes structs cheaper to allocate or deallocate than classes, which are reference types. Reference types are allocated on the heap and garbage-collected, which tends to take up more resources. If the instances of a type are small and short-lived, it makes sense to define a value type using structs. The opposite is true when it comes to boxing and unboxing. A value type can get boxed when it is cast to a reference type or some other interface it implements. Because boxes are objects allocated to the heap and deallocated via garbage collection, too much boxing and unboxing of a value can negatively impact performance. Reference types like classes are preferred in these situations.
What are some of the features of generics in C#?
Generics allow a developer to define a class or method that can work with virtually any data type by delaying specification of the programming elements' data types until they are needed. Generics come with a number of features.
- They make C# code reusable, type safe, and performance optimized.
- They allow the developer to create generic classes, methods, events, delegates, and interfaces.
- They allow the developer to create generic collection classes in the System.Collections.Generic namespace.
- They make it possible to get real-time information on the types used in a generic data type at runtime via reflection.
C# Developers & Programmers you can meet on Upwork
- $45/hr $45 hourly
Shun Kong Y.
- 5.0
- (9 jobs)
Solihull, ENGLANDC#
Amazon Vendor CentralSAP BASISSAP ERPXSLTSAP Business ObjectsOAuthApache CordovaOpenUI5Microsoft Visual C++RESTful APIXMLSAP HANAJavaScriptTransact-SQLRecently helped client: - Tested EDI processing with simulated inbound XML message - Updated formula in Crystal Report printout - Automated data loading to legacy 3rd party application using Power Automate - Verified data records using Power Query / Excel / MSSQL - Transformed Onix 3.0 XML using Excel, VBA and XSLT - Built POC on activating OAuth2 mechanism for SAP API - Deciphered legacy ABAP programs - Pinpointed performance bottleneck Calc. View - Reduced MySQL query to sub-second Skill Possessed: - Programming: .NET, C#, Visual Basic, C++, Excel VBA, Java - Web: XML, XSLT, HTML, CSS, Javascript, oAuth, oData, OpenUI5, Apache Cordova - BI & Database: Power BI, Power Query (M), MSSQL, T-SQL, SAP HANA (Attribute/Analytic/Calculation Views), MySQL - SAP: ERP (FI / CO / SD / MM / PP / PS), BASIS, BO - ABAP: Report, SAPScript, Smart Scripts, BAPI, User Exits, LSMW, IDoc - $50/hr $50 hourly
Christian R.
- 5.0
- (3 jobs)
Tysons, VAC#
ReactLLM Prompt EngineeringPythonTypeScriptIonic FrameworkHTMLCSSASP.NET.NET FrameworkAngular 6ASP.NET MVCSQLApache CordovaJavaScriptHi, I'm Christian! It is very nice to meet you. I am a Creative Software Architect based in Virginia. I have over 15+ years of Excellence: Journeying from a Junior Software Engineer to a Senior Software Architect. I've mastered a myriad of technical skills, leading large-scale projects and pushing the boundaries in software design. With over 15 years of experience, I've cultivated a unique skill set in system (software), project and UI/UX design. Specializing in sophisticated software architecture, my expertise is a beacon for Fortune 500 companies (i.e. Werner Enterprise, DELL, Microsoft, etc.) and innovative startups seeking groundbreaking solutions. At the forefront of digital transformation, I've led initiatives like QuickDocta, a transformative health platform, showcasing my ability to elevate your projects with visionary design, and strategic prowess. Let's team up to bring unparalleled architectural acumen to your most ambitious tech endeavors. - $120/hr $120 hourly
Stephen T.
- 5.0
- (54 jobs)
Flourtown, PAC#
Microsoft AccessMicrosoft SQL ServerMicrosoft Power AutomateMicrosoft Azure SQL DatabaseMicrosoft SharePointProcess DesignSQL ProgrammingCloud DatabaseAutomationOffice 365Microsoft ExcelPythonI transform complex business tasks into efficient, automated systems, saving time, reducing errors, and improving productivity across all business areas. ---My Mission--- To build software solutions that dramatically improve the speed, quality, and output of critical business tasks, enhancing efficiency and reducing costs. ---Core Competencies--- Excel, VBA, SQL, Power Automate, Power Apps, SharePoint, Azure Cloud Services, ERP integrations, Python (Plotly - Dash, PyQt5, Selenium, Pandas, more), Data Analytics & Visualization, Power BI, Custom Dashboards, Document Automation, KPI tracking, Process Optimization, O365, Azure MS SQL, MS Access, SQLite, Postgres, MRP, ERP ---Professional Experience--- With 4+ years as a full-time freelancer and 11 years in manufacturing engineering, I've evolved from a Project Engineer (with a Mechanical Engineering Degree) to a Lead Software/Automation Engineer. My 11 years in manufacturing started with a company with ~200 employees, then acquired by an enterprise publicly traded company where I continued to work for another 5 years. This unique trajectory has honed my ability to: - Develop robust, effective yet easy to use, software solutions - Understand diverse business processes and stakeholder needs to create tailored, goal-oriented tools ---Industries Served--- Manufacturing | Engineering | Operations | Supply Chain | Sales | Accounting | Finance ---My Approach--- I collaborate closely with stakeholders to ensure solutions are user-friendly and aligned with business goals. My diverse background allows me to quickly grasp complex processes and translate them into efficient software tools. ---Example Projects--- - Custom Product Configurator with automated analysis of engineering specifications, BOM, Labor costs, lead-times, manufacturing processes, and document generation - Inventory and Supply Chain Data Tracking and Analysis - Production floor planning and analysis for revenue and OTD optimization - Financial analysis - Automated scripting, document creation, data entry, and more - ERP data design and add-on tools (Baan and SAP experience) - Data mining, aggregation, cleaning, etc. - API Integration with custom software tools with OAuth Authentication via Excel / VBA or Python - Combined Excel VBA and Python tools, utilizing modern Python features from within Excel User Interface - Data Visualization, KPI Metrics, Custom Dashboards - Windows 365 Virtual PC Utilization, Scheduled Automations to SharePoint Shared Folders - SQL Data serialization, JSON with SQL integration for combined structured and NoSQL data. - Excel to Python bridge, utilizing modern Python technology seamlessly within Excel-based tools. ---Let's Optimize Your Business--- Ready to transform your time-consuming tasks into streamlined, automated processes? Reach out and let's chat!
- $45/hr $45 hourly
Shun Kong Y.
- 5.0
- (9 jobs)
Solihull, ENGLANDC#
Amazon Vendor CentralSAP BASISSAP ERPXSLTSAP Business ObjectsOAuthApache CordovaOpenUI5Microsoft Visual C++RESTful APIXMLSAP HANAJavaScriptTransact-SQLRecently helped client: - Tested EDI processing with simulated inbound XML message - Updated formula in Crystal Report printout - Automated data loading to legacy 3rd party application using Power Automate - Verified data records using Power Query / Excel / MSSQL - Transformed Onix 3.0 XML using Excel, VBA and XSLT - Built POC on activating OAuth2 mechanism for SAP API - Deciphered legacy ABAP programs - Pinpointed performance bottleneck Calc. View - Reduced MySQL query to sub-second Skill Possessed: - Programming: .NET, C#, Visual Basic, C++, Excel VBA, Java - Web: XML, XSLT, HTML, CSS, Javascript, oAuth, oData, OpenUI5, Apache Cordova - BI & Database: Power BI, Power Query (M), MSSQL, T-SQL, SAP HANA (Attribute/Analytic/Calculation Views), MySQL - SAP: ERP (FI / CO / SD / MM / PP / PS), BASIS, BO - ABAP: Report, SAPScript, Smart Scripts, BAPI, User Exits, LSMW, IDoc - $50/hr $50 hourly
Christian R.
- 5.0
- (3 jobs)
Tysons, VAC#
ReactLLM Prompt EngineeringPythonTypeScriptIonic FrameworkHTMLCSSASP.NET.NET FrameworkAngular 6ASP.NET MVCSQLApache CordovaJavaScriptHi, I'm Christian! It is very nice to meet you. I am a Creative Software Architect based in Virginia. I have over 15+ years of Excellence: Journeying from a Junior Software Engineer to a Senior Software Architect. I've mastered a myriad of technical skills, leading large-scale projects and pushing the boundaries in software design. With over 15 years of experience, I've cultivated a unique skill set in system (software), project and UI/UX design. Specializing in sophisticated software architecture, my expertise is a beacon for Fortune 500 companies (i.e. Werner Enterprise, DELL, Microsoft, etc.) and innovative startups seeking groundbreaking solutions. At the forefront of digital transformation, I've led initiatives like QuickDocta, a transformative health platform, showcasing my ability to elevate your projects with visionary design, and strategic prowess. Let's team up to bring unparalleled architectural acumen to your most ambitious tech endeavors. - $120/hr $120 hourly
Stephen T.
- 5.0
- (54 jobs)
Flourtown, PAC#
Microsoft AccessMicrosoft SQL ServerMicrosoft Power AutomateMicrosoft Azure SQL DatabaseMicrosoft SharePointProcess DesignSQL ProgrammingCloud DatabaseAutomationOffice 365Microsoft ExcelPythonI transform complex business tasks into efficient, automated systems, saving time, reducing errors, and improving productivity across all business areas. ---My Mission--- To build software solutions that dramatically improve the speed, quality, and output of critical business tasks, enhancing efficiency and reducing costs. ---Core Competencies--- Excel, VBA, SQL, Power Automate, Power Apps, SharePoint, Azure Cloud Services, ERP integrations, Python (Plotly - Dash, PyQt5, Selenium, Pandas, more), Data Analytics & Visualization, Power BI, Custom Dashboards, Document Automation, KPI tracking, Process Optimization, O365, Azure MS SQL, MS Access, SQLite, Postgres, MRP, ERP ---Professional Experience--- With 4+ years as a full-time freelancer and 11 years in manufacturing engineering, I've evolved from a Project Engineer (with a Mechanical Engineering Degree) to a Lead Software/Automation Engineer. My 11 years in manufacturing started with a company with ~200 employees, then acquired by an enterprise publicly traded company where I continued to work for another 5 years. This unique trajectory has honed my ability to: - Develop robust, effective yet easy to use, software solutions - Understand diverse business processes and stakeholder needs to create tailored, goal-oriented tools ---Industries Served--- Manufacturing | Engineering | Operations | Supply Chain | Sales | Accounting | Finance ---My Approach--- I collaborate closely with stakeholders to ensure solutions are user-friendly and aligned with business goals. My diverse background allows me to quickly grasp complex processes and translate them into efficient software tools. ---Example Projects--- - Custom Product Configurator with automated analysis of engineering specifications, BOM, Labor costs, lead-times, manufacturing processes, and document generation - Inventory and Supply Chain Data Tracking and Analysis - Production floor planning and analysis for revenue and OTD optimization - Financial analysis - Automated scripting, document creation, data entry, and more - ERP data design and add-on tools (Baan and SAP experience) - Data mining, aggregation, cleaning, etc. - API Integration with custom software tools with OAuth Authentication via Excel / VBA or Python - Combined Excel VBA and Python tools, utilizing modern Python features from within Excel User Interface - Data Visualization, KPI Metrics, Custom Dashboards - Windows 365 Virtual PC Utilization, Scheduled Automations to SharePoint Shared Folders - SQL Data serialization, JSON with SQL integration for combined structured and NoSQL data. - Excel to Python bridge, utilizing modern Python technology seamlessly within Excel-based tools. ---Let's Optimize Your Business--- Ready to transform your time-consuming tasks into streamlined, automated processes? Reach out and let's chat! - $56/hr $56 hourly
Yan O.
- 5.0
- (6 jobs)
Kiev, KYIV CITYC#
FlutterUnityECMAScript 6API DevelopmentAPI IntegrationJavaScriptDockerGolangCSS 3HTML5MongoDBReactNode.jsjQueryHello World! My name is Yan and I am React.js/Node.js developer. I consider my self rather experienced both with front-end and back-end. I really like to know how and why everything works (or not..). The list of skills may look like: HTML, CSS, JAVASCRIPT, C#, XML, XSL, REACT.JS, NODE.JS, FLUTTER, ADOBE PHOTOSHOP, BLENDER, GIMP, INKSCAPE, UNITY3D. Opened for any reasonable project and ready to invoke all my skills for the best results - $65/hr $65 hourly
Yoel D.
- 4.7
- (16 jobs)
Miami, FLC#
ReactVue.jsECMAScriptReduxLaravelCryptocurrencyReact NativeC++ASP.NET Web APIASP.NET MVCVB.NETMySQL ProgrammingOracle PLSQLSQLADO.NETWeb API.NET Core.NET FrameworkJavaScriptTypeScriptAngular 6Bring me your problems! I have the solutions to A-Z problems. I am not limited to a single stack, as my development career has needed me to be a jack-of-all-trades, being engaged in several cutting-edge technologies. Here's what I worked on and I am working with: - Client-Side Programming: o Frameworks: Angular o UI Frameworks: BootStrap o HTML5, CSS3, jQuery, JavaScript, TypeScript - Server-Side Programming: o C#: ASP.NET, ASP.NET MVC, .NETCORE, .NET WebApi - Mobile Programming: o C/C++/C# - Database o Relational: MySQL, SQLServer, Oracle PLSql - Server: o Apache o Nginx - Architectures: o MVW (MVC, MVVM) - Version Control: o Github, Accurev I know what your project means to you and to your business. I would be willing to offer you a help with my experience as a web and mobile developer on different enterprise level applications. I am well-versed in all phases of the software development life cycle, including source control, and code review. I used to be a hard(smart) worker, a collaborative team player and a multi-tasker, being responsible and capable of prioritizing and executing tasks in a high-pressure environment, which has made me successful on my career. Good communications skill, of course, is the most important one in me, as I used to work in a scrum/agile development environment for most of my projects. I am responsible and capable of to prioritize and execute tasks in a high-pressure environment. Wouldn't it be worthwhile to have me for your real life projects? - $80/hr $80 hourly
Adrian M.
- 5.0
- (2 jobs)
Perth, WAC#
AI ChatbotChatGPT API IntegrationLLM Prompt EngineeringAI DevelopmentNode.jsDjangoOracle PLSQLAzure DevOpsApache TomcatJavaScriptReactPythonJavaSQLLooking for an experienced software engineer who has extensive industry experience, wide ranging technical skills, great communication skills, can work independently, and has an ability to really 'get' the big vision of what you want to achieve? Need someone who can fine-tune your new AI app or figure out why it's not working? UNDERSTANDING I don't just blindly focus on the technical aspects of the project. I will make sure that I understand exactly what your business wants and how the project will be used in the real world, so I can deliver something that is intuitive for users and exceeds your expectations. CREATIVITY I love coming up with brilliant and creative ideas for how your product could be improved or tweaked. If you're looking for a passive, mindless worker then you should hire someone else. I will frequently inject fresh new ideas into the discussion, and challenge your thinking. QUALITY What I can offer that you probably won't find from other freelancers here is a very high level of production build quality and testing. Instead of delivering the minimum to you, I excel in delivering a high-quality product that is not an unstable or incomplete prototype, but a production-ready product that is complete, user-friendly, intuitive, and free of bugs. EXPERIENCE I have 15+ years of experience as a software developer, building both front-end and back-end software applications, specialising in Java, JavaScript, React, Python, Django, C#, and SQL. I can integrate with LLMs such as ChatGPT to build AI features. I'm confident solving complex problems, designing new architectures, building DevOps pipelines, integrating 3rd party APIs, designing relational databases. I have exceptional skills in the area of problem-solving and trouble-shooting. COMMUNICATION What also sets me apart from most developers are my fantastic communication and people skills, making me a breeze to work with, and allowing you to understand the big picture even if youโre not a technical person. INDEPENDENCE I have and an ability to work independently to make technical decisions and solve problems, meaning you don't have to waste time micro-managing me. But it's up to you how much you delegate. I will find out from you which decisions you want to be a part of, and which ones you are happy to entrust to me. You always have the final say. WHAT TO EXPECT If I start a project with you, here is what to expect: 1. I will have a lengthy conversation with you to make sure I fully understand all of your expectations and requirements. Based on this, we will agree on individual delivery milestones. 3. I will write up the technical design for each milestone, along with an estimate of development time, and a plan for how to quality test it once it's complete. 4. I will work on each milestone and deliver a preview of it to you for feedback and minor tweaks. 5. I will then begin a round of quality testing to find bugs and ensure the product is stable and complete. 6. We will discuss and feedback and also bugs found during testing, and negotiate what can be realistically changed or fixed within the timeframe and budget of the project. 7. I will apply any fixes or minor tweaks that we agreed upon. 8. I will then deliver the final version of the software to you, complete with documentation for how to set up the development environment, how to deploy the software, and how to use it. Donโt wait, get in touch now and we can plan our first project together! - $35/hr $35 hourly
Sarwaichraza Q.
- 5.0
- (8 jobs)
Karachi, SDC#
PostgreSQLGenerative AIOpenAI APISaaS DevelopmentArtificial IntelligenceAPI Development.NET CoreSoftware Architecture & DesignPythonTypeScriptSoftware DesignNode.jsWeb DevelopmentReactIโm a Senior Full-Stack Software Engineer with 7+ years of hands-on experience building production-grade SaaS platforms, scalable APIs, and modern web applications. I specialize in ASP NET Core, Node JS, React, TypeScript, and PostgreSQL, with a strong focus on clean architecture and long-term scalability. Over the past few years, I have architected and built complex, AI-powered SaaS products end-to-end, including Ommo.ai, a logistics and freight automation platform. I designed its complete backend architecture, multi-tenant database schema, secure integration layer, and real-time systems โ taking the product from idea to production. WHAT I DO BEST Full-stack development with a backend-first, scalability-focused approach SaaS architecture and system design Microservices and secure API development AI and automation integrations Real-time systems using WebSockets and SignalR Cloud-ready, production-grade code CORE TECHNOLOGIES Backend ASP NET Core Node JS C Sharp, TypeScript, JavaScript Authentication, authorization, JWT, role-based access control Frontend React JS using hooks, context, and Redux TypeScript with modern component architecture Scalable and maintainable UI state management Databases PostgreSQL SQL Server MongoDB Multi-tenant database design and performance optimization AI AND AUTOMATION AI calling and conversational systems Speech-to-text and text-to-speech integrations AI workflow orchestration and automation Cloud and DevOps Docker and containerized services AWS and Google Cloud deployments CI CD friendly architectures REAL PRODUCT EXPERIENCE Unlike many profiles, I have architected complete platforms, not just isolated features. Iโve built secure third-party integrations, designed systems meant to scale under real production load, and worked directly with founders and stakeholders. I understand business constraints, technical debt, and delivery pressure because Iโve owned real products. HOW I WORK Clean, maintainable, production-ready code Clear communication and ownership mindset Architecture decisions explained in simple terms Long-term solutions instead of short-term hacks Whether youโre building a new SaaS product, scaling an existing system, adding AI automation, or fixing architecture and performance issues, I bring clarity, structure, and execution. Letโs build something that actually works โ and scales. - $35/hr $35 hourly
Francis Deo A.
- 4.8
- (138 jobs)
Leyte, EASTERN VISAYASC#
ScriptingBot DevelopmentAmiBroker Formula LanguageDatabaseRabbitMQMetaTrader 5Data ScrapingAutomationRESTful APITwilio APIDjangoNode.jsPythonWindows Presentation FoundationHello and Mabuhay from the Philippines ๐ต๐ญ Iโm a software engineer with 10+ years of experience building automation systems, AI workflows, and scalable APIs that streamline operations and reduce manual work. I help businesses replace repetitive tasks with reliable, automated systems, saving time, lowering costs, and improving efficiency. What I deliver: AI & workflow automation API integrations & backend systems IoT services & RESTful APIs Data processing & reporting systems Internal tools & dashboards ๐ก I donโt just write code, I build systems that make businesses run better. Letโs build something that actually moves your business forward. - $40/hr $40 hourly
Lee H.
- 4.7
- (8 jobs)
Payson, AZC#
SQLOCR SoftwareDesktop ApplicationTesseract OCRAngularASP.NETHTMLJavaScriptC++With over 35 years of professional experience developing Windows C++/C# desktop and web apps, I enjoy system programming, interfacing with hardware, and being thrown in the deep end. I am familiar with many technologies, including ASP.NET, SQL, Angular, WinForms, COM, Active Directory, Javascript, Typescript, OCR, and Git. - $45/hr $45 hourly
Dmitry S.
- 5.0
- (42 jobs)
Banska Bystrica, BANSKOBYSTRICKรC#
FlutterWeb APIEntity FrameworkPostgreSQLMySQLAngularReactCryptocurrencySoftware QAASP.NET Web API.NET FrameworkJavaScriptSQLMongoDB๐ ๐ฑ๐ฟ๐ถ๐๐ฒ ๐ฏ๐๐๐ถ๐ป๐ฒ๐๐ ๐๐ฅ๐ข๐ช๐ง๐ ๐ฏ๐ ๐ฝ๐ฟ๐ผ๐๐ถ๐ฑ๐ถ๐ป๐ด ๐ฃ๐ฅ๐ข๐๐๐ฆ๐ฆ๐๐ข๐ก๐๐ ๐๐ฒ๐ฏ ๐๐๐ฆ๐๐๐ก ๐ฎ๐ป๐ฑ ๐๐๐ฉ๐๐๐ข๐ฃ๐ ๐๐ก๐ง ๐๐ฒ๐ฟ๐๐ถ๐ฐ๐ฒ๐ โจ Full-stack software development โ SQL / MongoDB / .NET / C# / Node.js / TypeScript โจ Web & mobile applications โ React / Angular / Flutter โจ UX/UI design โ Figma / Photoshop / Illustrator โจ Software architecture โ ERD / UML / Scaling / Security ๐๐ผ๐ป๐๐ฎ๐ฐ๐ ๐บ๐ฒ ๐๐ผ ๐๐๐ฎ๐ฟ๐ ๐๐ผ๐๐ฟ ๐ฝ๐ฟ๐ผ๐ท๐ฒ๐ฐ๐ ๐ฟ๐ถ๐ด๐ต๐ ๐ฎ๐๐ฎ๐! ๐๐ผ๐ ๐ ๐๐ผ๐ฟ๐ธ ๐๐ผ ๐๐๐ฟ๐ป ๐๐ผ๐๐ฟ ๐ฝ๐ฟ๐ผ๐ท๐ฒ๐ฐ๐ ๐๐ถ๐๐ถ๐ผ๐ป ๐ถ๐ป๐๐ผ ๐ฟ๐ฒ๐ฎ๐น๐ถ๐๐ 1๏ธโฃ Consultation โ Discuss the project idea, figure out requirements, set up budget and timeline. 2๏ธโฃ UX/UI design โ Prepare middle and high fidelity design mockups and prototypes. 3๏ธโฃ Architecture โ Introduce ERD and UML diagrams to have a single point of synchronization. 4๏ธโฃ Development and testing โ Implement the project utilizing Agile methodology with 1 or 2 week sprints and incremental delivery after each iteration. 5๏ธโฃ Deployment โ Deploy the whole solution into production environment. 6๏ธโฃ Support โ Provide post-delivery support to ensure product effectiveness. ๐ช๐ต๐ฎ๐ ๐ฒ๐ ๐ฝ๐ฒ๐ฟ๐๐ถ๐๐ฒ ๐ ๐ต๐ฎ๐๐ฒ โก Databases & warehouses โ MS SQL Server / MySQL / PostgreSQL / MongoDB / Azure Storage. โก Backend โ .NET / C# / ASP.NET / Node.js / REST API. โก Frontend โ React / Angular / Next.js / TypeScript. โก UX/UI design โ Figma / Photoshop / Illustrator. โก Payment gates โ Stripe / PayPal / Vantiv / etc. โก Integrations โ Intuit / QuickBooks / Xero / OpenAI / SendGrid / Postmark. ๐๐ผ๐ป๐๐ฎ๐ฐ๐ ๐บ๐ฒ ๐๐ผ ๐๐๐ฎ๐ฟ๐ ๐๐ผ๐๐ฟ ๐ฝ๐ฟ๐ผ๐ท๐ฒ๐ฐ๐ ๐ฟ๐ถ๐ด๐ต๐ ๐ฎ๐๐ฎ๐! - $50/hr $50 hourly
Pierce B.
- 5.0
- (4 jobs)
Cypress, TXC#
User Interface DesignData ScienceASP.NETAlgorithm DevelopmentC++CSSSQLJavaJavaScriptHTMLBachelor's of Science in Computer Science from the University of Houston. Going on 10+ years of programming with 3 years of professional experience and a diverse portfolio of project types. Proficiencies: - C# - ASP.NET MVC and Web APIs - Razor Pages - JavaScript/TypeScript - HTML - CSS - Java - Python - SQL - C++ - R - Database Design and Maintenance - Advanced Algorithms - Communication Other skills: - Unity - Unreal Engine - Angular - Coding Interview Mentoring - Statistics and Analysis - Advanced Math - $35/hr $35 hourly
Sandip R.
- 4.8
- (20 jobs)
Atkot, GUJARATC#
Visual BasicMicrosoft AzureDatabase ArchitectureSQL.NET FrameworkASP.NET CoreASP.NET Web APIAngular 6ASP.NET MVCASP.NETGitHubMicrosoft SQL ServerJavaScriptHi! Iโm Sandip, a Senior .NET Developer and Software Architect with over 10 years of experience building scalable, high-performance web and desktop applications. Iโve worked 18,000+ hours on Upwork with two long-term clients, specializing in Competency-Based Education software and Home Health Care software for over a decade. ๐ผ My Expertise Includes: .NET & .NET Core Ecosystem: C#, ASP.NET MVC, ASP.NET Web Forms, WinForms, ADO.NET, LINQ, WCF, SOAP JavaScript Frameworks & Libraries: AngularJS, VueJs, jQuery, BackboneJS, KnockoutJS, TypeScript, NodeJS, SignalR Modern Web Development: HTML5, CSS3, AJAX, WebSockets, JSON, XML, DOM Manipulation Database Management: SQL (MySQL, MS SQL, PostgreSQL), NoSQL (MongoDB), Stored Procedures, Query Optimization, BI DevOps & Cloud: Azure, AWS, CI/CD Pipelines, Docker, Server Management, GitHub, Bitbucket Architecture & Design: Best Practices, Scalability, Multithreading, Performance Optimization, UML ๐ What You Get When You Hire Me: โ End-to-End Solution: From architecture & design to development, deployment, and maintenance. โ Modern & Scalable Codebase: Implementing the latest tools and technologies to ensure your application is future-proof. โ Seamless Collaboration: I value communicationโexpect regular updates, proactive suggestions, and a partnership approach. โ Deployment & CI/CD Expertise: Optimized workflows for continuous integration and delivery using Azure, AWS, or your preferred infrastructure. โ UI/UX Excellence: Building interactive and responsive front-ends using AngularJS, VueJs, and other modern frameworks. ๐ Why Work With Me? I bring ideas and suggestions to the tableโnot just code. I prioritize long-term relationships over short-term projects. I stay updated with current trends and best practices in the software industry. I adapt quickly to your preferred tech stack, tools, and methodologies. Letโs build something amazing together. Feel free to reach outโIโm excited to discuss how I can help you achieve your goals! - $75/hr $75 hourly
Diego B.
- 5.0
- (43 jobs)
Indaiatuba, SPC#
Visual BasicMySQL ProgrammingPHPFront-End DevelopmentAPI DevelopmentMicrosoft SQL Server ProgrammingPythonI am a T-shaped Software Engineer with 20 years of experience building and leading projects ranging from small websites to mission critical, enterprise-level web applications. My main languages are PHP, Python and .NET, but I have used many other during my career including Java and Javascript (both frontend using React, and backend using Node). I also have solid background in Automation, Data Engineering, DevOps and Cloud Platforms. In previous position I was responsible for complex architectures in mission critical applications using multiple cloud providers and platforms like Docker, Heroku, Acquia, Pantheon, Azure, Amazon AWS and Google Cloud. I also have experience working as a Senior Tech Lead, helping Junior, Mid-Level and Senior engineers build better software and boost their careers. I have an MBA degree in Strategic IT Management from FGV/Ohio University and a B.Tech degree in Computer Systems Analysis from IBTA. - $50/hr $50 hourly
Muhammad Shuaib A.
- 5.0
- (2 jobs)
Nuremberg, BYC#
NGINXAzure OpenAI ServiceASP.NET CoreTailwind UITypeScriptAI Agent DevelopmentREST APIAWS LambdaDockerAI BuilderPostgreSQLAI Chatbotn8nRetrieval Augmented GenerationLLM Prompt EngineeringReactFastAPIDjango StackPython๐ ๐ฏ๐๐ถ๐น๐ฑ ๐ฝ๐ฟ๐ผ๐ฑ๐๐ฐ๐๐ถ๐ผ๐ป-๐ฟ๐ฒ๐ฎ๐ฑ๐ ๐๐ ๐๐๐๐๐ฒ๐บ๐ ๐๐ต๐ฎ๐ ๐๐ผ๐น๐๐ฒ ๐ฟ๐ฒ๐ฎ๐น ๐ฏ๐๐๐ถ๐ป๐ฒ๐๐ ๐ฝ๐ฟ๐ผ๐ฏ๐น๐ฒ๐บ๐ โ not demos, not prototypes that break after delivery. With 7+ years of professional software development experience, I specialize in three areas where most developers talk theory but few can actually ship: ๐ฅ๐๐ ๐ฆ๐๐๐๐ฒ๐บ๐ ๐ฎ๐ป๐ฑ ๐๐๐ ๐๐ป๐๐ฒ๐ด๐ฟ๐ฎ๐๐ถ๐ผ๐ป I design and deploy Retrieval-Augmented Generation pipelines using ChromaDB, OpenAI, Anthropic Claude, Azure AI and AWS Bedrock. I built and operated a self-hosted GPU server with Ollama, Open WebUI and ChromaDB for a real B2B company โ your data stays on your infrastructure, no third-party exposure. I have built internal AI assistants that process real company documents and return accurate, context-aware answers in production, with proper retrieval quality, monitoring and security from day one. ๐๐ ๐ช๐ผ๐ฟ๐ธ๐ณ๐น๐ผ๐ ๐๐๐๐ผ๐บ๐ฎ๐๐ถ๐ผ๐ป ๐๐ถ๐๐ต ๐ก๐ด๐ก I build intelligent N8N pipelines that connect your CRM, ERP, SharePoint and external APIs with LLM capabilities. I built production N8N workflows that automatically sync SharePoint documents into AI knowledge bases, create CRM leads from incoming emails using LLMs and trigger complex multi-step business processes without human intervention. ๐๐๐น๐น ๐ฆ๐๐ฎ๐ฐ๐ธ ๐๐ฒ๐๐ฒ๐น๐ผ๐ฝ๐บ๐ฒ๐ป๐ ๐๐ถ๐๐ต ๐๐ ๐๐ป๐๐ฒ๐ด๐ฟ๐ฎ๐๐ถ๐ผ๐ป I build complete web applications with React and TypeScript on the frontend and Django or FastAPI on the backend, with AI features integrated where they add real value. I led the full migration of a B2B sales portal from Laravel to React and Django REST Framework, improved PostgreSQL database performance by 2 to 5 times through query optimization, and integrated HubSpot, Fresh-sales and JTL via REST APIs. ๐ ๐ ๐ฏ๐ฎ๐ฐ๐ธ๐ด๐ฟ๐ผ๐๐ป๐ฑ M.Sc. Computer Science, Universitรคt Bayreuth, thesis grade 1.0 in Deep Learning and Transfer Learning. I trained 8 model architectures using TensorFlow and Keras with minimum GPU requirements through knowledge transfer and pretrained models. Data Science certificate. 7+ years professional software development across Python, Django, FastAPI, React, TypeScript, PostgreSQL, Redis, Docker, AWS, Azure and CI/CD pipelines. ๐๐ผ๐ ๐ ๐๐ผ๐ฟ๐ธ I take projects from the first requirement to production deployment โ development, testing, security, monitoring and documentation included. I work independently without needing hand-holding. Give me clear requirements and I deliver a working system that runs reliably in production. I am available for both fixed-price projects and hourly contracts. For complex projects I recommend a short discovery call first so we scope the right solution before any work begins. ๐๐ผ๐ฟ๐ฒ ๐๐ธ๐ถ๐น๐น๐ Python ยท FastAPI ยท Django ยท React ยท TypeScript ยท PostgreSQL ยท Redis ยท Docker ยท AWS ยท Azure ยท N8N ยท ChromaDB ยท CrewAI ยท LangChain ยท OpenAI ยท Anthropic Claude ยท Ollama ยท LLaMA ยท Mistral ยท RAG ยท LLM Integration ยท Multi-Agent Systems ยท CI/CD ยท GitHub Actions ยท HubSpot ยท Fresh-sales ยท REST APIs ยท Micro-services ยท JWT ยท Swagger . Streamlit . Keras . Tensorflow . Azure AI Foundry . AWS Sagemaker . AWS Bedrock ๐๐ฎ๐ป๐ด๐๐ฎ๐ด๐ฒ๐ English (C1) ยท German (B2, actively improving to C1) - $60/hr $60 hourly
Power S.
- 5.0
- (165 jobs)
Bridgewater, NJC#
PythonBeautiful SoupSeleniumAdobe InDesignScriptingData ExtractionWeb CrawlingAdobe AcrobatPDF ConversionPDFData MiningData ScrapingData EntryOnline ResearchOver the past 8 years, I have been shaping my skills in the area of Website research, Data entry and Data mining using advance technologies.I work in an organized way and have capabilities to lead/manage a team. I am always ready to learn new skills. I like to have long term relations with my employers. I love helping client, I get satisfaction from their happiness when everything successfully done. I interact with them not only for the project, but also for their business and their friendship. I believe it is your right to work with someone who you like to work with. On my spare time, I like to practice cricket and reading books about new technology. My 1st priority is to satisfy my clients with quality of work of given task with prompt delivery. I look forward to discuss more about your project, and your business :) - $45/hr $45 hourly
Kostiantin V.
- 5.0
- (2 jobs)
Dnipro, BURGASC#
AI ImplementationClaudeOpenAI APIDevExpressDesktop ApplicationMicrosoft Outlook DevelopmentGraphOffice 365Entity FrameworkREST APIDockerAzure DevOpsJavaScriptTypeScriptReactSQLAcumaticaASP.NET MVC.NET Core๐ Senior .NET Developer | Acumatica ERP | React | Azure | AI Solutions I help businesses build, modernize, and scale enterprise applications, ERP systems, CRM platforms, SaaS products, and cloud solutions. With 11+ years of commercial software development experience, I have successfully delivered enterprise-grade applications from concept and architecture through deployment and long-term support. My expertise includes backend, frontend, cloud infrastructure, ERP customization, Microsoft 365 integrations, and AI-powered business solutions. Core Technologies โ C# โ .NET Framework โ .NET Core โ .NET 8 โ ASP.NET MVC โ ASP.NET Core โ REST API Development โ Entity Framework โ Entity Framework Core โ SQL Server โ Azure โ Azure DevOps โ Docker โ Microservices Frontend Development โ React โ TypeScript โ JavaScript โ DevExpress โ Infragistics โ HTML5 โ CSS3 โ Responsive UI Development Desktop Development โ WinForms โ WPF โ Enterprise Desktop Applications โ Legacy Application Modernization Acumatica ERP Expertise โ Acumatica ERP Customization โ Workflow Automation โ Business Events โ Generic Inquiries โ Custom DAC Development โ ERP Integrations โ Business Process Optimization Microsoft 365 & Office Development โ Excel Add-ins โ Outlook Add-ins โ Word Add-ins โ Office JavaScript API โ Microsoft Graph API โ Office 365 Integrations AI & Modern Development โ OpenAI API โ ChatGPT Integrations โ Claude AI โ GitHub Copilot โ OpenAI Codex โ Cursor AI โ AI Workflow Automation โ AI-powered Business Applications โ Document Processing Solutions Recent Project Experience โข Enterprise CRM Systems โข Acumatica ERP Customization โข SaaS Platforms โข Enterprise Dashboards โข Legacy System Modernization โข Cloud Migration Projects โข Office 365 Add-ins โข AI-powered Business Solutions โข Database Optimization Projects โข Enterprise Workflow Automation Why clients work with me: โ Clean and maintainable code โ Strong architecture and design skills โ Fast problem solving โ Excellent communication โ Reliable delivery โ Full project ownership โ Long-term partnership mindset Whether you need ERP customization, a modern SaaS platform, enterprise software development, AI integration, Office Add-ins, cloud migration, or modernization of an existing system, I can help deliver reliable and scalable solutions that create real business value. - $35/hr $35 hourly
Marko V.
- 5.0
- (5 jobs)
Nis, CENTRAL SERBIAC#
OdooPostgreSQL ProgrammingMySQL ProgrammingOdoo DevelopmentAPICSS 3HTML5WordPressPHPPythonJavaScriptHey! My name is Marko, a Software Developer, and IT Specialist experienced in web development and IT management. My total experience in the development area consists of about 6 years (IT Software Development) and about 4+ years of experience with Odoo. Starting with high school I created simple websites and programs. Then I have graduated with a masterโs degree in Computer Applications. Some words about my working experience: โ๏ธ Odoo, OpenERP, Python, XML, XML-RPS, Qweb, VueJS (+60 projects) โ๏ธ Windows Forms, C#, MSSQL (3 projects) โ๏ธ Git, Jira, Slack, APIโs and etc. โ๏ธ PHP, HTML, CSS, JS, Angular JS (20+ projects) โ๏ธ WordPress/Creating WordPress plugins/WooCommerce, I have a lot of experience working with: ๐ฏ Different API's: WooCommerce, Jira, Slack, Instagram, Facebook, and other ๐ฏ ERP development and implementation: Odoo, OpenERP ๐ฏ Server administration and CDN: Cloudflare, Mail Server (Postfix), NextCloud... etc ๐ฏ Desktop Tools & Application development I enjoy solving problems, troubleshooting issues, and coming up with solutions in a timely manner. Let's start to work together! - $85/hr $85 hourly
Sami M.
- 4.9
- (30 jobs)
Pori, SATAKUNTAC#
Mobile AdvertisingSenior Adult3D ModelingGame ArtWeb BrowserGame DevelopmentUnityUnreal EngineOnline MultiplayerJavaScriptC++โ With over 26 years of game development practice I have made it all and there is nothing I can't solve. 10 years as a professional and 26 years as a hobbyist. They say 10 000h makes an expert, try doing it for 30 000h. โ I'm an expert in all of the popular game engines: Unity and Unreal Engine, Godot & Babylon.js. Expert in C++, C#, and JavaScript. โ I'm straightforward and complete projects without hiccups and on schedule. Easily pickup existing projects. Communication is my strong point. I always deliver. โ Desktop & Mobile โ Unreal Engine 5 & Unity & Godot & Web/HTML5/WebGL โ C++ ๏ผ C# & JavaScript โ Backend & Databases โ Game Design โ Modelling & Animation/Rigging & Texturing โ Sound Effects โ Server managment โ Team lead Programming Languages: C++, C#, JavaScript, Typescript, NodeJS, Lua Game Development: Expertise in Unreal Engine 5, Unity, Web, Godot. Web Technologies: Proficient in Babylon.js, WebGL, OpenGL. Mathematics: Strong background in 3D mathematics. Physics: Knowledge in physics for game development. Multiplayer Networking: Experience in developing multiplayer networked games. Platforms: Development experience on Windows, Mac, Android, Android TV, iOS & tvOS. Cloud Services: Familiarity with various Google Cloud services. Backend: Linux server, Node.js, MongoDB, SQL, Firebase, Google OAuth (Login) 3D Skills: Modeling, rigging, texturing. - $40/hr $40 hourly
Luis M.
- 5.0
- (2 jobs)
Pereira, RISARALDAC#
MySQL ProgrammingPostgreSQL ProgrammingCSS 3C++JavaScriptJavaPHPPythonHTML5Check out my Website: bettoisc (dot )com and know some of my work! I've no much to say, it's easy to me learn new technologies, I've been developing since I was 15, currently, I work whit the Odoo technology which is made using a mix of python, XML, CSS, js, JQ, underscore js, JSON, less. In my past works, I was developing in Java and WordPress, so that I have expertise with these two technologies, PHP, and java. I really love the web development, but I know how to make desktop software too. - $50/hr $50 hourly
Michael L.
- 5.0
- (4 jobs)
Spring, TXC#
Cloud ComputingAndroid App DevelopmentMicrosoft AzureRESTful ArchitectureSoftware Architecture & DesignTypeScriptDesktop ApplicationC++ASP.NET CoreI am passionate about building well-designed and maintainable solutions for businesses and people who are looking to get their ideas off the ground. I have over thirteen years of experience developing enterprise software for some of the most well-known companies in the industry. I have architected robust, scalable, cloud-based solutions. I have built technologies ranging from low-level, high-performance image processing applications, to mobile and desktop applications, to web API's and distributed back-ends. Recently I've been working with AI and LLMs to build apps that address challenges in the education sector. - $80/hr $80 hourly
Jason M.
- 4.7
- (19 jobs)
Thornbury, VICC#
APINinjaTraderForex TradingSystems DevelopmentMachine LearningC++PythonQuantitative Trader & Senior Quant Developer I help hedge funds, prop trading firms, and serious traders turn research into production-ready trading systems. With 20+ years of hands-on market experience across discretionary trading, proprietary trading environments, and quantitative development, I focus on delivering robust, realistic, and deployable solutions โ not academic prototypes or overfit backtests. If you need a quant developer who understands both markets and production constraints, youโre in the right place. Quantitative Coder with strong production-level programming skills in Python, C++, Rust and C#, specializing in systematic trading and market microstructure-aware strategies. Deep hands-on expertise with trading platforms and APIs, including Sierra Chart (ACSIL), NinjaTrader (NinjaScript), Interactive Brokers TWS, QuantConnect, and Quantower. Comfortable working across research, backtesting, execution, and live operations. Extensive experience designing and deploying cloud-based trading infrastructure, including data pipelines, model execution, testing platforms and monitoring across AWS, GCP, and Azure. Proven background in financial modeling and strategy development, covering both classical linear models and modern machine learning methods, with direct experience taking ML models from research into live trading environments. - $60/hr $60 hourly
Yuriy D.
- 4.9
- (13 jobs)
Batumi, AJC#
.NET CoreDevOpsElasticsearchRabbitMQSQLClean ArchitectureApache KafkaKubernetesAzure DevOpsDockerRESTful APIEntity FrameworkASP.NET CoreMicrosoft SQL ServerPostgreSQLGitASP.NETAs an accomplished Software Engineer proficient in Microservices, Solution Architecture, Test Driven Development, and Cloud Deployment, I offer expertise in developing scalable solutions and integrating diverse systems. With a strong foundation in software engineering and experience utilizing various technologies, I am well-equipped to contribute value to a wide range of projects spanning across industries. Skills: โข Fluent English โข Distributed & scalable high-load solutions โข Microservice Architecture, Clean Architecture โข Test Driven Development, Domain Driven Design โข SQL | SqlServer, MySql, PostgreSQL | EF Core โข NoSQL | CosmosDB, MongoDB, Elasticsearch โข OpenTelemetry, APM, AppInsights, ELK, Jaeger โข RabbitMQ, Azure Service Bus, MassTransit โข CI/CD, Docker, Kubernetes, Azure Achievements: โข Maintainer of various open-source nuget packages โข Implemented numerous high-load microservice solutions utilizing interservice messaging brokers, currently operational โข Multiple successful OCPI implementations, including integration with external parties - both as a CPO and an eMSP. Maintainer of the "OCPI.Net" nuget package. Should you seek a proficient .NET developer well-versed in Test-Driven Development (TDD), Domain-Driven Design (DDD), OCPI, OCPP, and proficient in C#, with proven experience in team leadership and utilizing Scrum methodologies, who can play a role of a Team Lead or a Solution Architect, or a Senior Software Engineer experienced particularly within the Electric Vehicle (EV) Charging sector, I invite you to reach out for further details. - $130/hr $130 hourly
Tim B.
- 5.0
- (12 jobs)
Walterboro, SCC#
Application IntegrationAutomated WorkflowAutomationMicrosoft ExcelExcel FormulaMicrosoft SQL Server ProgrammingExcel MacrosVisual Basic for Applications.NET FrameworkDatabase DesignWindows Presentation FoundationWeb ApplicationMicrosoft AccessWith over 20 years experience developing software, I help businesses and organizations grow by offering software assessment, consulting, and custom development. There are thousands of fantastic software developers out there, why would you choose me? One thing that sets me apart is that my approach is not to just simply develop a custom solution. I'll work with you to figure out if you even need custom development. Many times there are existing solutions out there that can get you going immediately. Selecting an already on the market solution can save you thousands of dollars, but they don't always suit everyone's needs. If after review, you and I both come to the conclusion that a custom developed solution is indeed the best route, then I'm happy to put together a formal proposal and build it for you. I absolutely guarantee customer satisfaction, and this is how I do it. I don't bill by the hour, you will always get a completely fixed price upfront, and that price will not change. With a fixed price you'll know down to the nickel how much you will spend for my services. Someone who works hourly is going to give you an "estimate" which will just be a guess. You may or may not already know that 50% of software projects go over their estimate, and of those 75% go over by double. Not only do I guarantee my price, I guarantee my work. Once the solution is complete, rest assured that if you ever find an issue/bug Iโll fix it for free. For Life. This is not a special offering accounted for by increasing the price, this is how I work. I stand behind every solution I create. While the software I develop is stable, and built to last, itโs always possible that something unexpected will occur. When this happens, I will always address this issue, no questions asked. And finally, I offer a 100% money back guarantee. So, before we get to building your solution, lets talk and find out what I can do for you. - $45/hr $45 hourly
Vitaly P.
- 5.0
- (6 jobs)
Dubai, DUC#
SQLJSONRESTful APILazarusSOAPXMLScrumFHIRFirebirdMicrosoft SQL ServerService-Oriented ArchitecturePythonBack-End DevelopmentDelphiโข Proven track record in crafting robust software solutions using cutting-edge n-tier architectures. โข Demonstrated expertise in object-oriented programming, leveraging the latest methodologies to deliver efficient and scalable code. โข Adept at developing and managing databases, ensuring seamless integration and optimal performance. โข Possessing formidable analytical, diagnostic, and problem-solving capabilities to tackle complex challenges in software development. โข Recognized for a keen optimization mindset, with the ability to quickly grasp and adapt to emerging technologies, showcasing a commitment to continuous learning and innovation. โข Exceptional soft skills, as consistently praised by colleagues, including effective communication, teamwork, and a natural ability to collaborate across diverse teams, making a positive impact on project outcomes. - $50/hr $50 hourly
Luvai H.
- 5.0
- (9 jobs)
Ottawa, ONC#
Windows App DevelopmentMicrosoft PowerAppsMicrosoft Windows PowerShellNode.jsGitJavaJavaScriptPythonDesktop ApplicationSQLC++C.NET FrameworkElectronSee my portfolio at luvaihassanali.github.io/portfolio/ I have five years of experience in a professional environment programming all sorts of applications from desktop to mobile. I am familiar with many coding languages like C#, Java, Python, etc. I completed my Bachelor of Computer Science at Carleton University in Ottawa, Canada. I have an understanding of the software design life cycle and software design principles. In the work environment, my experience includes developing software used by the Canadian Armed Forces. In addition to writing code, other duties include: performing documentation for mission-critical software, integration testing in high-security military labs, and setup of automated pipelines for code repositories. - $70/hr $70 hourly
Achraf S.
- 5.0
- (24 jobs)
Zuerich, ZHC#
Artificial IntelligenceObject-Oriented ProgrammingObject-Oriented DesignData ScienceDeep LearningGame DevelopmentAgile Software DevelopmentUnreal EnginePythonActionOnline MultiplayerC++๐ Hi there! Software Engineer with over 6+ years of experience in the IT field, specializing in Game Development, Web Development and AI solutions. It's important to me to build long term relationships with clients, however, I'm both looking for long and short term projects. I'm flexible with my working hours and I am more than happy to work closely with any existing talents you work with. I look forward to hearing from you! - $125/hr $125 hourly
Shane L.
- 4.8
- (14 jobs)
Memphis, TNC#
Embedded CFirmware ProgrammingPythonMobile App DevelopmentCMechanical DesignProduct DevelopmentCADHardware PrototypingElectronic DesignWeb DesignI turn concepts into reality. HatchPoint is the research and development company that I founded in 2001. Although a mechanical engineer by training, I have also become an expert in circuit design with an emphasis on low power wireless sensors and instruments. As HatchPoint has evolved Iโve expanded my skills beyond engineering, with experience in fund raising, project management, intellectual property, and FDA regulatory concerns. I am a business development consultant for start ups as well. HatchPoint has begun to grow internal concepts into products. Autonomy Medical (previously Compliant Games) is an mHealth platform started at HatchPoint that helps prevent and treat respiratory diseases in children. While I enjoy the technical aspects of product design, I have also grown to appreciate the business development necessary to bring products successfully to market. Technical Specialties: โข Software development including embedded and desktop development (C/C++, Python, Assembly) Web-based applications (Pyramid, TurboGears), database (mySQL, MongoDB), and Linux device drivers โข Electronics design (Pulsonix EDA, EagleCAD, KiCad, Mentor PADS) with an emphasis on embedded electronics and sensors using ARM MSP, and AVR microcontrollers. โข Mechanical design and CAD (SolidWorks, Pro/E, Fusion 360) โข Prototyping using SLA, molding, or vacuum forming as well as manual or CNC machining. โข Small batch PCB assembly for prototyping and evaluation including small-pitch surface mount and RF components. Startup Experience: โข Developing fundraising business plans and pitches for fundraising. โข Raising seed round funds for two startups. โข Modeling financials for predicting capital requirements and developing sales models. โข Working with consultants to meet FDA 510(k) and IEC 60601 regulatory process. Want to browse more talent?
Sign up
Join the worldโs work marketplace

Post a job to interview and hire great talent.
Hire Talent