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
| <iframe src="https://www.google.com/calendar/embed?showCalendars=0&showTz=0&mode=AGENDA&height=500&wkst=2&hl=ru&bgcolor=%23FFFFFF&src=9ir9pkisi285laj0buv9r3caug%40group.calendar.google.com&color=%23B1440E&ctz=Europe%2FMoscow" style=" border-width:0 " width="650" height="500" frameborder="0" scrolling="no"></iframe> |
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
| data_types: # child-values can be used "as-is" if parent-type is requested | |
| "xs:anyType": | |
| "xs:untyped": {} | |
| "xs:anySimpleType": | |
| "xs:anyAtomicType": | |
| "xs:untypedAtomic": {} | |
| "xs:dateTime": {} | |
| "xs:date": {} | |
| "xs:time": {} | |
| "xs:duration": |
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
| <?php | |
| /** | |
| * Mimics ant pattern matching. | |
| * New addition (afaict): any pattern ending in '/' will only match directories | |
| * @see http://ant.apache.org/manual/dirtasks.html#patterns | |
| * @todo more complete testing | |
| */ | |
| function pake_antpattern($files, $rootdir) | |
| { | |
| $results = array(); |
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
| <?php | |
| class GitHubAuth | |
| { | |
| const AUTH_URL = 'https://github.com/login/oauth/authorize'; | |
| const ACCESS_TOKEN_URL = 'https://github.com/login/oauth/access_token'; | |
| private $app_id; | |
| private $app_secret; |
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
| from gi.repository import Midgard | |
| class RdfMapper: | |
| def __init__(self, mgd): | |
| self.mgd = mgd | |
| self.read_types() | |
| def read_types(self): | |
| for gtype in Midgard.Object.__gtype__.children: | |
| self.read_type(gtype) |
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
| from gi.repository import Midgard | |
| class RdfMapper: | |
| def __init__(self): | |
| self.read_types() | |
| def read_types(self): | |
| for gtype in Midgard.Object.__gtype__.children: | |
| self.read_type(gtype) |
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 inspect | |
| import gi | |
| from gi.repository import Midgard | |
| Midgard.init() | |
| for name, obj in inspect.getmembers(Midgard): | |
| if inspect.isclass(obj): | |
| print(obj.__name__) |
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 -Naurp gettext-0.18.1.1.orig/gettext-tools/configure gettext-0.18.1.1/gettext-tools/configure | |
| --- 1/gettext-tools/configure 2010-06-06 13:12:20.000000000 -0700 | |
| +++ 2/gettext-tools/configure 2010-08-13 23:24:09.000000000 -0700 | |
| @@ -40606,7 +40606,9 @@ else | |
| #include <stdlib.h> | |
| #include <string.h> /* for strcpy */ | |
| /* The stpncpy prototype is missing in <string.h> on AIX 4. */ | |
| +#ifndef stpncpy | |
| extern char *stpncpy (char *dest, const char *src, size_t n); | |
| +#endif |
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
| tmp = [{'a': 'b'}, {'c': 'd'}] | |
| for x in tmp: | |
| for k in x.keys(): | |
| print("key: %s, value: %s" % (k, x[k])) |
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
| mongrel2 = Host(name="localhost", routes={ | |
| '/': Handler( | |
| send_spec='tcp://127.0.0.1:9997', | |
| send_ident='53f9f1d1-1116-4751-b6ff-4fbe3e43d142', | |
| recv_spec='tcp://127.0.0.1:9996', recv_ident='') | |
| }) | |
| main = Server( | |
| uuid="82209006-86FF-4982-B5EA-D1E29E55D481", | |
| access_log="/logs/access.log", |