Datta Mundada (dbMundada)

dbMundada

Geek Repo

Company:Privado.ai

Location:India

Home Page:https://dbmundada.github.io

Twitter:@DattaprasadMund

Github PK Tool:Github PK Tool

Datta Mundada's repositories

HackerRank

Hackerrank Problem Solutions

Language:JavaStargazers:1Issues:0Issues:0

appr-wrapper

Payment Request wrapper for Apple Pay JS

License:Apache-2.0Stargazers:0Issues:0Issues:0

appsmith

Build completely custom admin panels and internal tools. Use 30+ react components to build pages without HTML/CSS.

License:Apache-2.0Stargazers:0Issues:0Issues:0

auth0-nodejs-webapp-sample

Auth0 Integration Samples for Node Web Applications

License:MITStargazers:0Issues:0Issues:0

azure-samples-js-management

Code Samples of Azure JavaScript SDK Management Libraries

License:MITStargazers:0Issues:0Issues:0

calendar

Scheduling-Calendar to maintain the meetings & important tasks

Language:JavaScriptLicense:MITStargazers:0Issues:0Issues:0

cli

Salesforce CLI

License:BSD-3-ClauseStargazers:0Issues:0Issues:0

CloudClinic

Cloud Clinic (MERN)

Stargazers:0Issues:0Issues:0

flutter_app

🔥🔥🔥本项目包括各种基本控件使用(Text、TextField、Icon、Image、Listview、Gridview、Picker、Stepper、Dialog、Slider、Row、Appbar、Sizebox、BottomSheet、Chip、Dismissible、FlutterLogo、Check、Switch、TabBar、BottomNavigationBar、Sliver等)、豆瓣电影、tubitv、每日一文、和天气、百姓生活、随机诗词、联系人、句子迷、好奇心日报、有道精品课、高德定位、音乐播放器🎵、追书神器等板块

License:Apache-2.0Stargazers:0Issues:0Issues:0

flutter_stripe_payment

[DISCONTINUED] A flutter plugin with stripe payment plugin integration

License:MITStargazers:0Issues:0Issues:0

flysystem-google-cloud-storage

Flysystem Adapter for Google Cloud Storage

License:MITStargazers:0Issues:0Issues:0

google-cloud-datastore

Low-level, Protobuf-based Java and Python client libraries for Cloud Datastore. Check out google-cloud-java and google-cloud-python first!

License:Apache-2.0Stargazers:0Issues:0Issues:0

GoogleMap

TugasPraktikum modul 5 UMM

License:BSD-3-ClauseStargazers:0Issues:0Issues:0

jira_requests

Download bugs data from jira.atlassian.com using API. Creates .csv file and displays graph.

Stargazers:0Issues:0Issues:0

jira_webhook_example

Sample JIRA webhook applciation written in Ruby using Sinatra.

Language:RubyLicense:BSD-3-ClauseStargazers:0Issues:0Issues:0

JS-Prep

Javascript Interview preparation code-snippets

Language:JavaScriptStargazers:0Issues:0Issues:0

js-samples

Samples for the Google Maps JavaScript v3 API

License:NOASSERTIONStargazers:0Issues:0Issues:0

liferay-crm-sample-integration

