This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sub EmailAll() | |
Dim oApp As Object | |
Dim oMail As Object | |
Dim SendToName As String | |
Dim theSubject As String | |
Dim theBody As String | |
For Each c In Selection 'loop through (manually) selected records | |
'''For each row in selection, collect the key parts of | |
'''the email message from the Table |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
URL - https://oppwa.com/v1/ | |
Request - | |
entityId=8ac9a4cb66aafd790166ceedc52b1884&amount=0.15¤cy=JOD&paymentType=DB&merchantTransactionId=16118_1629890067&customParameters[branch_id]=1&customParameters[teller_id]=1&customParameters[device_id]=1&customParameters[bill_number]=16118_1629890067&card.number=xxxxxxxxxxxxxx43&card.holder=Mahan&card.expiryMonth=xx&card.expiryYear=xxxx&card.cvv=xxx&paymentBrand=VISA&shopperResultUrl=https://theoutfit.me/module/webservices/validation?method=VISA&shipping.city=B3Building&shipping.country=JO&shipping.customer.givenName=Neerav&shipping.customer.surname=Ahuja&shipping.street1=B3Building#51SaeedPenoStreet&shipping.street2=B3Building#51SaeedPenoStreet&billing.city=B3Building&billing.country=JO&customer.givenName=Neerav&customer.surname=Ahuja&billing.street1=B3Building#51SaeedPenoStreet&billing.street2=B3Building#51SaeedPenoStreet | |
Response - | |
{"id":"8ac9a4a37b7c3a8a017b7d04be68628d","paymentType":"DB","paymentBrand":"VISA","amount":"0.15","currency":"JOD","descriptor":"09 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@SerializedName("golf_landing_page_title") | |
@Expose | |
private String golfLandingPageTitle = "My Golf"; | |
@SerializedName("golf_history") | |
@Expose | |
private String golfHistory = "History"; | |
@SerializedName("golf_bookings") | |
@Expose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<kml xmlns="http://www.opengis.net/kml/2.2"> | |
<Document> | |
<Collection> | |
<title>AD-0 Andorra</title> | |
<groups>Group 1, Group2</groups> | |
<description>Description of location</description> | |
<info>An expanded description of the collection that may provide further, usually technical, information.</info> | |
<links>The links to be offered when presenting the collection.</links> | |
<type>Whether the collection is free of charge or its payment level.</type> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package jp.roundrop.util; | |
import java.io.BufferedReader; | |
import java.io.IOException; | |
import java.io.InputStreamReader; | |
import java.io.OutputStreamWriter; | |
import java.net.HttpURLConnection; | |
import java.net.MalformedURLException; | |
import java.net.URL; | |
import java.net.URLEncoder; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package in.bazzme.fragments; | |
import android.annotation.SuppressLint; | |
import android.annotation.TargetApi; | |
import android.app.Activity; | |
import android.content.Context; | |
import android.content.DialogInterface; | |
import android.content.Intent; | |
import android.content.pm.PackageManager; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static String getDigest(String url){ | |
StringBuilder stringBuilder = new StringBuilder(); | |
String username = String.format("username=\"%1$s\"", BuildConfig.username); | |
String realm = String.format("realm=\"%1$s\"", BuildConfig.realm); | |
long nonceTime = Calendar.getInstance(TimeZone.getTimeZone("UTC")).getTimeInMillis()/1000; | |
String nonce = String.format("nonce=\"%1$d\"", nonceTime); | |
String uri = String.format("uri=\"%1$s\"", BuildConfig.api_path + BuildConfig.version + url); | |
String HA1 = md5(BuildConfig.username + ":" + BuildConfig.realm + ":" + BuildConfig.password); | |
String HA2 = md5("POST:"+ url); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class ConnectDotsView extends View { | |
private Bitmap mBitmap; | |
private Canvas mCanvas; | |
private Path mPath; | |
private Paint mPaint; | |
private static final int TOUCH_TOLERANCE_DP = 24; | |
private static final int BACKGROUND = 0xFFDDDDDD; | |
private List<Point> mPoints = new ArrayList<Point>(); | |
private int mLastPointIndex = 0; |