Giter Club home page Giter Club logo

Hi My name is Anselm Fowel

Software Engineering Manager / Dotnet Engineer

Results-Driven Engineering and Product Leader | Accelerating Success in Fintech, Banking, and Insurance | Seeking Opportunities to Drive Innovation and Attract Investment With a proven track record as an accomplished engineering manager, product and project manager, and enterprise C# developer, I bring a unique blend of skills and experience to the table. Passionate about the intersection of finance and technology, I leverage AWS, C#, and Microsoft-related technologies to deliver customer value, enhance management capabilities, increase productivity, and drive profitability in the dynamic domains of fintech, banking, & insurance. Throughout my 11-year career in enterprise software, I have honed my expertise across diverse sectors, including banking, fintech, and insurance. By consistently creating value for customers and stakeholders, I have successfully elevated productivity and profitability across multiple industries. My technical acumen spans web, mobile, & desktop software development, product management, and business leadership. A proficient C# developer, I am well-versed in other programming languages such as PHP, Java, and Typescript, and experienced in frameworks like .NET, .NET Core, Laravel, & Angular. Additionally, I have developed native and cross-platform mobile applications using Java & Xamarin. As a seasoned leader, I have excelled in managing and building teams of senior engineers and QA professionals. In my role as a senior software engineering manager in a fintech organization, I successfully led a 12-member team responsible for delivering enterprise-grade applications. With a focus on innovation and tangible results, I have delivered solutions across diverse sectors, including banking, e-commerce, and payment systems. Notably, I have led the development of award-winning applications in areas such as loan management and disbursement, agency banking, retail solutions, investment banking, health management, insurance, reconciliation systems, and examination applications. Driven by exceptional listening & communication skills, I excel in gathering requirements and providing creative, out-of-the-box solutions for customers. I take charge of product strategy and roadmap in numerous full SDLC projects, leveraging methodologies such as Waterfall, Agile, and Scrum. Currently seeking opportunities to drive innovation and attract investment, I am eager to bring my expertise and leadership to organizations at the forefront of technological advancements in the finance industry. Let's connect and explore how I can contribute to your success.

  • 🌍  I'm based in Remote
  • ✉️  You can contact me at [email protected]
  • 🧠  I'm learning React Native
  • 🤝  I'm open to collaborating on Interesting projects mostly around Finance### Skills

C#GitJavaJavaScriptPHPPythonTypeScriptGNU BashVS CodeHTML5AngularJQueryBootstrapMaterial UIGraphQLMySQLPostgreSQLFirebaseEthereumPolygonGoogle CloudWordpressAmazon Web ServicesDockerMacOSLaravel.NET

Socials

My GitHub Stats

GitHub Commits Graph

Support Me

Anselm Fowel's Projects

mastercom icon mastercom

Master Card C# API key. this helps connect to the master card api faster using c#

opening-hours icon opening-hours

In short Your task is to write a program that takes JSON-formatted opening hours of a restaurant as an input and outputs hours in more human readable format. Input Input JSON consist of keys indicating days of a week and corresponding opening hours as values. One JSON file includes data for one restaurant. { <dayofweek>: <opening hours> <dayofweek>: <opening hours> ... } <dayofweek> : monday / tuesday / wednesday / thursday / friday / saturday / sunday <opening hours>: an array of objects containing opening hours. Each object consists of two keys: type: open or close value: opening / closing time as UNIX time (1.1.1970 as a date), e.g., 32400 = 9 AM, 37800 = 10.30 AM, max value is 86399 = 11.59:59 PM Example: on Mondays a restaurant is open from 9 AM to 8 PM { "monday" : [ { "type" : "open", "value" : 32400 }, { "type" : "close", "value" : 72000 } ], …. } Special cases • If a restaurant is closed the whole day, an array of opening hours is empty. o “Tuesday”: [] means a restaurant is closed on Tuesdays • A restaurant can be opened and closed multiple times during the same day, o E.g., on Mondays from 9 AM - 11 AM and from 1 PM to 5 PM • A restaurant might not be closed during the same day o E.g., a restaurant is opened on a Sunday evening and closed on early o Monday morning. In that case Sunday- object includes only the opening time. o Closing time is part of the Monday -object. • When printing opening hours which span between multiple days, closing time is always a part of the day when a restaurant was opened (e.g., Sunday 8 PM -1 AM) { "friday" : [ { "type" : "open", "value" : 64800 } ], “saturday”: [ { "type" : "close", "value" : 3600 }, { "type" : "open", "value" : 32400 }, { "type" : "close", "value" : 39600 }, { "type" : "open", "value" : 57600 }, { "type" : "close", "value" : 82800 } ] } Deliverable Part 1: Build a HTTP API that accepts opening hours data as an input (JSON) and returns a more human readable version of the data formatted using 12-hour clock. Output example in 12-hour clock format: Monday: 8 AM - 10 AM, 11 AM - 6 PM Tuesday: Closed Wednesday: 11 AM - 6 PM Thursday: 11 AM - 6 PM Friday: 11 AM - 9 PM Saturday: 11 AM - 9 PM Sunday: Closed Your API can print the formatted version to the console or return it to the caller (of the API). Part 2: Tell us what do you think about the data format. Is the current JSON structure the best way to store that kind of data or can you come up with a better version? There are no right answers here ��. Please write your thoughts to readme.md. Bundle everything into any public git repository and share URL with us. A good check before sending you task is to check that building and running the project works, using the steps you define in readme.md. Forgotten dependencies and instructions can sometimes happen even to the best of us. Tech Feel free to use any programming language you prefer (unless specifically asked to write the program using e.g., Java, C# or Typescript). 3rd party libraries and frameworks are also allowed. Full Example { "monday": [ ], "tuesday": [ { "type": "open", "value": 36000 }, { "type": "close", "value": 64800 } ], "wednesday": [ ], "thursday": [ { "type": "open", "value": 36000 }, { "type": "close", "value": 64800 } ], "friday": [ { "type": "open", "value": 36000 } ], "saturday": [ { "type": "close", "value": 3600 }, { "type": "open", "value": 36000 } ], "sunday": [ { "type": "close", "value": 3600 }, { "type": "open", "value": 43200 }, { "type": "close", "value": 75600 } ] }

xmlsignverify-core-csharp icon xmlsignverify-core-csharp

This is a reference csharp library that demonstrates how customers can digitally sign and verify XML message as per ISO20022 specification

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.