duplicates = multiple editions
A Classical Introduction to Modern Number Theory,Kenneth IrelandMichael Rosen
A Classical Introduction to Modern Number Theory,Kenneth IrelandMichael Rosen
| public class HumanTime { | |
| /** | |
| * A (propably bad) implementation for human readable relative times. | |
| * | |
| * @param ms | |
| * @return | |
| */ | |
| public final static String humanReadableString(long ms) { |
| package com.silva.fragments; | |
| import android.content.Context; | |
| import android.os.Bundle; | |
| import android.util.Log; | |
| import android.view.LayoutInflater; | |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| import android.widget.AdapterView; | |
| import android.widget.ArrayAdapter; |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <string.h> | |
| /* | |
| * MCrypt API available online: | |
| * http://linux.die.net/man/3/mcrypt | |
| */ | |
| #include <mcrypt.h> |
| import android.app.Activity; | |
| import android.app.PendingIntent; | |
| import android.content.BroadcastReceiver; | |
| import android.content.Context; | |
| import android.content.Intent; | |
| import android.content.IntentFilter; | |
| import android.telephony.SmsManager; | |
| import android.util.Log; | |
| /** |
| package com.derekstavis; | |
| public class DigitalClock extends TextView { | |
| private int hours; | |
| private int minutes; | |
| private int seconds; | |
| private Timer clockTimer; | |
| private final TimerTask clockTask = new TimerTask() { | |
| @Override |
| package com.softwen.ashonlineshop.objects; | |
| /** | |
| * Created by ceosilvajr on 9/25/15. | |
| */ | |
| public class Item { | |
| private String name; | |
| private double price; |
| /* | |
| * Copyright (c) 2015 WiseTime Pty Ltd. All rights reserved. | |
| */ | |
| package com.pi.account.server.utils.s3; | |
| import org.apache.commons.fileupload.FileItemIterator; | |
| import org.apache.commons.fileupload.FileItemStream; | |
| import org.apache.commons.fileupload.servlet.ServletFileUpload; | |
| import org.apache.commons.fileupload.util.Streams; | |
| import org.apache.commons.io.FilenameUtils; |
| gcloud auth | |
| gcloud auth activate-refresh-token | |
| gcloud auth activate-service-account | |
| gcloud auth git-helper | |
| gcloud auth list | |
| gcloud auth login | |
| gcloud auth print-access-token | |
| gcloud auth print-refresh-token | |
| gcloud auth revoke | |
| gcloud components |
| /** | |
| * Checkstyle tasks | |
| * Usage: | |
| * - place this file under root dir of your project at /gradle directory | |
| * - apply script from your gradle file: | |
| * apply from : "{rootDir}/gradle/checkstyle.gradle" | |
| * | |
| * To configure checkstyle use configs at: | |
| * "{rootDir}/config/checkstyle/checkstyle.xml" - for main projects | |
| * "{rootDir}/config/checkstyle/checkstyle-test.xml" - for tests |