Skip to content

Instantly share code, notes, and snippets.

View stornado's full-sized avatar

仲夏叶 stornado

View GitHub Profile
@InfoSec812
InfoSec812 / ParallelStreamWordCount.java
Created August 7, 2016 13:25
Use Java 8 parallel streams to read a file and tally word counts
package us.juggl.twentysixteen.august;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.time.Instant;
import java.util.Arrays;
import java.util.List;
import java.util.UUID;
import java.util.concurrent.ConcurrentHashMap;
@ufologist
ufologist / html-input-keyboard-overlay.html
Created June 2, 2016 06:20
手机上输入框(input/textarea)被弹出键盘遮挡的问题
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>手机上输入框(input/textarea)被弹出键盘遮挡的问题</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<style>
html,
body {
height: 100%;