w
forward to beginning of the next wordW
forward to beginning of the next word (whitespace separates)e
forward to end of next wordE
forward to end of next word (whitespace separates)b
back to beginning of the previous word
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"?> | |
<!-- | |
Copyright (C) 2008 ZXing authors | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 |
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
try { | |
Field[] datePickerDialogFields = mDateDialog.getClass().getDeclaredFields(); | |
for(Field datePickerDialogField : datePickerDialogFields) { | |
if(datePickerDialogField.getName().equals("mDatePicker")) { | |
datePickerDialogField.setAccessible(true); | |
DatePicker datePicker = (DatePicker) datePickerDialogField.get(mDateDialog); | |
Field datePickerFields[] = datePickerDialogField.getType().getDeclaredFields(); | |
for (Field datePickerField : datePickerFields) { | |
if ("mDayPicker".equals(datePickerField.getName()) || "mDaySpinner".equals(datePickerField.getName())) { | |
datePickerField.setAccessible(true); |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
<link href="css/bootstrap.min.css" rel="stylesheet"> | |
<style> | |
html { | |
height: 100%; |
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
options { | |
directory "/var/cache/bind"; | |
// If there is a firewall between you and nameservers you want | |
// to talk to, you may need to fix the firewall to allow multiple | |
// ports to talk. See http://www.kb.cert.org/vuls/id/800113 | |
// If your ISP provided one or more IP addresses for stable | |
// nameservers, you probably want to use them as forwarders. | |
// Uncomment the following block, and insert the addresses replacing |
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
FROM node:10.2.1 | |
# Install Java. | |
RUN \ | |
echo "deb http://http.debian.net/debian jessie-backports main" >> /etc/apt/sources.list && \ | |
apt-get update && \ | |
apt-get install -y -t jessie-backports openjdk-8-jdk && \ | |
rm -rf /var/lib/apt/lists/* | |
RUN mkdir /app |
用 gist 開 blog,看起來是不錯的主意。簡單。缺點是部落格首頁的網址看起來有點長:
https://gist.github.com/search?q=user%3Asabonis+%23blog&ref=searchresults。
但至少也是個連結,總算有個開始。