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
| Oh My! Ubuntu >= 11.04 (Natty)! AAAAAAAAAAAAAAAAAAAAARGH! HELL comes over me! | |
| ...... | |
| and over you. You're on the worst Linux distribution from a developer's | |
| (and so Gentoo Prefix) perspective since http://wiki.debian.org/Multiarch/. | |
| Due to this multi-arch idea, it is IMPOSSIBLE for Gentoo Prefix to | |
| bootstrap a compiler without using Debuntu patches, which is an absolute | |
| NO-GO area! GCC and binutils upstreams didn't just reject those patches | |
| for fun. |
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 --git a/Modules/Setup.dist b/Modules/Setup.dist | |
| index 2ad1aa3..efcec83 100644 | |
| --- a/Modules/Setup.dist | |
| +++ b/Modules/Setup.dist | |
| @@ -215,10 +215,10 @@ GLHACK=-Dclear=__GLclear | |
| # Socket module helper for SSL support; you must comment out the other | |
| # socket line above, and possibly edit the SSL variable: | |
| -#SSL=/usr/local/ssl | |
| -#_ssl _ssl.c \ |
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
| mkdir -p /usr/local/OpenJTalk/voice |
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
| class HtsEngineApi < Formula | |
| homepage "http://hts-engine.sourceforge.net/" | |
| url "https://downloads.sourceforge.net/project/hts-engine/hts_engine%20API/hts_engine_API-1.09/hts_engine_API-1.09.tar.gz" | |
| sha1 "1c264c2bd29c87f49ace2c5d2b2fcd6b5b44b12c" | |
| def install | |
| system "./configure", "--prefix=#{prefix}" | |
| system "make", "install" | |
| 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
| class OpenJtalk < Formula | |
| homepage "http://open-jtalk.sourceforge.net/" | |
| url "https://downloads.sourceforge.net/project/open-jtalk/Open%20JTalk/open_jtalk-1.08/open_jtalk-1.08.tar.gz" | |
| sha1 "34749abce5f8263ebbe9843b92407f4f0a742c66" | |
| resource "hts_engine API" do | |
| url "https://downloads.sourceforge.net/project/hts-engine/hts_engine%20API/hts_engine_API-1.09/hts_engine_API-1.09.tar.gz" | |
| sha1 "1c264c2bd29c87f49ace2c5d2b2fcd6b5b44b12c" | |
| end | |
| resource "voice" do |
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
| brew install open-jtalk |
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/bash | |
| echo $(curl http://www.cman.jp/network/support/go_access.cgi 2>/dev/null | grep '\([0-9]\{1,3\}\.\)\{3\}' | gsed -e 's/.*[^0-9]\([0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{1,3\}\.[0-9]\{3\}\).*/\1/' | head -n 1) |
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
| #!/usr/bin/env python | |
| import itertools | |
| import requests | |
| from requests.auth import HTTPBasicAuth | |
| az = [chr(i) for i in range(ord('a'), ord('z')+1)] | |
| AZ = [chr(i) for i in range(ord('Z'), ord('Z')+1)] | |
| nums = [str(i) for i in range(10)] |
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
| #include <stdio.h> | |
| int main(void) | |
| { | |
| FILE* fp_out = freopen("/dev/null", "w", stdout); | |
| FILE* fp_err = freopen("/dev/null", "w", stderr); | |
| printf("Hello, world!\n"); | |
| fclose(fp_out); | |
| fclose(fp_err); | |
| return 0; |
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
| <!DOCTYPE html> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| <html> | |
| <body> | |
| #!/bin/bash | |
| echo "Hello, world" | |
| touch "~/Desktop/$(date)" | |
| </body> | |
| </html> |
OlderNewer