I recently finished 10minutemail.davidxia.com, a disposable email service (it even has forward and reply functionality, I’m so proud), and vis.davidxia.com, a visualization of my website’s traffic.
I recently finished 10minutemail.davidxia.com, a disposable email service (it even has forward and reply functionality, I’m so proud), and vis.davidxia.com, a visualization of my website’s traffic.
A while ago, I wrote some amateurish scripts that tweeted automatically via Twitter’s API. First I used PHP then Ruby. I’ve settled on Python and gotten rid of database dependencies by serializing each bot’s user data. Simpler, flatter, better. Check out the code here.
Waterboarding has been a controversial topic ever since the fall of 2007, when it was widely reported that the CIA was using waterboarding on extrajudicial prisoners and that the Justice Department authorized the procedure as an “enhanced interrogation technique.” Many consider waterboarding torture and a violation of Common Article 3 of the Geneva Conventions.
I’m in no way trying to diminish the implications waterboarding with this personal experiment. I wanted to experience waterboarding first-hand in order to better understand the context surrounding the debate. I never truly feared for my life because my trusted friends administered the waterboarding and I held a wooden block which I would drop when I couldn’t take anymore. But I can say that when done right, I felt like I was drowning. I had no control over my spasms and gags.
I went ice climbing with some friends last weekend at Lake Placid, NY. Although it was physically punishing, it was a lot of fun. We learned a lot of rope and climbing skills and will definitely be applying them to our future spelunking or climbing trips.
I am a trained professional. Do not try this at home.
I was inspired by this Ars Technica article to own hardware after renting one in the cloud
for a while. So I ordered a Foxconn NTA350, 4GB of RAM,
and
64 GB SSD
for $270.
Once my new toy arrived, I named him Jarvis and installed Ubuntu 12.04 server edition including the DNS, OpenSSH, SMTP, and LAMP packages.
Recently I’ve been working with a kick-ass combination of Vim, tmux, and my cloud virtual machine that has increased my productivity.
tmux new -s [session name]) or attach to an existing one (tmux
attach -t [session name])tmux list-sessionsctrl-b d)I’m reading The C Programming Language and trying to remember C’s standard library
functions for IO and their system call equivalents. I couldn’t find a side-by-side chart online,
so I created this to help me.
| C stdlib | return value | header | system call | return value | header | |
|---|---|---|---|---|---|---|
| files | file pointer FILE *fp | stdio.h | file descriptor int td | |||
| streams | stdin, stdout, stderr | stdio.h | 0, 1, 2 | |||
| open | FILE *fopen(char *name, char *mode) | file pointer on success, NULL on failure | stdio.h | int open(char *name, int flags, int perms) | file descriptor on success, -1 on error | fctnl.h |
| create | (fopen creates file if it doesn’t exist) | int creat(char *name, int perms) | fctnl.h | |||
| read | int getc(FILE *fp); getchar = getc(stdin) | next char, EOF on end of file or error | stdio.h | int read(int fd, char *buf, int n) | number bytes read, 0 on EOF, -1 on error | stdio.h |
| read | char *fgets(char *line, int maxline); gets = fgets(stdin) | *line on success, NULL on EOF or error | stdio.h | |||
| write | int putc(int c, FILE *fp) | char written on success, EOF on error | stdio.h | int write(int fd, char *buf, int n) | number bytes written, 0 on EOF, -1 on error | stdio.h |
| write | int fputs(char *line, FILE *fp); puts = fputs(stout) | non-negative int on success, EOF on error | stdio.h | |||
| close | int fclose(FILE *fp) | 0 on success | stdio.h | int close(int fd) | 0 on success | unistd.h |
| perms | r, w, a | |||||
| flags | O_RDONLY, O_WRONLY, O_RDWR | fctnl.h | ||||
| BUFSIZ | stdio.h |
My trips to Stockholm and San Fran in September this year.