//Imports | |
import java.awt.*; | |
import javax.swing.*; | |
import java.awt.event.*; | |
import java.util.*; | |
public class Dice extends JFrame{ | |
//Nested die class. | |
private class Die { | |
private int val; |
Here are some mini exercises to challenge your jQuery skills a bit.
Create a new page on jsbin.com and add the following script tag to it:
<script src="https://code.jquery.com/jquery-2.1.4.js"></script>
// BrowserRouter is the router implementation for HTML5 browsers (vs Native). | |
// Link is your replacement for anchor tags. | |
// Route is the conditionally shown component based on matching a path to a URL. | |
// Switch returns only the first matching route rather than all matching routes. | |
import { | |
BrowserRouter as Router, | |
Link, | |
Route, | |
Switch, | |
} from 'react-router-dom'; |
At October 11, 2019, I published a Javascript library to to run the resumable upload for Google Drive. When this is used, the large file can be uploaded. You can also use this js library.
This is a sample script for uploading files to Google Drive using Javascript. The files are uploaded by Drive API v3. gapi.client.drive.files.create()
can create an empty file on Google Drive. But it cannot directly upload files including contents. I think that this might not be able to upload files and metadata with the multipart/related, although this might be resolved by the future update. So now, as one of workarounds, I use using XMLHttpRequest.
- This sample uses gapi.
- Before you use this, please enable Drive API at API console and carr