The popular open-source contract for web professionals by Stuff & Nonsense
- Originally published: 23rd December 2008
- Revised date: March 15th 2016
- Original post
| import javax.crypto.Cipher; | |
| import java.io.InputStream; | |
| import java.security.*; | |
| import java.util.Base64; | |
| import static java.nio.charset.StandardCharsets.UTF_8; | |
| public class RsaExample { | |
| public static KeyPair generateKeyPair() throws Exception { | |
| KeyPairGenerator generator = KeyPairGenerator.getInstance("RSA"); |
| { | |
| "170038E91C": "1003729691", | |
| "17003F5A1D": "1004151834" | |
| } |
| from __future__ import print_function | |
| import boto3 | |
| from decimal import Decimal | |
| import json | |
| import urllib | |
| print('Loading function') | |
| rekognition = boto3.client('rekognition') |
| from AWSIoTPythonSDK.MQTTLib import AWSIoTMQTTClient | |
| import sys | |
| import logging | |
| import time | |
| import getopt | |
| from datetime import datetime | |
| import picamera | |
| import os | |
| import tinys3 | |
| import json |
| package com.gamarist.momoney; | |
| import android.os.Bundle; | |
| import android.R.integer; | |
| import android.annotation.SuppressLint; | |
| import android.app.Activity; | |
| import android.content.Context; | |
| import android.content.res.Resources; | |
| import android.graphics.Bitmap; | |
| import android.graphics.Canvas; |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| package de.test; | |
| import com.google.gson.JsonElement; | |
| import com.google.gson.JsonObject; | |
| import com.google.gson.JsonParser; | |
| import java.io.IOException; | |
| import java.io.InputStream; | |
| import java.io.OutputStream; | |
| import java.net.InetAddress; |
| /** | |
| * Retrieves all the rows in the active spreadsheet that contain data and logs the | |
| * values for each row. | |
| * For more information on using the Spreadsheet API, see | |
| * https://developers.google.com/apps-script/service_spreadsheet | |
| */ | |
| function readRows() { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var rows = sheet.getDataRange(); | |
| var numRows = rows.getNumRows(); |
| package com.vaughandroid.test.espresso.idlingresources; | |
| import android.app.Activity; | |
| import android.os.Handler; | |
| import android.support.annotation.IdRes; | |
| import android.support.annotation.NonNull; | |
| import android.support.test.espresso.*; | |
| import android.view.View; | |
| import java.lang.ref.WeakReference; |