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/sh | |
| for tbl in `psql -qAt -c "select tablename from pg_tables where schemaname = 'public';" ${2}` ; do psql -c "alter table $tbl owner to ${1}" ${2} ; done | |
| for tbl in `psql -qAt -c "select sequence_name from information_schema.sequences where sequence_schema = 'public';" ${2}` ; do psql -c "alter table $tbl owner to ${1}" ${2} ; done |
This file has been truncated, but you can view the full file.
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
| --- makefile-old 2012-02-05 17:54:00.000000000 +0100 | |
| +++ makefile 2012-02-16 10:47:18.000000000 +0100 | |
| @@ -643,6 +643,8 @@ | |
| # $(OBJ)/libflac++.a | |
| +7Z_LIB = $(OBJ)/lib7z.a | |
| + | |
| #------------------------------------------------- | |
| # defines needed by multiple make files |
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 'formula' | |
| class Mame < Formula | |
| url 'http://mamedev.org/downloader.php?file=releases/mame0145s.zip' | |
| #head 'svn://messdev.no-ip.org/mess' | |
| homepage 'http://mamedev.org/' | |
| version '144u6' | |
| depends_on 'sdl' |
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
| diff '--exclude=*.orig' -urN vim73.orig/runtime/doc/eval.txt vim73/runtime/doc/eval.txt | |
| Index: macvim/runtime/doc/eval.txt | |
| =================================================================== | |
| --- macvim.orig/runtime/doc/eval.txt | |
| +++ macvim/runtime/doc/eval.txt | |
| @@ -6409,8 +6409,8 @@ jumplist Compiled with |jumplist| suppo | |
| keymap Compiled with 'keymap' support. | |
| langmap Compiled with 'langmap' support. | |
| libcall Compiled with |libcall()| support. | |
| -linebreak Compiled with 'linebreak', 'breakat' and 'showbreak' |
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
| import os | |
| import sys | |
| if __name__ == '__main__': | |
| data = {} | |
| for k, v in zip(sys.argv[1::2], sys.argv[2::2]): | |
| try: | |
| data[k] = v.decode('utf-8') | |
| except UnicodeDecodeError: |