- 实词:名词、动词、形容词、状态词、区别词、数词、量词、代词
- 虚词:副词、介词、连词、助词、拟声词、叹词。
n 名词
nr 人名
| <?xml version="1.0" encoding="UTF-8"?> | |
| <opml version="1.0"> | |
| <head> | |
| <title>Google 阅读器中 udonmai 的订阅</title> | |
| </head> | |
| <body> | |
| <outline text="Delicious/pongba/shared-reading" | |
| title="Delicious/pongba/shared-reading" type="rss" | |
| xmlUrl="http://feeds.delicious.com/v2/rss/pongba/shared-reading?count=15" htmlUrl="http://www.delicious.com/pongba/shared-reading"/> | |
| <outline text="FeedzShare" title="FeedzShare" type="rss" |
| wget --no-check-certificate --content-disposition https://github.com/joyent/node/tarball/v0.7.1 | |
| # --no-check-cerftificate was necessary for me to have wget not puke about https | |
| curl -LJO https://github.com/joyent/node/tarball/v0.7.1 |
| #!/bin/bash | |
| # | |
| # Convert diff output to colorized HTML. | |
| # (C) Mitch Frazier, 2008-08-27 | |
| # http://www.linuxjournal.com/content/convert-diff-output-colorized-html | |
| # Modified by stopyoukid | |
| # | |
| html="<html><head><meta charset=\"utf-8\"><title>Pretty Diff</title><style>body {text-align: center;}#wrapper {display: inline-block;margin-top: 1em;min-width: 800px;text-align: left;}h2 {background: #fafafa;background: -moz-linear-gradient(#fafafa, #eaeaea);background: -webkit-linear-gradient(#fafafa, #eaeaea);-ms-filter: \"progid:DXImageTransform.Microsoft.gradient(startColorstr='#fafafa',endColorstr='#eaeaea')\";border: 1px solid #d8d8d8;border-bottom: 0;color: #555;font: 14px sans-serif;overflow: hidden;padding: 10px 6px;text-shadow: 0 1px 0 white;margin: 0;}.file-diff {border: 1px solid #d8d8d8;margin-bottom: 1em;overflow: auto;padding: 0.5em 0;}.file-diff > div {width: 100%:}pre {margin: 0;font-family: \"Bitstream Vera Sans Mono\", Courier, monospace;font-size: 12px;line-height: 1.4em;text-indent: 0.5em;}.file {color: |
| #!/usr/bin/env python | |
| # encoding: utf-8 | |
| """ | |
| eurl.py extracts all URLs (one per line) from the OPML file or URL. [I needed | |
| this script produce a list of feed URLs so I could manually enter these RSS | |
| feeds in the new Reeder 2 for iOS.] | |
| Acknowledgement: Special thanks to Kurt McKee ( http://kurtmckee.org/ ) for the | |
| script: http://stackoverflow.com/a/7782782 | |
| """ |
| The remote desktop session has to be headless :( | |
| - Install the deb (can convert with alien & co) | |
| - Patch with modern_distro.diff (cherry-pick what your system needs) | |
| - To support automatic desktop resizing: | |
| - Works with any window manager | |
| - Build Xvfb with xvfb-randr.diff | |
| - Expose as /usr/bin/Xvfb-randr | |
| - If replacing system-wide binary by repackaging, simply | |
| # ln -sf Xvfb /usr/bin/Xvfb-randr |
ffmpeg -i "Apache Sqoop Tutorial Part 1.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate1.ts
ffmpeg -i "Apache Sqoop Tutorial Part 2.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate2.ts
ffmpeg -i "Apache Sqoop Tutorial Part 3.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate3.ts
ffmpeg -i "Apache Sqoop Tutorial Part 4.mp4" -c copy -bsf:v h264_mp4toannexb -f mpegts intermediate4.ts
ffmpeg -i "concat:intermediate1.ts|intermediate2.ts|intermediate3.ts|intermediate4.ts" -c copy -bsf:a aac_adtstoasc "Apache Sqoop Tutorial.mp4"| #!/usr/bin/env python3 | |
| from io import BytesIO | |
| def ffmpeg_it(clip, input, output, overwriteopt='-y'): | |
| cmd = [ffmpeg, '-ss', clip['start'], '-i', input, '-c', 'copy', | |
| '-t', clip['end'], overwriteopt, output ] | |
| ffmpegp = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) | |
| buf = BytesIO() | |
| while True: | |
| # put the single char to IO buffer in case it's a multi-byte |
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |