I hereby claim:
- I am roman-yepishev on github.
- I am rye (https://keybase.io/rye) on keybase.
- I have a public key ASDVjzC3b2R-iMYCcgjhyVdcUZgJS3O8OJ8uTqrkn81Wiwo
To claim this, I am signing this object:
| diff -ur ../gvfs-1.16.3.orig/daemon/gvfsbackendmtp.c ./daemon/gvfsbackendmtp.c | |
| --- ../gvfs-1.16.3.orig/daemon/gvfsbackendmtp.c 2013-09-10 08:20:43.199638261 +0300 | |
| +++ ./daemon/gvfsbackendmtp.c 2013-09-10 08:27:06.859955187 +0300 | |
| @@ -33,6 +33,7 @@ | |
| #include <glib/gstdio.h> | |
| #include <glib/gi18n.h> | |
| #include <gio/gio.h> | |
| +#include <glib.h> | |
| #include <libmtp.h> |
| #!/usr/bin/env python | |
| """Telepathy CouchDB Logger""" | |
| from dbus.mainloop.glib import DBusGMainLoop | |
| import gobject | |
| import dbus | |
| #for observer thing | |
| import telepathy | |
| import telepathy.server |
| #include <stdio.h> | |
| #include <string.h> | |
| #include <stdlib.h> | |
| int is_sep(const char s, const char *separators) | |
| { | |
| int i; | |
| for (i = 0; i < strlen(separators); i++) { | |
| if (s == separators[i]) { |
| import requests | |
| import unittest | |
| API_BASE = 'https://www.mediafire.com/api' | |
| class MediaFireGzipTest(unittest.TestCase): | |
| """Test MediaFire gzipped content response""" | |
| def test_api_1_0_gzip(self): |
| from mediafire.api import MediaFireApi | |
| api = MediaFireApi() | |
| result = api.request("system/get_status") | |
| print(result) |
| https://github.com/roman-yepishev/duplicity-mediafire/ |
| #!/usr/bin/python3 | |
| """Convert Zoho Vault Export CSV to KeePass KDB | |
| Usage: zohovault2keepass.py ZohoVault.csv keepass.kdb | |
| You will be prompted for the encryption password. | |
| """ | |
| import csv |
| --- libical-1.0/src/libical/icaltz-util.c.orig 2013-04-14 13:24:42.000000000 -0400 | |
| +++ libical-1.0/src/libical/icaltz-util.c 2015-05-11 23:21:20.632759999 -0400 | |
| @@ -349,11 +349,8 @@ | |
| tz_comp = icalcomponent_new (ICAL_VTIMEZONE_COMPONENT); | |
| /* Add tzid property */ | |
| - tzid = (char *) malloc (strlen (ical_tzid_prefix) + strlen (location) + 8); | |
| - sprintf (tzid, "%sTzfile/%s", ical_tzid_prefix, location); | |
| - icalprop = icalproperty_new_tzid (tzid); | |
| + icalprop = icalproperty_new_tzid (location); |
I hereby claim:
To claim this, I am signing this object:
| #include <stdio.h> | |
| #include <sys/types.h> | |
| #include <sys/socket.h> | |
| #include <string.h> | |
| #include <netdb.h> | |
| int main() | |
| { | |
| struct addrinfo hints; | |
| struct addrinfo *result; |