ArchiveDecember 2017

Higher order functions in swift

H

As far as I understood, higher order functions are functions that takes another function/closure as argument and/or returns it. Higher order functions are simply functions that operate on other functions by either taking a function as an argument, or returning a function. Swift’s Array type has a few methods that are higher order functions: sorted, map, filter, and reduce. These methods use...

How to Integrate Pardot with WordPress via Contact Form 7

H

When you want to submit your form to third-party CRM like (pardot, Salesforce, MailChimp etc.) or if you want to change action URL of the form please following steps. To get this to work you need to have following things. 1.   WordPress website 2.  Contact Form7 Plugin – WordPress Plugin 3.  Forms: 3rd Party Integration – WordPress Plugin 4.  Pardot and the ability to create form handler 1...

How to check user exist or not in pardot prospect using api-php

H

The Pardot API should be accessed via POST for all operations . For the most part the API does not use the standard HTTP response codes to convey the outcome of the request, rather it always returns 2 response codes and sends back its own set of status codes that need to be handled. Steps for the check user in prospect : Step 1 : Login to pardot by api : $url =...

Virtual Assistant

V

A virtual assistant is a software agent that can perform tasks or services for an individual. Sometimes the term “chatbot” is used to refer to virtual assistants generally or specifically those accessed by online chat (or in some cases online chat programs that are for entertainment and not useful purposes). As of 2017, the capabilities and usage of virtual assistants is expanding rapidly...

A/B Testing in Marketing Cloud

A

 A/B Testing Marketing Cloud  Why A/B Testing :- We use standard A/B testing to determine which version of your email(Or a subject line)receives the highest click-through rate or highest unique open rate. On the basis of that, we sends the best performing version to the remaining subscribers or Data Extentions. You can test the following elements: Test Type            Description Subject...

Platform Cache varient 2 – Org Cache

P

Continuing with Platform Cache…. 2. Org Cache : The second variant of Platform Cache is the Org Cache. Org Cache does the same thing of storing the data in session, but the data stored is accessible through out the org, irrespective of  user, which is not the case with Session Cache. If user1 is storing a  value1 in org cache, it is accessible by user2 also. We can have different partitions...

Use Glide Cache efficiently in Glide Android

U

The issue is that currently if I call Glide.load() multiple times with the same URL. however, each time with an image views the image gets downloaded again. It happens because the width and height are mixed into the cache key so if you load the same image into multiple different views with different sizes, the image will be fetched once per image by default. You can change this by calling  ...

Bundles in Steelbrick CPQ

B

Steelbrick CPQ allows users to define bundles to be added to Quote. This proves very helpful as it saves time of adding every product individually. For achieving this there are two objects in CPQ. The first is Features. Features is basically definition of the bundle. Features can be added from related lists of Products. The product that has a feature becomes the master. So whenever the Master is...

Alternative for xib in swift3 iOS

A

Hi all, Lets see the simplest and best way to replace or avoid use of xib by using UIView on storyboard.    Go on storyboard ,select Viewcontroller Drag UIView and drop it between FirstResponder and exit button on that.  Add IBOutlet of that UIView on ViewController.swift file.  set the center, width, height for that UIView  Refer Following code :   ——– IBOutlet...

Save and Load from KeyChain | Swift 4

S

import Cocoa import Security // see // Arguments for the keychain queries let kSecClassValue = NSString(format: kSecClass) let kSecAttrAccountValue = NSString(format: kSecAttrAccount) let kSecValueDataValue = NSString(format: kSecValueData) let kSecClassGenericPasswordValue = NSString(format: kSecClassGenericPassword) let kSecAttrServiceValue = NSString(format: kSecAttrService) let...

Category