I hereby claim:
- I am i80and on github.
- I am i80and (https://keybase.io/i80and) on keybase.
- I have a public key whose fingerprint is C580 AF99 A368 3B0D D1BD E831 2377 F819 DA1D E078
To claim this, I am signing this object:
| getdeps_rpm() { | |
| for dep in $(readelf -d ./* | grep NEEDED | awk '{print $5}' | cut -c 2- | rev | cut -c 2- | rev | sort | uniq); do | |
| rpm -qf "/usr/lib64/${dep}" 2>/dev/null || rpm -qf "/lib64/${dep}" 2>/dev/null || rpm -qf "/usr/lib/${dep}" 2>/dev/null || rpm -qf "/lib/${dep}" | |
| done | sort | uniq | rev | cut -d - -f 1-2 --complement | rev | |
| } | |
| getdeps_deb() { | |
| for f in $(readelf -d ./* | grep NEEDED | awk '{print $5}' | cut -c 2- | rev | cut -c 2- | rev | sort | uniq); do | |
| apt-file search "$f" | |
| done | cut -d ':' -f 1 | sort | uniq |
| /* | |
| * Copyright (C) 2011 Hans Petter Selasky. All rights reserved. | |
| * | |
| * Redistribution and use in source and binary forms, with or without | |
| * modification, are permitted provided that the following conditions | |
| * are met: | |
| * * Redistributions of source code must retain the above copyright | |
| * notice, this list of conditions and the following disclaimer. | |
| * * Redistributions in binary form must reproduce the above copyright | |
| * notice, this list of conditions and the following disclaimer in |
| description "The MongoDB database engine." | |
| version 2.8.0-rc2 | |
| respawn | |
| setuid mongodb | |
| setgid mongodb | |
| expect fork | |
| exec /usr/local/bin/mongod --config /etc/mongod.conf |
| systemLog: | |
| destination: file | |
| path: "/var/log/mongodb/mongodb.log" | |
| logAppend: true | |
| processManagement: | |
| fork: true | |
| storage: | |
| dbPath: /var/lib/mongodb | |
| replication: | |
| replSetName: "rs0" |
I hereby claim:
To claim this, I am signing this object:
| struct Element { | |
| vals: &[float]; | |
| } | |
| impl Element { | |
| fn test() { | |
| // Prints a random value close to, but not exactly equal to, 0. | |
| // e.g. 9.52676e-317, 1.43533e-316 | |
| // Optimization flags make it exactly 0. | |
| log(info, self.vals[0]); |