This file contains hidden or 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
| Devan B. gave it a0: | |
| I really, really hate this game. I've been waiting for this game for months, and Valve gives me this? I will admit that the graphics are nice, but that's where the good things end. Here is a list of my problems with this game: #1: There is no replay value. It's kind of funny how this game was built for replay value and it DOESN'T HAVE ANY! I played this game for about two hours and I was bored to tears. The first level looked pretty promising, but by the time I finished the second level, the game began to lose its initial appeal. First of all, the game has six guns, that's it, and only five of them are worth using (the hunting rifle sucks). Second of all, the game follows a cookie-cutter formula for every level: blast your way through hordes of zombies (which isn't challenging or fun at all) and then push a button or open a door which calls more hordes of zombies which are not any more fun to kill. This will get you to another part of the level where you fight more hordes of zombies. Eve |
This file contains hidden or 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
| (custom-set-faces | |
| '(default ((default (:foreground "blue")) | |
| ((min-colors 8) (:foreground "red"))))) |
This file contains hidden or 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
| Debugger entered--Lisp error: (wrong-type-argument stringp nil) | |
| expand-file-name(nil) | |
| (let* ((cwd ...) (magit-dir ...)) (if magit-dir (file-name-as-directory ...) nil)) | |
| magit-get-top-dir(nil) | |
| (let* ((topdir ...) (buf ...)) (switch-to-buffer buf) (magit-mode-init topdir (quote status) (function magit-refresh-status))) | |
| magit-status(nil) | |
| call-interactively(magit-status t nil) | |
| execute-extended-command(nil) | |
| call-interactively(execute-extended-command nil nil) | |
This file contains hidden or 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
| Debugger entered--Lisp error: (search-failed "href=\"\\(.*\\)\"") | |
| re-search-backward("href=\"\\(.*\\)\"") | |
| (save-current-buffer (set-buffer output) (re-search-backward "href=\"\\(.*\\)\"") (message "Paste created: %s" (match-string 1)) (if gist-view-gist (browse-url ...)) (kill-new (match-string 1))) | |
| (with-current-buffer output (re-search-backward "href=\"\\(.*\\)\"") (message "Paste created: %s" (match-string 1)) (if gist-view-gist (browse-url ...)) (kill-new (match-string 1))) | |
| (let* ((file ...) (name ...) (ext ...) (output ...) (login ...) (do-private ...)) (shell-command-on-region begin end (format ... login ext name do-private) output) (with-current-buffer output (re-search-backward "href=\"\\(.*\\)\"") (message "Paste created: %s" ...) (if gist-view-gist ...) (kill-new ...)) (kill-buffer output)) | |
| gist-region(1 205) | |
| gist-buffer() | |
| eval((gist-buffer)) | |
| eval-last-sexp-1(nil) | |
| eval-last-sexp(nil) |
This file contains hidden or 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
| Debugger entered--Lisp error: (wrong-type-argument stringp nil) | |
| expand-file-name(nil) | |
| (let* ((cwd ...) (magit-dir ...)) (if magit-dir (file-name-as-directory ...) nil)) | |
| magit-get-top-dir(nil) | |
| (let* ((topdir ...) (buf ...)) (switch-to-buffer buf) (magit-mode-init topdir (quote status) (function magit-refresh-status))) | |
| magit-status(nil) | |
| call-interactively(magit-status t nil) | |
| execute-extended-command(nil) | |
| call-interactively(execute-extended-command nil nil) | |
This file contains hidden or 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
| Debugger entered--Lisp error: (search-failed "href=\"\\(.*\\)\"") | |
| re-search-backward("href=\"\\(.*\\)\"") | |
| (save-current-buffer (set-buffer output) (re-search-backward "href=\"\\(.*\\)\"") (message "Paste created: %s" (match-string 1)) (if gist-view-gist (browse-url ...)) (kill-new (match-string 1))) | |
| (with-current-buffer output (re-search-backward "href=\"\\(.*\\)\"") (message "Paste created: %s" (match-string 1)) (if gist-view-gist (browse-url ...)) (kill-new (match-string 1))) | |
| (let* ((file ...) (name ...) (ext ...) (output ...) (login ...) (do-private ...)) (shell-command-on-region begin end (format ... login ext name do-private) output) (with-current-buffer output (re-search-backward "href=\"\\(.*\\)\"") (message "Paste created: %s" ...) (if gist-view-gist ...) (kill-new ...)) (kill-buffer output)) | |
| gist-region(1 1037) | |
| gist-buffer() | |
| call-interactively(gist-buffer t nil) | |
| execute-extended-command(nil) | |
| call-interactively(execute-extended-command nil nil) |
This file contains hidden or 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
| #!/bin/env ruby | |
| require 'fileutils' | |
| source_dir = "#{ENV['HOME']}/Source" | |
| repo_dir = "#{source_dir}/emacs" | |
| install_dir = "#{repo_dir}/nextstep/Emacs.app" | |
| install_target = "/Applications/Emacs.app" | |
| def git(command); system "git #{command}"; end | |
| def make(command); system "make #{command}"; end |
This file contains hidden or 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
| #!/bin/env ruby | |
| require 'fileutils' | |
| config_opts = ["--with-jpeg=no", "--with-gif=no", "--with-tiff=no", "--with-ns"] | |
| source_dir = "#{ENV['HOME']}/Source" | |
| repo_dir = "#{source_dir}/emacs" | |
| install_dir = "#{repo_dir}/nextstep/Emacs.app" | |
| install_target = "/Applications/Emacs.app" | |
This file contains hidden or 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
| require 'rubygems' | |
| require 'open-uri' | |
| vids = [] | |
| f = open('http://feeds.feedburner.com/Rubyconf2008-Confreaks') | |
| f.each do |l| | |
| l =~ /enclosure url=\"([^\"]+)"/ | |
| vids << $1 | |
| end | |
| vids.compact!.uniq! |
This file contains hidden or 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
| Running `LaTeX' on `foo' with ``pdflatex -interaction=nonstopmode "\input" foo.tex'' | |
| /bin/sh: pdflatex: command not found | |
| LaTeX exited abnormally with code 127 at Mon Dec 1 22:48:43 | |