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
| #Element { /* ID z duzej litery */ | |
| background: #fff; | |
| color: #000; | |
| } | |
| #Element .test { /* klasy z malej */ | |
| color: #f00; | |
| } | |
| #InnyElement { |
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 pygtk | |
| pygtk.require("2.0") | |
| import gobject | |
| import gtk | |
| from gtk import gdk | |
| class EntryMultiCompletion(gtk.Entry): | |
| def init(self): | |
| gtk.Entry.init(self) |
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 WineGecko < Formula | |
| url 'http://downloads.sourceforge.net/wine/wine_gecko-1.5-x86.msi', :using => :nounzip | |
| sha1 '07b2bc74d03c885bb39124a7641715314cd3ae71' | |
| end | |
| class Wine < Formula | |
| homepage 'http://winehq.org/' | |
| url 'http://downloads.sourceforge.net/project/wine/Source/wine-1.5.1.tar.bz2' |
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
| // | |
| // main.cpp | |
| // Ugly Attractor Finder | |
| // | |
| // Created by Rafał Hirsz on 02.08.2012. | |
| // Copyright (c) 2012 Rafał Hirsz. All rights reserved. | |
| // | |
| #include <iostream> | |
| #include <random> |
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
| # Base API class | |
| class Skeleton | |
| constructor: -> | |
| @waitForCommit = false | |
| @transaction = [] | |
| callHandler: (name, params, callback) -> | |
| throw 'Not implemented' | |
| extractCallback: (params..., callback) -> |
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
| def flatten(entry, parent) | |
| entry_string = entry.to_s | |
| [entry_string.slice(parent.to_s.length+1, entry_string.length)] + (entry.class == FakeFS::FakeDir ? entry.entries.map {|e| flatten(e, parent)} : []) | |
| end | |
| def glob(pattern) | |
| a = FakeFS::FileSystem.current_dir.entries.map { |e| flatten(e, FakeFS::FileSystem.current_dir) }.flatten! | |
| a.select { |p| RealFile.fnmatch(pattern, p, RealFile::FNM_PATHNAME) } | |
| 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/bash | |
| #### CONFIG | |
| MC_PATH=/home/minecraft | |
| SCREEN_NAME="minecraft" | |
| USERNAME="minecraft" | |
| MEMALLOC=512 | |
| JAR_NAME="craftbukkit.jar" |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAmYUJIqJ8vFB3/MgYRYd1xtJ+FAMtD+JQmwrKkobp6AKlh/8FxdhZgjDFJB2indDZ6w/FRsocLZ5z+sUwTH3rKlMmlLHIyEBeXK9FDxuzBBXLKWqJ2fq7xuoyL9ki/bgEc4PnPS/HaAZHT9aN2uQcn9QNgulGCU8uimy6wGxytH81ADMHeTaafVH33a4tNe3IjTcvOhbE4sxxt6JeUjyhCEK4KjY0PbQ2G5V+hRQ8mCB8uFOVr5cLJMllRUdqM8kd+PKuhY/djNregGx+eRmQOG9108aDi866bcqGio/5M/pbno5T/V4GLZRhy5X/2X/h/s3UOFAtOYQmnlttxGuLuw== hirszdesign@gmail.com |
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
| Core was generated by `/usr/bin/spectrum2_libpurple_backend --host localhost --port 31264 --service.ba'. | |
| Program terminated with signal 11, Segmentation fault. | |
| #0 0x00002b939f6f3c7d in vfprintf () from /lib/libc.so.6 | |
| (gdb) bt full | |
| #0 0x00002b939f6f3c7d in vfprintf () from /lib/libc.so.6 | |
| No symbol table info available. | |
| #1 0x00002b939f7ab70c in __vasprintf_chk () from /lib/libc.so.6 | |
| No symbol table info available. | |
| #2 0x00002b939cafda0b in g_vasprintf () from /lib/libglib-2.0.so.0 | |
| No symbol table info available. |
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
| // Rafał Hirsz | |
| // 247955 | |
| // KLO | |
| #include <cstdio> | |
| #include <limits> | |
| #include <vector> | |
| struct Edge { | |
| int from, to; |
OlderNewer