Word works. Excel works.(1) PowerPoint works.
Access and Outlook were not tested.
| package tar_helper | |
| import ( | |
| "archive/tar" | |
| "compress/gzip" | |
| "errors" | |
| "fmt" | |
| "io" | |
| "io/ioutil" | |
| "os" |
| /*.swp | |
| /*.png | |
| .DS_Store |
| class WebkitToPng | |
| def self.create(urls, options={}) | |
| urls.each do |url| | |
| puts "convert #{url} to #{options[:dir]}" | |
| url.sub!('//', "//#{options[:auth]}@") if options[:auth] | |
| op = "-F -D #{options[:dir]} -o #{url.split('/').last}" | |
| op += " --user-agent='#{user_agent}'" if options[:mobile] | |
| exec(url, op) | |
| end |
| package main | |
| import ( | |
| "crypto/aes" | |
| "crypto/cipher" | |
| "encoding/base64" | |
| "fmt" | |
| "io/ioutil" | |
| "log" | |
| "net/http" |
| /** | |
| * A simple socket.io client for performance benchmark | |
| * | |
| * Created by redism on 2014. 4. 22.. | |
| */ | |
| var SocketIO = require('socket.io-client'), | |
| argv = require('optimist').argv; | |
| var n = argv.n || 10; |
| FROM: https://people.xiph.org/~greg/escrowexample.txt | |
| 2-of-2 escrow example | |
| Carbide81 wants to pay carbide80 50tnbtc but prevent carebide80 from cheating him. | |
| First each party creates a new address, and then shares them. Then uses the | |
| resulting addresses to make a p2sh address (begins with '3' for bitcoin, | |
| '2' for testnet) that requires both parties to sign to release: |
| type ( | |
| // BuoyCondition contains information for an individual station. | |
| BuoyCondition struct { | |
| WindSpeed float64 `bson:"wind_speed_milehour"` | |
| WindDirection int `bson:"wind_direction_degnorth"` | |
| WindGust float64 `bson:"gust_wind_speed_milehour"` | |
| } | |
| // BuoyLocation contains the buoy's location. | |
| BuoyLocation struct { |