A few weeks ago I saw the post Liferay Salesforce.com integration on the Liferay forum of the year 2010. Certainly the post is a little old-fashioned and personally at that time I didn't even know about Liferay's existence. The request of Nicolas Raoul (author of the post) was this: Hello all, Is there any way to integrate Salesforce.com into a Liferay portal without writing code? If not, a solution would be to create a new portlet that calls Salesforce.com's Web Services, but I am wondering if anything already exists that I could just reuse. I am not asking for perfect integration of everything, but if you know of a portlet that shows some data or allows any Salesforce.com action that would be great already :-) Thank you! Nicolas Raoul I took the challenge in hand and throughout this article we will look at the modern approach (Liferay 7/7.1/7.2 & OSGi) of the solution I developed to integrate OSGi, Liferay 7/7.1/7.2 and Salesforce.com as bundles. [Tweet "Not sure how to integrate #Liferay 7/7.1/7.2 and #Salesforce? I'll explain how to implement integration in an OSGi context."] 1. What you need to know first All the developed software referred to is available on my GitHub account which specifically covers two repositories Salesforce SOAP API Client OSGi Bundle and Salesforce Gogo Shell Command Client. For your integration tests, remember that you must have at least one Salesforce.com Developer account (free of charge). The resources to follow are in-depth points that I recommend reading after reading this article. Introducing SOAP API Cheat Sheets Force.com SOAP API Cheatsheet Force.com Web Service Connector (WSC) The two OSGi bundles are compatible with Liferay 7/7.1/7.2 and Apache Karaf 4.x and in general can be installed in any container that complies with OSGi R6 specifications. The latest version of the Salesforce SOAP API Client OSGi bundle is publicly available on the Maven Central Repository. 2. What you need to build We are fortunate enough, we do not need a lot of effort in terms of code development. The only fundamental component to prepare is the one that will allow us to talk to Salesforce.com. The tasks to be done are: create the OSGi bundle responsible for communicating with Salesforce.com; create the OSGi bundle that will use the component above to perform actions on Salesforce.com. We have identified the "pieces of software" that we need to realize and at the end of the construction we should find ourselves in a situation analogous to that shown in Figure 1. Figura 1. Integrazione Salesforce.com in contesto OSGi The diagram in Figure 1 shows the two Salesforce SOAP API Client and My Salesforce Bundle App bundles. The first bundle is the one that will communicate with Salesforce.com through the SOAP APIs (exposed by the latter), the second bundle uses APIs instead Java exported from the first bundle in order to perform actions on Salesforce.com (such as login, account creation, etc.). 3. The Salesforce SOAP API Client bundle Salesforce.com exposes a set of APIs via SOAP and REST that allow external systems to interact with it. In this solution I chose to use the SOAP API. Salesforce.com provides the Force.com Web Service Connector (WSC) tool that creates the Java stubs needed to communicate via SOAP and this greatly facilitates the process of creating our OSGi bundle. Our OSGi bundle will show the following set of Java APIs that can then be used by any other bundle that will need to interact with Salesforce.com. com.sforce.soap.partner.* com.sforce.soap.enterprise.* com.sforce.async.* come.sforce.bulk.* com.sforce.ws.* In the article How to Build a Salesforce SOAP API Client OSGi Bundle you can read all the details related to the construction of the OSGi bundle responsible for communication via SOAP with Salesforce.com and for exporting the Java APIs that will then be publicly available within the OSGi container. 4. The Salesforce App bundle Once we have the Salesforce.com Java API available in our OSGi container (thanks to the salesforce-client-soap v1.2.0 bundle we created earlier), we are able to implement all the integrations we want with Salesforce.com. As an example application, and for reasons of simplicity, we could make a series of OSGi commands that perform the following actions on Salesforce.com: salesforce:login: Login on Salesforce.com salesforce:createAccount: Create an account salesforce:getNewestAccount: Return the list of the new account Article Liferay 7 Salesforce.com Gogo Shell Command Client explains in detail the implementation and use of this specific example integration bundle with Salesforce.com. The two videos published on Antonio Musarra's Blog YouTube Channel show the integration solution in the Liferay 7 and Apache Karaf context in action. 5. The next step Thanks to the OSGi approach we have been facilitated in implementing the solution to the integration problem between Liferay and Salesforce.com. The solution of creating an OSGi Salesforce SOAP API Client bundle responsible for communication via SOAP with Salesforce.com and exporting the Java API in the context of the OSGi container, makes this component very "reusable" (in fact we installed on Liferay and Apache Karaf) . The next scenario of integration could be similar to what I had a few years ago illustrated in the article Introduction to the Hook - First episode, where, however, the CRM system was SugarCRM, in this new scenario it will be Salesforce.com instead. I would like to receive your comments regarding the solution adopted.

Language:JavaLicense:NOASSERTIONStargazers:0Issues:0Issues:0

live-stock-app

Use of Web-sockets to fetch & Update the Stock Data on Page

Language:JavaScriptLicense:MITStargazers:0Issues:0Issues:0

Merchello

Merchello is an open source e-commerce package for the Umbraco CMS

Language:JavaScriptLicense:MITStargazers:0Issues:0Issues:0

netlify-addon-demo

Demo of Netlify <> VGS addon integration with Checkr and Stripe

Language:HTMLStargazers:0Issues:0Issues:0

okta-go-vue-example

An Okta example app built with Go + Vue.

Language:GoStargazers:0Issues:0Issues:0

okta-spring-boot-react-crud-example

Simple CRUD with React and Spring Boot 2.0

Language:JavaScriptLicense:Apache-2.0Stargazers:0Issues:0Issues:0

omnipay-stripe

Stripe driver for the Omnipay PHP payment processing library

License:MITStargazers:0Issues:0Issues:0

paystack-android

Paystack SDK for Android. Accept payments on Android

License:Apache-2.0Stargazers:0Issues:0Issues:0

polybar

A fast and easy-to-use status bar

Language:C++License:MITStargazers:0Issues:0Issues:0

python-intercom

Python wrapper for the Intercom API.

License:NOASSERTIONStargazers:0Issues:0Issues:0

stripe-payments-demo

Sample store accepting universal payments on the web with Stripe Elements, Payment Request, Apple Pay, Google Pay, Microsoft Pay, and the PaymentIntents API. 💳🌍✨

License:MITStargazers:0Issues:0Issues:0

swift-distributed-actors

Peer-to-peer cluster implementation for Swift Distributed Actors

License:Apache-2.0Stargazers:0Issues:0Issues:0

Worldlink

A social networking website in Django

Language:PythonStargazers:0Issues:0Issues:0