diff --git a/planetkde/config b/planetkde/config index 12894ce..133f766 100644 --- a/planetkde/config +++ b/planetkde/config @@ -1,3439 +1,3439 @@ # Planet KDE config fil # Add your blog #If you are a KDE contributor you can have your blog on Planet #KDE. Blog content should be mostly KDE themed, English language and #not liable to offend. If you have a general blog you may want to set #up a tag and subscribe the feed for that tag only to Planet KDE. #To have your blog added file a bug in Bugzilla listing your name, KDE Identity #account (if you have one), IRC nick (if you have one), RSS or Atom #feed and what you do in KDE. Attach a photo of your face for #hackergotchi. #Alternatively, Planet KDE is kept in KDE's GIT. If you have an #account you can add or edit your own feed: #git clone git@git.kde.org:websites/planet-kde-org #Put your hackergotchi in planetkde/website/hackergotchi/. A hackergotchi should be a photo of #your face smaller than 80x80 pixels with a transparent background. git add the file. #At the end of the planetkde/config file add your details (the name in brackets is your IRC nick): #feed 15m http://path.to/my/feed.rss # define_name Konqi Konqueror (konqi) # define_face hackergotchi/konqi.png # define_facewidth 80 # define_faceheight 80 #If you want to add a Twitter microblog to the Microblogging sidebar #add define_microblog true and follow your name with #[twitter]. Currently only Twitter is known to work, please contact #Jonathan Riddell before adding non-Twitter microblogs to check it #works. #Planet KDE Guidelines #Planet KDE is one of the public faces of the KDE project and is read #by millions of users and potential contributors. The content #aggregated at Planet KDE is the opinions of its authors, but the sum #of that content gives an impression of the project. Please keep in #mind the following guidelines for your blog content and read the #[http://www.kde.org/code-of-conduct/ KDE Code of Conduct]. The KDE #project reserves the right to remove an inappropriate blog from the #Planet. If that happens multiple times, the Community Working Group #can be asked to consider what needs to happen to get your blog #aggregated again. #If you are unsure or have queries about what is appropriate contact #the KDE Community Working Group. #Blogs should be KDE themed #The majority of content in your blog should be about KDE and your #work on KDE. Blog posts about personal subjects are also encouraged #since Planet KDE is a chance to learn more about the developers #behind KDE. However blog feeds should not be entirely personal, if in #doubt set up a tag for Planet KDE and subscribe the feed from that #tag so you can control what gets posted. #Posts should be constructive #Posts can be positive and promote KDE, they can be constructive and #lay out issues which need to be addressed, but blog feeds should not #contain useless, destructive and negative material. Constructive #criticism is welcome and the occasional rant is understandable, but a #feed where every post is critical and negative is unsuitable. This #helps to keep KDE overall a happy project. #You must be a KDE contributor #Only have your blog on Planet KDE if you actively contribute to KDE, #for example through code, user support, documentation etc. #Do not inflame #KDE covers a wide variety of people and cultures. Profanities, #prejudice, lewd comments and content likely to offend are to be #avoided. Do not make personal attacks or attacks against other #projects on your blog. #For further guidance on good practice see the KDE Code of Conduct. #################################### # Times in this file are specified as a value and a unit (for instance, # "4h"). Units available are "s" (seconds), "m" (minutes), "h" (hours), # "d" (days) and "w" (weeks). If no unit is specified, rawdog will # assume minutes. # Boolean (yes/no) values in this file are specified as "true" or "false". # rawdog can be extended using plugin modules written in Python. This # option specifies the directories to search for plugins to load. If a # directory does not exist or cannot be read, it will be ignored. This # option must appear before any options that are implemented by plugins. plugindirs plugins # Whether to split rawdog's state amongst multiple files. # To use this option, you must first "mkdir ~/.rawdog/feeds". # If this is turned on, rawdog will use significantly less memory, but # will do more disk IO -- probably a good idea if you read a lot of # feeds. splitstate true # The maximum number of articles to show on the generated page. # Set this to 0 for no limit. maxarticles 30 # The maximum age of articles to show on the generated page. # Set this to 0 for no limit. maxage 0 # The age after which articles will be discarded if they do not appear # in a feed. Set this to a larger value if you want your rawdog output # to cover more than a day's worth of articles. expireage 1d # The minimum number of articles from each feed to keep around in the history. # Set this to 0 to only keep articles that were returned the last time the feed # was fetched. (If this is set to 0, or "currentonly" below is set to true, # then rawdog will not send the RFC3229+feed "A-IM: feed" header when making # HTTP requests, since it can't tell from the response to such a request # whether any articles have been removed from the feed; this makes rawdog # slightly less bandwidth-efficient.) keepmin 3 # Whether to only display articles that are currently included in a feed # (useful for "planet" pages where you only want to display the current # articles from several feeds). If this is false, rawdog will keep a # history of older articles. currentonly true # Whether to divide the articles up by day, writing a "dayformat" heading # before each set. daysections true # The format to write day headings in. See "man strftime" for more # information; for example: # %A, %d %B Wednesday, 21 January # %Y-%m-%d 2004-01-21 (ISO 8601 format) dayformat %B %d, %Y # Whether to divide the articles up by time, writing a "timeformat" heading # before each set. timesections false # The format to write time headings in. For example: # %H:%M 18:07 (ISO 8601 format) # %I:%M %p 06:07 PM # timeformat %H:%M # The format to display feed update and article times in. For example: # %H:%M, %A, %d %B 18:07, Wednesday, 21 January # %Y-%m-%d %H:%M 2004-01-21 18:07 (ISO 8601 format) datetimeformat %H:%M, %A, %d %B # The template file to use, or "default" to use the built-in template # (which is probably sufficient for most users). Use "rawdog -t" to show # the template currently in use as a starting-point for customisation. # The following strings will be replaced in the output: # __version__ The rawdog version in use # __refresh__ The HTML 4 header # __items__ The aggregated items # __num_items__ The number of items on the page # __feeds__ The listing of feeds # __num_feeds__ The number of feeds listed # You can define additional strings using "define" in this config file; for # example, if you say "define myname Adam Sampson", then "__myname__" will be # replaced by "Adam Sampson" in the output. template planet_template # Similarly, the template used for each item shown. Use "rawdog -T" to # show the template currently in use as a starting-point for # customisation. The following strings will be replaced in the output: # __title__ The item title (as an HTML link, if possible) # __title_no_link__ The item title (as text) # __url__ The item's URL, or the empty string if it doesn't # have one # __guid__ The item's GUID, or the empty string if it doesn't # have one # __description__ The item's descriptive text, or the empty string # if it doesn't have a description # __date__ The item's date as provided by the feed # __added__ The date the article was received by rawdog # __hash__ A hash of the article (useful for summary pages) # __feed_title__ The feed title (as an HTML link, if possible) # __feed_title_no_link__ # The feed title (as text) # __feed_url__ The feed URL # __feed_hash__ A hash of the feed URL (useful for per-feed styles) # __feed_id__ The feed's title with non-alphanumeric characters # (and HTML markup) removed (useful for per-feed # styles); you can use the "id" feed option below to # set a custom ID if you prefer # You can define additional strings on a per-feed basis by using the # "define_X" feed option; see the description of "feed" below for more # details. # Simple conditional expansion is possible by saying something like # "__if_items__ hello __endif__"; the text between the if and endif will # only be included if __items__ would expand to something other than # the empty string. Ifs can be nested, and __else__ is supported. (This also # works for the "template" option, but it's more useful for item # templates.) itemtemplate itemplate # Where to write the output HTML to. You should place style.css in the same # directory. Specify this as "-" to write the HTML to stdout. # (You will probably want to make this an absolute path, else rawdog will write # to a file in your ~/.rawdog directory.) #outputfile output.html outputfile ../website/index.html outputxml ../website/rss20.xml outputfoaf ../website/foafroll.xml outputopml ../website/opml.xml xmlmaxarticles 30 # Whether to use a tag in the generated # HTML to indicate that the page should be refreshed automatically. If # this is turned on, then the page will refresh every N minutes, where N # is the shortest feed period value specified below. # (This works by controlling whether the default template includes # __refresh__; if you use a custom template, __refresh__ is always # available.) userefresh true # Whether to show the list of active feeds in the generated HTML. # (This works by controlling whether the default template includes # __feeds__; if you use a custom template, __feeds__ is always # available.) showfeeds true # The number of concurrent threads that rawdog will use when fetching # feeds -- i.e. the number of feeds that rawdog will attempt to fetch at # the same time. If you have a lot of feeds, setting this to be 20 or # so will significantly speed up updates. If this is set to 0, rawdog # will not use threads at all. numthreads 3 # The time that rawdog will wait before considering a feed unreachable # when trying to connect. If you're getting lots of timeout errors and # are on a slow connection, increase this. # (Unlike other times in this file, this will be assumed to be in # seconds if no unit is specified.) timeout 30s # Whether to ignore timeouts. If this is false, timeouts will be reported as # errors; if this is true, rawdog will silently ignore them. ignoretimeouts false # Whether to display verbose status messages saying what rawdog's doing # while it runs. Specifying -v or --verbose on the command line is # equivalent to saying "verbose true" here. verbose false # Whether to attempt to fix bits of HTML that should start with a # block-level element (such as article descriptions) by prepending "

" # if they don't already start with a block-level element. blocklevelhtml true # Whether to attempt to turn feed-provided HTML into valid HTML. # The most common problem that this solves is a non-closed element in an # article causing formatting problems for the rest of the page. # If this option is turned on, you must have the mx.Tidy Python module # installed. ##tidyhtml true # Whether the articles displayed should be sorted first by the date # provided in the feed (useful for "planet" pages, where you're # displaying several feeds and want new articles to appear in the right # chronological place). If this is false, then articles will first be # sorted by the time that rawdog first saw them. sortbyfeeddate true # Whether to consider articles' unique IDs or GUIDs when updating rawdog's # database. If you turn this off, then rawdog will create a new article in its # database when it sees an updated version of an existing article in a feed. # You probably want this turned on. # useids true # The fields to use when detecting duplicate articles: "id" is the article's # unique ID or GUID; "link" is the article's link. rawdog will find the first # one of these that's present in the article, and ignore the article if it's # seen an article before (in any feed) that had the same value. For example, # specifying "hideduplicates id link" will first look for id/guid, then for # link. # Note that some feeds use the same link for all their articles; if you specify # "link" here, you will probably want to specify the "allowduplicates" feed # argument (see below) for those feeds. hideduplicates id # The period to use for new feeds added to the config file via the -a|--add # option. newfeedperiod 3h # Whether rawdog should automatically update this config file (and its # internal state) if feed URLs change (for instance, if a feed URL # results in a permanent HTTP redirect). If this is false, then rawdog # will ask you to make the necessary change by hand. changeconfig true # The feeds you want to watch, in the format "feed period url [args]". # The period is the minimum time between updates; if less than period # minutes have passed, "rawdog update" will skip that feed. Specifying # a period less than 30 minutes is considered to be bad manners; it is # suggested that you make the period as long as possible. # Arguments are optional, and can be given in two ways: either on the end of # the "feed" line in the form "key=value", separated by spaces, or as extra # indented lines after the feed line. # possible arguments are: # id Value for the __feed_id__ value in the item # template for items in this feed (defaults to the # feed title with non-alphanumeric characters and # HTML markup removed) # user User for HTTP basic authentication # password Password for HTTP basic authentication # format "text" to indicate that the descriptions in this feed # are unescaped plain text (rather than the usual HTML), # and should be escaped and wrapped in a

 element
 # X_proxy             Proxy URL for protocol X (for instance, "http_proxy")
 # proxyuser           User for proxy basic authentication
 # proxypassword       Password for proxy basic authentication
 # allowduplicates     "true" to disable duplicate detection for this feed
 # maxage              Override the global "maxage" value for this feed
 # keepmin             Override the global "keepmin" value for this feed
 # define_X            Equivalent to "define X ..." for item templates
 #                     when displaying items from this feed
 # You can provide a default set of arguments for all feeds using
 # "feeddefaults". You can specify as many feeds as you like.
 # (These examples have been commented out; remove the leading "#" on each line
 # to use them.)
 #feeddefaults
 #	http_proxy http://proxy.example.com:3128/
 #feed 1h http://example.com/feed.rss
 #feed 15m http://example.com/feed2.rss id=newsfront
 #feed 3h http://example.com/feed3.rss keepmin=5
 #feed 3h http://example.com/secret.rss user=bob password=secret
 #feed 3h http://example.com/broken.rss
 #	format text
 #	define_myclass broken
 #feed 3h http://proxyfeed.example.com/proxied.rss http_proxy=http://localhost:1234/
 #feed 3h http://dupsfeed.example.com/duplicated.rss allowduplicates=true
 
 feed 15m http://afiestas.org/category/floss/kde/feed/
     define_name Alex Fiestas (afiestas)
     define_face hackergotchi/afiestas.png
     define_facewidth 59
     define_faceheight 79
 
 feed 15m http://sujithh.info/feed/?tag=KDE-dev%2CPlasma-dev
     define_name Sujith H (sujith_h)
     define_face hackergotchi/sujithh.png
     define_facewidth 64
     define_faceheight 81
 
 feed 15m http://blog.zx2c4.com/planetkde
     define_name Jason A. Donenfeld (zx2c4/jdonenfeld)
     define_face hackergotchi/jdonenfeld.png
     define_facewidth 61
     define_faceheight 70
 
 feed 15m http://www.purinchu.net/wp/feed/
     define_name Michael Pyne (mpyne)
     define_face hackergotchi/mpyne.png
     define_facewidth 64
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/11/feed
     define_name Maksim Orlovich (SadEagle)
 
 feed 15m https://valdyas.org/fading/category/planet/feed/
     define_name Boudewijn Rempt (boud)
 
 feed 15m http://ramblingsofpsn.blogspot.com/feeds/posts/default
     define_name Peter Simonsson (psn)
 
 feed 15m http://digested.blogspot.com/atom.xml
     define_name Derek Kite (dkite)
 
 feed 15m http://annma.blogspot.com/feeds/posts/default/-/KDE
     define_name Anne-Marie Mahfouf (annma)
     define_face hackergotchi/annma.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://ltinkl.blogspot.com/atom.xml
     define_name Lukas Tinkl
 
 feed 15m https://blogs.kde.org/blog/89/feed
     define_name Richard Dale
 
 feed 15m http://greeneg.blogspot.com/feeds/posts/default/-/KDE
     define_name Gary Greene (greeneg)
 
 feed 15m https://blogs.kde.org/blog/72/feed
     define_name Scott Wheeler (wheels)
     define_face hackergotchi/wheels.png
     define_facewidth 66
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/9/feed
     define_name Richard Moore (richmoore2)
 
 feed 15m https://blogs.kde.org/blog/35/feed
     define_name Mathieu Chouinard (chouimat)
     define_face hackergotchi/chouimat.png
     define_facewidth 64
     define_faceheight 78
 
 feed 15m https://blogs.kde.org/blog/2/feed
     define_name Ian Geiser (geiseri)
     define_face hackergotchi/geiseri.png
     define_facewidth 64
     define_faceheight 79
 
 feed 15m http://tokoe-kde.blogspot.com/rss.xml
     define_name Tobias Koenig (tokoe)
 
 feed 15m http://zrusin.blogspot.com/rss.xml
     define_name Zack Rusin (zrusin)
 
 feed 15m http://www.heliocastro.info/?cat=17&feed=rss2
     define_name Helio Castro (heliocastro)
     define_face hackergotchi/helio_castro.png
     define_facewidth 64
     define_faceheight 64
 
 feed 15m https://blogs.kde.org/blog/70/feed
     define_name Waldo Bastian (zogje)
 
 feed 15m https://blog.cornelius-schumacher.de/feeds/posts/default
     define_name Cornelius Schumacher
     define_face hackergotchi/cornelius.png
     define_facewidth 59
     define_faceheight 85
 
 feed 15m https://blogs.kde.org/blog/104/feed
     define_name Jarosław Staniek (jstaniek)
     define_face hackergotchi/jstaniek.png
 
 feed 15m https://blogs.kde.org/blog/395/feed
     define_name John Ratke
 
 feed 15m https://blogs.kde.org/blog/57/feed
     define_name Jonathan Riddell (riddell)
     define_face hackergotchi/riddell.png
     define_facewidth 68
     define_faceheight 97
 
 feed 15m https://jriddell.org/feed/?tag=planetkde
     define_name Jonathan Riddell (riddell)
     define_face hackergotchi/riddell.png
     define_facewidth 68
     define_faceheight 97
 
 feed 15m https://blogs.kde.org/blog/432/feed
     define_name Till Adam
 
 feed 15m https://blogs.kde.org/blog/457/feed
     define_name Stephan Binner (Beineri)
     define_face hackergotchi/beineri.png
     define_facewidth 70
     define_faceheight 70
 
 feed 15m https://blogs.kde.org/blog/102/feed
     define_name Brad Hards (bradh)
 
 feed 15m http://www.livejournal.com/users/cniehaus/data/rss
     define_name Carsten Niehaus (carsten)
 
 feed 15m https://blogs.kde.org/blog/105/feed
     define_name Adam Treat (manyoso)
     define_face hackergotchi/manyoso.png
     define_facewidth 85
     define_faceheight 85
 
 feed 15m http://pdamsten.blogspot.com/feeds/posts/default/-/kde
     define_name Petri Damstén
     define_face hackergotchi/pdamsten.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/418/feed
     define_name Kurt Pfeifle (pipitas)
 
 feed 15m http://mark-kretschmann.blogspot.com/feeds/posts/default
     define_name Mark Kretschmann (markey)
     define_face hackergotchi/markey_gotchi.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/124/feed
     define_name Stephan Kulow (coolo)
 
 feed 15m http://www.alexdymo.com/blog/feed/kde.xml
     define_name Alexander Dymo (adymo)
     define_face hackergotchi/dymo.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://nhasan.blogspot.com/atom.xml
     define_name Nadeem Hasan
     define_face hackergotchi/nadeem.png
     define_facewidth 64
     define_faceheight 80
 
 feed 15m http://accentgrave.blogspot.com/atom.xml
     define_name Philip Rodrigues (PhilRod)
 
 feed 15m https://blogs.kde.org/blog/1451/feed
     define_name Allen Winter
 
 feed 15m https://blogs.kde.org/blog/225/feed
     define_name Carlos Leonhard Woelz (cwoelz)
 
 feed 15m https://blogs.kde.org/blog/299/feed
     define_name Henrique Pinto
 
 feed 15m https://tsdgeos.blogspot.com/feeds/posts/default?alt=atom
     define_name Albert Astals Cid (TSDgeos)
     define_face hackergotchi/TSDgeos.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://tcanabrava.github.io/feed.xml
     define_name Tomaz Canabrava (tomaz)
     define_face hackergotchi/tomaz-canabrava.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/55/feed
     define_name Lucijan Busch (lucijan)
 
 feed 15m http://marccramdal.blogspot.com/atom.xml
     define_name Marc Cramdal
 
 feed 15m https://blogs.kde.org/blog/278/feed
     define_name Allan Sandfeld Jensen (carewolf)
 
 feed 15m http://theobromas.blogspot.com/atom.xml
     define_name Janet Theobroma (theobroma)
     define_face hackergotchi/theobroma.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/460/feed
     define_name Kurt Hindenburg
 
-feed 15m http://euroquis.nl/bobulate/?feed=rss2
+feed 45m https://euroquis.nl/feed.xml
     define_name Adriaan de Groot ([ade])
     define_face hackergotchi/adridg.png
     define_facewidth 72
     define_faceheight 65
 
 feed 15m https://blogs.kde.org/blog/20/feed
     define_name Andras Mantia
 
 feed 15m http://www.kuarepoti-dju.net/tags/community:desktop/index.rss
     define_name Josef Spillner
 
 feed 15m https://blogs.kde.org/blog/77/feed
     define_name Will Stephenson
 
 feed 15m http://www.christian-loose.de/wordpress/category/kde/feed/
     define_name Christian Loose
 
 feed 15m https://blogs.kde.org/blog/938/feed
     define_name Jan Muehlig (janushead)
 
 feed 15m http://tina-t.blogspot.com/atom.xml
     define_name Tina Trillitzsch
     define_face hackergotchi/tina.png
     define_facewidth 74
     define_faceheight 76
 
 feed 15m https://blogs.kde.org/blog/175/feed
     define_name Fabrice Mous (fab)
     define_face hackergotchi/fab.png
     define_facewidth 77
     define_faceheight 85
 
 feed 15m https://blogs.kde.org/blog/311/feed
     define_name Cristian Tibirna (Inorog)
 
 feed 15m https://blogs.kde.org/blog/1088/feed
     define_name Nikolas Zimmermann (WildFox)
 
 feed 15m https://blogs.kde.org/blog/699/feed
     define_name Frank Osterfeld (fosterfeld)
 
 feed 15m https://blogs.kde.org/blog/1089/feed
     define_name Rob Buis (rwlbuis)
 
 feed 15m https://kate-editor.org/author/cullmann/feed/
     define_name Christoph Cullmann (cullmann)
     define_face hackergotchi/cullmann.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://kate-editor.org/author/jowenn/feed/
     define_name Joseph Wenninger (jowenn)
 
 feed 15m https://kate-editor.org/author/shaheed/feed/
     define_name Shaheed Haque (shaheed)
 
 feed 15m https://kate-editor.org/author/lungu/feed/
     define_name Adrian Lungu (lungu)
 
 feed 15m https://kate-editor.org/author/dianat/feed/
     define_name Diana Tiriplica (dianat)
 
 feed 15m https://kate-editor.org/author/max/feed/
     define_name Maximilian Löffler (max)
 
 feed 15m https://kate-editor.org/author/fjellstrom/feed/
     define_name Thomas Fjellstrom (fjellstrom)
 
 feed 15m https://kate-editor.org/author/mentasti/feed/
     define_name Marco Mentasti (mentasti)
 
 feed 15m https://kate-editor.org/author/ksars/feed/
     define_name Kåre Särs (ksars)
 
 feed 15m https://kate-editor.org/author/bouthenot/feed/
     define_name Emmanuel Bouthenot (bouthenot)
 
 feed 15m https://kate-editor.org/author/pcobos/feed/
     define_name Pablo Martín Cobos (pcobos)
 
 feed 15m https://kate-editor.org/author/ssj/feed/
     define_name Simon St James (ssj)
 
 feed 15m https://blogs.kde.org/blog/16/feed
     define_name Reinhold Kainhofer
 
 feed 15m https://kamikazow.wordpress.com/feed/?mrss=off
     define_name Markus Slopianka (markuss)
 
 feed 15m https://macieira.org/blog/author/thiago/feed/
     define_name Thiago Macieira (thiago)
 
 feed 15m https://liquidat.wordpress.com/category/kde/feed/?mrss=off
     define_name Roland Wolters (liquidat)
 
 feed 15m https://blogs.kde.org/blog/38/feed
     define_name Jason Harris (LMCboy)
 
 feed 15m https://blogs.kde.org/blog/242/feed
     define_name Stefan Teleman
 
 feed 15m https://blogs.kde.org/blog/1186/feed
     define_name Antonio Larrosa Jimenez (antlarr)
 
 feed 15m https://blogs.kde.org/blog/531/feed
     define_name Alexander Neundorf
 
 feed 15m https://kate-editor.org/author/neundorf/feed/
     define_name Alexander Neundorf
 
 feed 15m https://blogs.kde.org/blog/1192/feed
     define_name Martijn Klingens
 
 feed 15m http://jahqueel.blogspot.com/atom.xml
     define_name Ashley Winters
 
 feed 15m https://blogs.kde.org/blog/41/feed
     define_name Gregor Iaskievitch
 
 feed 15m http://pinheiro-kde.blogspot.com/rss.xml
     define_name Nuno Pinheiro (pinheiro)
     define_face hackergotchi/pinheiro.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://vizZzion.org/blog/category/english/feed/
     define_name Sebastian Kügler (sebas)
     define_face hackergotchi/sebascolor.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://kath-leinir.blogspot.com/feeds/posts/default/-/kde
     define_name Dan Leinir Turthra Jensen (leinir)
     define_face hackergotchi/leinir.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://jamesots.blogspot.com/atom.xml
     define_name James Ots
 
 feed 15m http://ciesbreijs.blogspot.com/atom.xml
     define_name Cies Breijs (cies)
 
 feed 15m https://blogs.kde.org/blog/83/feed
     define_name Kevin Krammer
 
 feed 15m https://blogs.kde.org/blog/1195/feed
     define_name Simon Edwards
 
 feed 15m https://blogs.kde.org/blog/838/feed
     define_name Dario Massarin
 
 feed 15m https://blogs.kde.org/blog/7440/feed
     define_name Robert Mathias Marmorstein (robertm)
 
 feed 15m http://mbroadst.blogspot.com/atom.xml
     define_name Matt Broadstone
 
 feed 15m http://www.thelins.se/johan/blog/feed/
     define_name Johan Thelin
 
 feed 15m http://kwwii.blogspot.com/feeds/posts/default/-/KDE
     define_name Kenneth Wimer (kwwii)
 
 feed 15m http://llunak.blogspot.com/feeds/posts/default/-/kde
     define_name Luboš Luňák (llunak)
 
 feed 15m https://blogs.kde.org/blog/952/feed
     define_name Martin Konold (Mortimer)
 
 feed 15m http://ingwa2.blogspot.com/atom.xml
     define_name Inge Wallin (ingwa)
 
 feed 15m http://moji-shahi.blogspot.com/atom.xml
     define_name Mojtaba Shahi Senobari (moji)
 
 feed 15m http://calligra-author-outliner.blogspot.ru/atom.xml
     define_name Denis Kuplyakov (denerkup)
 
 feed 15m https://blogs.kde.org/blog/1397/feed
     define_name Jesper K. Pedersen (blackie)
     define_face hackergotchi/blackie.png
     define_facewidth 80
     define_faceheight 53
 
 feed 15m https://blogs.kde.org/blog/551/feed
     define_name Torsten Rahn (tackat)
 
 feed 15m http://fredrikh.blogspot.com/atom.xml
     define_name Fredrik Höglund
 
 feed 15m http://blog.cberger.net/category/open-source/feed/?mrss=off
     define_name Cyrille Berger
     define_face hackergotchi/cberger.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://clarencedang.blogspot.com/atom.xml
     define_name Clarence Dang
 
 feed 15m http://blog.vladimirprus.com/feeds/posts/default/-/kde
     define_name Vladimir Prus
 
 feed 15m https://agateau.com/tags/pko/feed
     define_name Aurelien Gateau
 
 feed 15m http://delftblueramblings.blogspot.com/atom.xml
     define_name Sander Koning
 
 feed 15m http://jefferai.org/atom.xml
     define_name Jeff Mitchell (jefferai)
 
 feed 15m https://blogs.kde.org/blog/1813/feed
     define_name Mirko Boehm (miroslav)
 
 feed 15m https://blogs.kde.org/blog/326/feed
     define_name David Faure (dfaure)
 
 feed 15m https://blogs.kde.org/blog/1236/feed
     define_name C. Boemann (boemann)
 
 feed 15m https://englich.wordpress.com/feed/?mrss=off
     define_name Frans Englich (FransE)
 
 feed 15m https://frinring.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Friedrich Kossebau (frinring)
     define_face hackergotchi/frinring.png
     define_facewidth 64
     define_faceheight 64
 
 feed 15m https://kate-editor.org/author/haumann/feed/
     define_name Dominik Haumann
     define_face hackergotchi/dhaumann.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/477/feed
     define_name Sebastian Sauer (dipesh)
 
 feed 15m https://blogs.kde.org/blog/1471/feed
     define_name Bart Coppens (BCoppens)
 
 feed 15m https://chani.wordpress.com/category/planet/feed/?mrss=off&category_name=planet
     define_name Chani Armitage (Chani)
 
 feed 15m https://blogs.kde.org/blog/56/feed
     define_name Hamish Rodda (blackarrow)
 
 feed 15m https://www.vandenoever.info/index.atom
     define_name Jos van den Oever (vandenoever)
     define_face hackergotchi/vandenoever.png
     define_facewidth 80
     define_faceheight 57
 
 feed 15m http://kemistry-desktop.blogspot.com/atom.xml
     define_name Egon Willighagen
 
 feed 15m https://blog.bisect.de/feeds/posts/default?alt=atom
     define_name Danny Kukawka
 
 feed 15m http://transloid.blogspot.com/feeds/posts/default
     define_name Eva Brucherseifer
 
 feed 15m http://maxilys.blogspot.com/rss.xml
     define_name Remi Villatel
 
 feed 15m https://wadejolson.wordpress.com/feed/?mrss=off
     define_name Wade Olson
 
 feed 15m http://kdemonkey.blogspot.com/feeds/posts/default
     define_name Robert Knight
 
 feed 15m https://cukic.co/feeds/tag-planetkde.xml
     define_name Ivan Čukić (ivan)
     define_face hackergotchi/ivan.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://ksvladimir.blogspot.com/atom.xml
     define_name Vladimir Kuznetsov
 
 feed 15m http://jarlesdraw-log.blogspot.com/atom.xml
     define_name Jarle Akselsen
 
 feed 15m http://blog.jospoortvliet.com/feeds/posts/default/-/kde/?alt=rss
     define_name Jos Poortvliet
     define_face hackergotchi/jospoortvliet.png
     define_facewidth 65
     define_faceheight 80
 
 feed 15m http://commonideas.blogspot.com/feeds/posts/default/-/KDE
     define_name Bart Cerneels (Stecchino)
 
 feed 15m https://ervin.ipsquad.net/atom.xml
     define_name Kevin Ottens (ervin)
 
 feed 15m https://zanshin.kde.org/atom.xml
     define_name Zanshin Announcements
     define_feedclass news
 
 feed 15m http://www.proli.net/feed/
     define_name Aleix Pol (apol)
 
 feed 15m https://cryos.net/categories/kde/index.xml
     define_name Marcus Hanwell (cryos)
 
 feed 15m https://ksounds.wordpress.com/feed/?mrss=off
     define_name Martyn Circus
 
 feed 15m http://rivolaks.blogspot.com/feeds/posts/default
     define_name Rivo Laks
 
 feed 15m https://jaham.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Jan Hambrecht (jaham)
 
 feed 15m http://domseichter.blogspot.com/feeds/posts/default
     define_name Dominik Seichter
 
 feed 15m http://chehrlic.blogspot.com/rss.xml
     define_name Christian Ehrlicher
 
 feed 15m http://neksa.blogspot.com/rss.xml
     define_name Alexandr Goncearenco
 
 feed 15m https://apaku.wordpress.com/feed/?mrss=off
     define_name Andreas Pakulat
 
 feed 15m https://apachelog.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Harald Sitter (apachelogger)
     define_face hackergotchi/apachelogger.jpg
 
 feed 15m https://myrizio.wordpress.com/feed/?mrss=off
     define_name Maurizio Monge
 
 feed 15m https://meson10.wordpress.com/feed/?mrss=off
     define_name Piyush Verma
 
 feed 15m https://darktears.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Alexis Menard (darktears)
     define_face hackergotchi/alexis-menard.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://amachu.wordpress.com/feed/?mrss=off&category_name=kde
     define_name Sri Ramadoss M (amachu)
 
 feed 15m https://kdedmiller.wordpress.com/feed/?mrss=off
     define_name David Miller
 
 feed 15m http://blog.hartwork.org/?feed=rss2&cat=23
     define_name Sebastian Pipping (sping)
 
 feed 15m http://jpwhiting.blogspot.com/feeds/posts/default/-/kde
     define_name Jeremy Whiting (jpwhiting)
     define_face hackergotchi/jpwhiting.jpg
     define_facewidth 80
 
 feed 15m http://simon-listens.blogspot.com/rss.xml
     define_name Peter Grasch
     define_face hackergotchi/pgrasch.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://grasch.net/node/category/kde/feed
     define_name Peter Grasch
     define_face hackergotchi/pgrasch.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/4267/feed
     define_name Shawn Starr (spstarr)
     define_face hackergotchi/spstarr.png
     define_facewidth 59
     define_faceheight 85
 
 feed 15m https://blogs.kde.org/blog/4326/feed
     define_name Frederik Gladhorn (fregl)
 
 feed 45m https://blogs.fsfe.org/gladhorn/category/kde/feed/
     define_name Frederik Gladhorn (fregl)
     define_face hackergotchi/frederik_gladhorn.jpeg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://psychobrain.blogspot.com/rss.xml
     define_name Andreas Ramm (psychobrain)
 
 feed 15m https://randomguy3.wordpress.com/tag/kde/feed/?mrss=off
     define_name Alex Merry
     define_face hackergotchi/randomguy3.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://www.livejournal.com/users/pradeepto/data/rss
     define_name Pradeepto Bhattacharya
 
 feed 15m http://blog.lydiapintscher.de/category/PlanetKDE/feed/
     define_name Lydia Pintscher (Nightrose)
     define_face hackergotchi/nightrose.png
     define_facewidth 78
     define_faceheight 76
 
 feed 15m http://feeds.feedburner.com/slashrosha/en/kde
     define_name Roozbeh Shafiee
     define_face hackergotchi/roozbeh.jpeg
     define_facewidth 96
     define_faceheight 96
 
 feed 15m http://elcuco2.blogspot.com/feeds/posts/default
     define_name Diego Iastrubni
 
 feed 15m http://www.moiji-mobile.com/tag/kde/feed/
     define_name Holger Freyther (zecke)
 
 feed 15m http://fboudra.free.fr/wordpress/wp-rss2.php?cat=6
     define_name Fathi Boudra (fabo)
     define_face hackergotchi/fabo.png
     define_facewidth 60
     define_faceheight 80
 
 feed 15m https://pusling.com/blog/?feed=rss2&cat=4
     define_name Sune Vuorela (svuorela)
     define_face hackergotchi/svuorela.png
     define_facewidth 72
     define_faceheight 100
 
 feed 15m https://zwabel.wordpress.com/feed/?mrss=off
     define_name David Nolden
 
 feed 15m http://jkt.flaska.net/blog/tags/kde/kde.rss
     define_name Jan Kundrát (jkt)
 
 feed 15m https://boom1992.wordpress.com/feed/?mrss=off
     define_name Lukas Appelhans
 
 feed 15m http://yarpen.cz/rants/?feed=rss2
     define_name Petr Vanek
 
 feed 15m https://dimsuz.wordpress.com/feed/?mrss=off
     define_name Dmitry Suzdalev (dimsuz)
 
 feed 15m http://rbitanga.blogspot.com/rss.xml
     define_name Ryan Bitanga
 
 feed 15m http://vladcodrea.blogspot.com/rss.xml
     define_name Vlad Codrea
 
 feed 15m http://der-dakon.net/blog/kde.xml
     define_name Rolf Eike Beer (Dakon)
 
 feed 15m http://carloslicea.blogspot.com/feeds/posts/default/-/planetkde
     define_name Carlos Licea
 
 feed 15m http://saroengels.blogspot.com/feeds/posts/default
     define_name Patrick Spendrin (SaroEngels)
 
 feed 15m http://feeds.feedburner.com/LamersCorner
     define_name Bartosz Wadolowski
 
 feed 15m http://feeds.feedburner.com/nixternal-kde
     define_name Richard Johnson (nixternal)
     define_face hackergotchi/nixternal.png
     define_facewidth 58
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/2904/feed
     define_name Sebastian Trueg
 
 feed 15m http://notmart.org/blog/tag/kde/feed/
     define_name Marco Martin (notmart)
     define_face hackergotchi/notmart.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://grundleborg.wordpress.com/feed/?mrss=off&category_name=kde
     define_name George Goldberg (grundleborg)
 
 feed 15m http://ppenz.blogspot.com/feeds/posts/default/-/KDE
     define_name Peter Penz
     define_face hackergotchi/ppenz.png
     define_facewidth 64
     define_faceheight 64
 
 feed 15m http://paul-pach.blogspot.com/rss.xml
     define_name Paul Pacheco (paulpach)
 
 feed 15m https://blauzahl.livejournal.com/data/rss?tag=kde
     define_name A. L. Spehr (blauzahl)
     define_face hackergotchi/zahl.png
     define_facewidth 58
     define_faceheight 80
 
 #feed 15m http://www.gnuton.org/blog/category/myprojects/kde-dev/feed/atom/
 #    define_name Antonio Aloisio
 
 feed 15m https://arindamghosh.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Arindam Ghosh
 
 feed 15m https://pindablog.wordpress.com/feed/?mrss=off
     define_name Rob Scheepmaker (pinda)
 
 feed 15m https://edulix.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Eduardo Robles Elvira (Edulix)
 
 feed 15m http://untangled.biz/category/kde/feed/
     define_name Alexandra Leisse (troubalex)
 
 feed 15m https://kate-editor.org/author/Erlend/feed/
     define_name Erlend Hamberg
     define_face hackergotchi/ehamberg.png
     define_facewidth 80
     define_faceheight 82
 
 feed 15m https://vtokarev.wordpress.com/feed/?mrss=off
     define_name Vyacheslav Tokarev (vtokarev)
 
 feed 15m https://blogs.kde.org/blog/2892/feed
     define_name Marijn Kruisselbrink
 
 feed 15m https://metelliuscode.wordpress.com/feed/?mrss=off
     define_name Harald Hvaal (metellius)
 
 feed 15m http://alediaferia.blogspot.com/feeds/posts/default
     define_name Alessandro Diaferia (alediaferia)
 
 feed 15m http://ssj-gz.blogspot.com/feeds/posts/default
     define_name Simon St James (SSJ_GZ)
 
 feed 15m http://nienhueser.de/blog/?cat=3&feed=rss2
     define_name Dennis Nienhüser (Earthwings)
     define_face hackergotchi/nienhueser.png
     define_facewidth 72
     define_faceheight 89
 
 feed 15m http://kopophex.blogspot.com/feeds/posts/default
     define_name Daniel Jones
 
 feed 15m http://teom.org/feed/?mrss=off&category_name=kde
     define_name Teo Mrnjavac (teo-)
     define_face hackergotchi/teo.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://awainzin-foss.blogspot.com/feeds/posts/default/-/KDE?alt=rss
     define_name Alejandro Wainzinger (xevix)
 
 feed 15m http://www.elpauer.org/category/kde/feed/
     define_name Pau Garcia i Quiles (pgquiles)
     define_face hackergotchi/pgquiles.png
     define_facewidth 65
     define_faceheight 82
 
 feed 15m http://fmontesi.blogspot.com/feeds/posts/default/-/kde
     define_name Fabrizio Montesi (fmontesi)
     define_face hackergotchi/fmontesi.png
     define_facewidth 64
     define_faceheight 80
 
 feed 15m https://karlitschek.de/category/kde/feed/
     define_name Frank Karlitschek (karli)
     define_face hackergotchi/karli.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://majewsky.wordpress.com/feed/?mrss=off
     define_name Stefan Majewsky (majewsky)
     define_face hackergotchi/majewsky.png
     define_facewidth 59
     define_faceheight 80
 
 feed 15m http://michael-jansen.name/feeds/all.atom.xml
     define_name Michael Jansen
 
 # Here's my old one. Keeping it just in case.
 feed 15m https://drfav.wordpress.com/tag/kde/feed/?mrss=off&tag=kde
     define_name Dario Freddi (drf__)
     define_face hackergotchi/drf.png
     define_facewidth 80
     define_faceheight 76
 
 feed 15m http://blog.martin-graesslin.com/blog/kategorien/kde/planetkde/feed/
     define_name Martin Gräßlin
 
 feed 15m https://blogs.kde.org/blog/6425/feed
     define_name Germain Garand
 
 feed 15m http://shaforostoff.blogspot.com/atom.xml
     define_name Nick Shaforostoff (shaforostoff)
     define_face hackergotchi/shaforostoff.png
     define_facewidth 65
     define_faceheight 80
 
 feed 15m http://lydgate.org/blogs/tag/kde/feed/
     define_name Anne Wilson (annew)
     define_face hackergotchi/annew.png
     define_facewidth 79
     define_faceheight 79
 
 feed 15m https://kstars.wordpress.com/feed/?mrss=off&category_name=gnulinuxfoss%2Fkde%2Fplanetkde-kde-gnulinuxfoss
     define_name Akarsh Simha (kstar)
     define_face hackergotchi/asimha.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://tejasd.livejournal.com/data/rss?tag=kde
     define_name Tejas Dinkar (gja)
     define_face hackergotchi/dinkar.png
     define_facewidth 63
     define_faceheight 80
 
 feed 15m https://xvello.wordpress.com/tag/kde/feed/?mrss=off&tag=kde
     define_name Xavier Vello (xvello)
 
 feed 15m https://saschpe.wordpress.com/category/opensource/kde/feed/?mrss=off&category_name=opensource%2Fkde
     define_name Sascha Peilicke (saschpe)
     define_face hackergotchi/saschpe.png
     define_facewidth 67
     define_faceheight 80
 
 feed 15m http://www.eivanov.com/feeds/posts/default/-/planetkde
     define_name Evgeniy Ivanov (powerfox/pfx)
 
 feed 15m http://shield008.blogspot.com/feeds/posts/default/-/KDE
     define_name John-Paul Stanford (jp)
 
 feed 15m http://cazou.blogspot.com/feeds/posts/default/-/kde
     define_name Detlev Casanova (Cazou)
 
 feed 15m http://borntobeopen.blogspot.com/feeds/posts/default/-/KDE
     define_name Jaroslav Řezník (jreznik)
     define_face hackergotchi/rezza.png
     define_facewidth 60
     define_faceheight 80
 
 feed 15m https://dragotin.wordpress.com/feed/?mrss=off
     define_name Klaas Freitag (dragotin)
     define_face hackergotchi/freitag75.png
     define_facewidth 75
     define_faceheight 75
 
 feed 15m https://amarok.kde.org/en/blog/7/feed
     define_name Daniel Meltzer (hydrogen)
 
 feed 15m http://rdieter.blogspot.com/feeds/posts/default/-/kde
     define_name Rex Dieter (rdieter)
     define_face hackergotchi/rdieter.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://lukast.mediablog.sk/log/?feed=rss2
     define_name Lukas Tvrdy (lukast)
 
 feed 15m https://slangkamp.wordpress.com/feed/?mrss=off
     define_name Sven Langkamp (slangkamp)
 
 feed 15m https://www.dennogumi.org/category/kde/feed/atom.xml
     define_name Luca Beltrame (einar77)
 
 feed 15m http://blog.neverendingo.de/?feed=rss2&cat=4
     define_name Ingo Malchow (neverendingo)
 
 feed 15m https://adjamblog.wordpress.com/category/international/feed/?mrss=off&category_name=international
     define_name Andrea Diamantini (adjam)
     define_face hackergotchi/adjam.png
     define_facewidth 46
     define_faceheight 48
 
 feed 15m http://amroth.coldshock.net/kmess/blog/feed/
     define_name Valerio Pilo (Amroth)
     define_face hackergotchi/valerio-pilo.jpg
     define_facewidth 67
     define_faceheight 80
 
 feed 15m https://kdepepo.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Christoph Feck (kdepepo)
     define_face hackergotchi/cfeck.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://trueg.wordpress.com/feed/?mrss=off
     define_name Sebastian Trueg (trueg)
     define_face hackergotchi/trueg.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://milianw.de/tag/kde/feed
     define_name Milian Wolff (milianw)
     define_face hackergotchi/mwolff.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://qiacat.blogspot.com/feeds/posts/default/-/planetKDE
     define_name Wang Hoi (wkai)
     define_face hackergotchi/wkai.jpeg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://joselb.blogspot.com/rss.xml
     define_name Johannes Bergmeier (joselb)
     define_face hackergotchi/joselb.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://mauroiazzi.blogspot.com/feeds/posts/default/-/KDE
     define_name Mauro Iazzi (iazzi)
 
 feed 15m http://zrchrn.blogspot.com/feeds/posts/default
     define_name Ahmed Ghonim
     define_face hackergotchi/ahmed-ghonim.png
     define_facewidth 80
     define_faceheight 76
 
 feed 15m https://kashthealien.wordpress.com/tag/kde/feed/?mrss=off&tag=kde
     define_name Kashyap Puranik (kashthealien)
     define_face hackergotchi/kash.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://jontheechidna.wordpress.com/feed/?mrss=off&category_name=kde
     define_name Jonathan Thomas (JontheEchidna)
     define_face hackergotchi/echidnaman.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://steveire.wordpress.com/feed/?mrss=off
     define_name Stephen Kelly (steveire)
 
 feed 15m http://ungethym.blogspot.com/feeds/posts/default/-/planetkde
     define_name Thomas Thym (ungethym)
     define_face hackergotchi/thomas-thum.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://sandroandrade.org/tag/planet-kde/rss/
     define_name Sandro Andrade (sandroandrade)
     define_face hackergotchi/sandroandrade.png
     define_facewidth 80 define_faceheight 80
 
 feed 15m https://mahfuz062.wordpress.com/feed/?mrss=off
     define_name Mahfuz062
     define_face hackergotchi/mahfuz.png
     define_facewidth 80 define_faceheight 80
 
 feed 15m https://gkiagia.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name George Kiagiadakis (gkiagia)
 
 feed 15m https://blogs.kde.org/blog/6843/feed
     define_name Bastian Holst (bholst)
 
 feed 15m https://praksh.wordpress.com/category/kde/gsoc/feed/?mrss=off&category_name=kde%2Fgsoc
     define_name Prakash Mohan (praksh)
     define_face hackergotchi/prakash.png
     define_facewidth 70
     define_faceheight 80
 
 feed 15m http://algebraicallyclosed.blogspot.com/feeds/posts/default
     define_name Jeremias Epperlein
 
 feed 15m http://rubots.blogspot.com/atom.xml
     define_name Jordi Polo (jordl)
     define_face hackergotchi/jordipolo.png
     define_facewidth 60
     define_faceheight 80
 
 feed 15m https://martinsandsmark.wordpress.com/feed/?mrss=off
     define_name Martin Sandsmark (sandsmark)
     define_face hackergotchi/sandsmark.png
     define_facewidth 63
     define_faceheight 80
 
 feed 15m https://thomasmcguire.wordpress.com/feed/?mrss=off
     define_name Thomas McGuire
 
 feed 15m http://dimula73.blogspot.com/feeds/posts/default/-/KDE
     define_name Dmitry Kazakov (dmitryK)
 
 feed 15m http://zekecoma.blogspot.com/feeds/posts/default/-/kde
     define_name Keith Rusler (comawhite)
 
 feed 15m http://realate.blogspot.com/feeds/posts/default
     define_name Andrew Manson ( mansona aka real_ate )
     define_face hackergotchi/mansona.png
     define_facewidth 80
     define_faceheight 83
 
 feed 15m https://mat69.wordpress.com/feed/?mrss=off
     define_name Matthias Fuchs (mat69)
 
 feed 15m http://www.arnorehn.de/blog/feed/
     define_name Arno Rehn (pumphaus)
 
 feed 15m https://blogs.kde.org/blog/7020/feed
     define_name Ramon Zarazua (_killerfox_)
 
 feed 15m https://blog.hanschen.org/category/planetkde/feed/?mrss=off&category_name=planetkde
     define_name Hans Chen (Mogger)
 
 feed 15m https://ascending.wordpress.com/feed/?mrss=off&tag=planetkde
     define_name Constantin Berzan (exit)
 
 feed 15m http://blog.cryptomilk.org/category/kde/feed/
     define_name Andreas Schneider (gladiac)
     define_face hackergotchi/anschneider.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://momeny.wordpress.com/category/planetkde/feed/?mrss=off&category_name=planetkde
     define_name Mehrdad Momeny (mtux)
     define_face hackergotchi/momeny.png
     define_facewidth 68
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/10441/feed
     define_name Mario Fux (unormal)
 
 feed 15m https://hobbyblobby.wordpress.com/category/planet/feed/?mrss=off&category_name=planet
     define_name Felix Lemke (HobbyBlobby)
 
 feed 15m http://zajec.net/blog/atom/kde
     define_name Rafał Miłecki (Zajec)
     define_face hackergotchi/zajec.png
     define_facewidth 77
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/7193/feed
     define_name Tony Murray (murrant)
     define_face hackergotchi/murrant.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://savago.wordpress.com/feed/?mrss=off
     define_name Adenilson Cavalcanti (Savago)
     define_face hackergotchi/adenilson-cavalcanti.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://ontheoutsidedesign.blogspot.com/feeds/posts/default/-/KDE
     define_name Andrew Lake
     define_face hackergotchi/jamboarder.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://blog.aliensoft.net/feeds/posts/default/-/planetkde
     define_name Alan Alvarez (clsk)
     define_face hackergotchi/alan-alvarez.png
     define_facewidth 75
     define_faceheight 75
 
 feed 15m http://www.nikosams.net/blog/categories/3_kde/list:feed
     define_name Niko Sams (nsams)
 
 feed 15m https://dantti.wordpress.com/feed/?mrss=off
     define_name Daniel Nicoletti (dantti)
     define_face hackergotchi/dantti.png
     define_facewidth 96
     define_faceheight 96
 
 feed 15m http://www.asinen.org/feed/
     define_name Stuart Jarvis
     define_face hackergotchi/stuart-jarvis.png
     define_facewidth 67
     define_faceheight 80
 
 feed 15m https://arieder.wordpress.com/feed/?mrss=off
     define_name Alexander Rieder (arieder)
 
 feed 15m http://monkeyiq.blogspot.com/feeds/posts/default/-/kde
     define_name Ben Martin (monkeyiq)
 
 feed 15m https://vonami.wordpress.com/feed/?mrss=off
     define_name Dmitry Ivanov (vonami)
 
 feed 15m https://blogs.kde.org/blog/7305/feed
     define_name Raphael Kubo da Costa (rakuco)
     define_face hackergotchi/rakuco.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://feeds.feedburner.com/ThisWeekInKrita
     define_name Boudewijn Rempt's Krita blog
 
 feed 15m http://roideuniverse.blogspot.com/feeds/posts/default/-/kde
     define_name Kaushik Saurabh (roide)
 
 feed 15m https://michalm.wordpress.com/tag/kde/feed/?mrss=off&tag=kde
     define_name Michał Małek (mmalek)
 
 feed 15m https://darioandreskde.wordpress.com/feed/?mrss=off
     define_name Dario Andres Rodriguez (Dario_Andres)
     define_face hackergotchi/darioandresr.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://midi-clorianos.blogspot.com/feeds/posts/default/-/KDE
     define_name Pedro Lopez-Cabanillas
     define_face hackergotchi/pedrol.png
     define_facewidth 57
     define_faceheight 80
 
 feed 15m http://stephanie.randomink.org/tag/kde/feed/
     define_name Stephanie Das Gupta (stephdg)
     define_face hackergotchi/stephanie.jpg
     define_faceheight 78
     define_facewidth 80
 
 feed 15m http://c2143.blogspot.com/feeds/posts/default/-/KDE
     define_name Romain Pokrzywka (kromain)
     define_face hackergotchi/kromain.jpg
     define_facewidth 70
     define_faceheight 80
 
 feed 15m http://feeds.feedburner.com/HadesBlagPlanetKDE
     define_name Edward Toroshchin (hades)
     define_face hackergotchi/hades.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://johnflux.blogspot.com/atom.xml
     define_name John Tapsell (JohnFlux)
     define_face hackergotchi/johnflux.png
     define_facewidth 63
     define_faceheight 80
 
 feed 15m https://kunalghosh.wordpress.com/tag/kde/feed/
     define_name kunal ghosh (kunalghosh)
     define_face hackergotchi/kunalghosh.png
     define_facewidth 62
     define_faceheight 80
 
 feed 15m http://owncloudtest.blogspot.com/feeds/posts/default
     define_name Aaron Reichman (areichman)
 
 feed 15m https://liveblue.wordpress.com/category/vitor-planetkde/feed/?mrss=off&category_name=vitor-planetkde
     define_name Vitor Boschi (Klanticus)
     define_face hackergotchi/vitor.png
     define_facewidth 80
     define_faceheight 77
 
 feed 15m http://linuxgrandma.blogspot.com/feeds/posts/default/-/KDE
     define_name Valorie Zimmerman (valorie)
     define_face hackergotchi/valorie.png
     define_facewidth 65
     define_faceheight 100
 
 feed 15m https://btux1984.wordpress.com/category/kde/feed/
     define_name Björn Ruberg (ruberg)
     define_face hackergotchi/ruberg.png
     define_facewidth 70
     define_faceheight 80
 
 feed 15m https://cibermundi.wordpress.com/category/planetkde-araceletorres/feed/
     define_name Aracele Torres (araceletorres)
     define_face hackergotchi/araceletorres.jpg
     define_facewidth 75
     define_faceheight 80
 
 feed 15m http://pedepinico.blogspot.com/feeds/posts/default/-/kde
     define_name Francisco Fernandes (chicao)
     define_face hackergotchi/chicao.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://kders.wordpress.com/category/planetkde-wagner/feed/?mrss=off&category_name=planetkde-wagner
     define_name Wagner Reck (wiglot)
     define_face hackergotchi/wagner.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://kders.wordpress.com/category/planetkde-camila/feed/?mrss=off&category_name=planetkde-camila
     define_name Camila Ayres (camilasan)
     define_face hackergotchi/camilaayres.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://blog.filipesaraiva.info/?tag=planetkde-english&feed=rss2
     define_name Filipe Saraiva (filipesaraiva)
     define_face hackergotchi/filipe_cabecinha.png
     define_facewidth 80
     define_faceheight 80
 
 feed 30m http://blog.filipesaraiva.info/?tag=planetkde-portugues&feed=rss2
     define_name Filipe Saraiva (filipesaraiva)
     define_face hackergotchi/filipe_cabecinha.png
     define_facewidth 80
     define_faceheight 80
     define_feedclass portuguese
 
 feed 15m https://scarpino.dev/feed.xml
     define_name Andrea Scarpino (ilpianista)
 
 feed 15m https://ronnyml.wordpress.com/category/planet-kde/feed/?mrss=off&category_name=planet-kde
     define_name Ronny Yabar (ronnyml)
     define_face hackergotchi/ronnyml.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://saidinesh5.wordpress.com/tag/kde-planet/feed/?mrss=off&tag=kde-planet
     define_name Dinesh (saidinesh5)
     define_face hackergotchi/saidinesh5.png
     define_facewidth 79
     define_faceheight 72
 
 feed 15m https://blog.shantanu.io/tag/kde/feed/
     define_name Shantanu Tushar (shantanu)
     define_face hackergotchi/shantanu.png
     define_facewidth 64
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/7735/feed
     define_name Harshit Jain (hjain)
     define_face hackergotchi/hjain.jpg
     define_facewidth 80
     define_faceheight 79
 
 feed 15m http://pauloromulo.blogspot.com/feeds/posts/default?alt=rss
     define_name Paulo Rômulo (promulo)
     define_face hackergotchi/promulo.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://siddharthgsoc.blogspot.com/feeds/posts/default?alt=rss
     define_name Siddharth Srivastava (akssps011)
     define_face hackergotchi/akssps011.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://lamarque-lvs.blogspot.com/feeds/posts/default/-/kde
     define_name Lamarque Souza (lamarque or lvsouza)
     define_face hackergotchi/lamarque.png
     define_facewidth 74
     define_faceheight 80
 
 feed 15m http://acetonik.blogspot.com/feeds/posts/default/-/KDE
     define_name Peter Schiffer (aceton)
 
 feed 15m http://celarek.at/category/kde/feed/
     define_name Adam Celarek (adamce)
     define_face hackergotchi/adamc.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://tittiatcoke.wordpress.com/category/kde-2/feed/?mrss=off&category_name=kde-2
     define_name Raymond Wooninck (tittiatcoke)
     define_face hackergotchi/tittiatcoke.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://kdeatopensuse.wordpress.com/feed/?mrss=off&category_name=kde
     define_name Sven Burmeister (rabauke)
 
 feed 15m http://feeds.feedburner.com/andreas-demmer/kde
     define_name Andreas Demmer (ademmer)
     define_face hackergotchi/ademmer.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://polentino911.wordpress.com/tag/planetkde/feed/?mrss=off&tag=planetkde
     define_name Diego Casella ([Po]lentino)
     define_face hackergotchi/polentino.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://hugo-kde.blogspot.com/rss.xml
     define_name Hugo Pereira Da Costa
     define_face hackergotchi/hugo.png
     define_facewidth 80
     define_faceheight 80
 
 
 feed 15m https://siddharthkde.wordpress.com/feed/?mrss=off
     define_name Siddharth Sharma (siddvicious)
     define_face hackergotchi/siddharth.jpg
     define_facewidth 57
     define_faceheight 73
 
 feed 15m http://mageia.nicolaslecureuil.fr/category/kde-en/feed/
     define_name Nicolas Lécureuil (neoclust)
 
 feed 15m https://blogs.kde.org/blog/7783/feed
     define_name Marc Pegon (mpeg)
 
 feed 15m https://morice.ipsquad.net/blog/?cat=3&feed=rss2
     define_name Jean-Nicolas Artaud (morice-net)
     define_face hackergotchi/morice.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://bergie.iki.fi/blog/category/kde/rss.xml
     define_name Henri Bergius (bergie)
     define_face hackergotchi/bergie.png
     define_facewidth 101
     define_faceheight 103
 
 feed 15m https://blogs.kde.org/blog/7855/feed
     define_name Adam Rakowski (foo-script/efes)
     define_face hackergotchi/adamrakowski.png
     define_facewidth 79
     define_faceheight 79
 
 feed 15m https://marcmutz.wordpress.com/tag/planetkde/feed/?mrss=off&tag=planetkde
     define_name Marc Mutz
     define_face hackergotchi/effqt-bird.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://not403.blogspot.com/feeds/posts/default/-/kde
     define_name Juan Luis Baptiste (Maeztro)
     define_face hackergotchi/jbaptiste.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://dev-peterix.blogspot.com/feeds/posts/default/-/kde
     define_name Petr Mrázek (petrm)
     define_face hackergotchi/petrm.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://dot.kde.org/rss.xml
     define_name KDE Dot News
     define_feedclass dot
     define_face hackergotchi/dot-news.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://krita.org/en/feed/
     define_name Krita News
     define_feedclass news
     define_face hackergotchi/krita.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://toscalix.com/feed/
     define_name Agustín Benito Bethencourt (toscalix)
 
 feed 15m http://www.kdeblog.com/feed
     define_name KDE Blog - Baltasar Ortega
     define_feedclass spanish
     define_face hackergotchi/kdeblog.png
     define_facewidth 80
     define_faceheight 19
 
 feed 15m http://midi-clorianos.blogspot.com/feeds/posts/default/-/KDE-ES
     define_name Pedro López-Cabanillas
     define_feedclass spanish
 
 feed 15m https://arklad.wordpress.com/category/informatica/software-libre/kde/feed/
     define_name Cristina Yenyxe González García
     define_feedclass spanish
 
 feed 15m http://tsdgeos-es.blogspot.com/atom.xml
     define_name Albert Astals Cid (TSDgeos)
     define_face hackergotchi/TSDgeos.png
     define_facewidth 80
     define_faceheight 80
     define_feedclass spanish
 
 feed 15m https://kubuntu.org/news/feed
     define_name Kubuntu News
     define_feedclass news
     define_face hackergotchi/kubuntu-logo.png
     define_facewidth 100
     define_faceheight 20
 
 feed 15m http://freoffice.blogspot.com/feeds/posts/default
     define_name Freoffice: KOffice based Open Mobile Office Suite
     define_feedclass news
 
 feed 15m http://thehayro.blogspot.com/feeds/posts/default/-/kde
     define_name Hayri Bakici (thehayro)
 
 feed 15m https://mbatle.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Mateu Batle (mbatle)
     define_face hackergotchi/mbatle.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://codersgrumble.blogspot.com/feeds/posts/default/-/kde
     define_name Andriy Rysin (rysin)
     define_face hackergotchi/rysin.png
     define_facewidth 74
     define_faceheight 74
 
 feed 15m https://shentey.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Bernhard Beschow (shentey)
 
 feed 15m https://sciencekde.wordpress.com/tag/kde/feed/?mrss=off&tag=kde
     define_name Matteo Agostinelli (agostinelli)
 
 feed 15m http://k-de-leag.blogspot.com/feeds/posts/default?alt=rss
     define_name Gaël de Chalendar (kleag)
     define_face hackergotchi/kleag.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://blog.davidedmundson.co.uk/blog/category/kde/feed/
     define_name David Edmundson (d_ed)
     define_face hackergotchi/d_ed.png
     define_facewidth 64
     define_faceheight 80
 
 feed 15m http://www.javierllorente.com/category/english/feed/
     define_name Javier Llorente
 
 feed 15m https://mrybczynska.wordpress.com/category/english/feed/?mrss=off&category_name=english
     define_name Marta Rybczyńska
     define_feedclass polish
 
 feed 15m http://bcooksley.blogspot.com/feeds/posts/default
     define_name Ben Cooksley (bcooksley)
 
 feed 15m https://kders.wordpress.com/category/planetkde-pt-wagner/feed/
     define_name Wagner Reck (wiglot)
     define_face hackergotchi/wagner.png
     define_facewidth 80
     define_faceheight 80
     define_feedclass portuguese
 
 feed 15m https://martys.typepad.com/blog/atom.xml
     define_name Martin Klapetek (mck182)
     define_face hackergotchi/mck182.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://www.calligra.org/blogs/thorstenzachmann/feed/
     define_name Thorsten Zachmann
 
 feed 15m https://ksmanis.wordpress.com/feed/?mrss=off&category_name=planet-kde
     define_name Konstantinos Smanis (ksmanis)
 
 feed 15m https://cgbdx.wordpress.com/feed/?mrss=off
     define_name Christophe Giboudeaux (krop)
 
 feed 15m https://jonanp.wordpress.com/feed/
     define_name Jon Ander Peñalba (jonan)
     define_face hackergotchi/jonan.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://sri13atkritadevel.wordpress.com/feed/?mrss=off
     define_name Srikanth Tiyyagura
 
 feed 15m https://sinny.io/tag/kde/feed/
     define_name Sinny Kumari (ksinny)
     define_face hackergotchi/sinny.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://feeds.feedburner.com/kdeLucasRefuge
     define_name Lucas Lira Gomes (MaskMaster)
     define_face hackergotchi/lucasliragomes.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://pranavrc.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Pranav Ravichandran (Pranav_rcmas)
 
 feed 15m http://gnumdk.blogspot.com/atom.xml
     define_name Cédric Bellegarde (gnumdk)
     define_face hackergotchi/gnumdk.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://rkulaga.wordpress.com/feed/?mrss=off&category_name=PlanetKDE
     define_name Rafał Kułaga (rkulaga)
     define_face hackergotchi/rkulaga.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://rockfordsone.blogspot.com/feeds/posts/default
     define_name Radoslaw Wicik (rockford_)
 
 feed 15m https://thebengaliheart.wordpress.com/feed/?mrss=off&tag=KDE
     define_name Tirtha Chatterjee (wyuka)
     define_face hackergotchi/wyuka.png
     define_facewidth 79
     define_faceheight 80
 
 feed 15m http://lukaslt.blogspot.com/feeds/posts/default
     define_name Lukas Dzikaras (LukasLt2)
 
 feed 15m https://blogs.kde.org/blog/8251/feed
     define_name Sergio Martins (sergio)
     define_face hackergotchi/sergio.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://quintasan.blogspot.com/feeds/posts/default/-/kde-planet
     define_name Michał Zając (Quintasan)
 
 feed 15m https://cmollekopf.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Christian Mollekopf (cmollekopf)
 
 feed 15m http://codecereal.blogspot.com/feeds/posts/default/-/kde
     define_name Daker (dakerfp)
 
 feed 15m http://stefan.derkits.at/blog/category/opensource/feed/
     define_name Stefan Derkits (HorusHorrendus)
     define_face hackergotchi/horrendus.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://nwoki.wordpress.com/feed/?category_name=kde
     define_name Francesco Nwokeka (nwoki)
     define_face hackergotchi/nwoki.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://paulm-byte.blogspot.com/feeds/posts/default
     define_name Paul Mendez (paul_m)
 
 feed 15m https://cordlandwehr.wordpress.com/feed/?mrss=off&tag=kde
     define_name Andreas Cord-Landwehr (CoLa)
 
 feed 15m https://samxan.wordpress.com/tag/kde/feed/?mrss=off&tag=kde
     define_name Samikshan Bairagya (samxan)
 
 feed 15m https://kdenlive.org/en/category/news/feed/
     define_name Kdenlive
     define_face hackergotchi/kdenlive.png
     define_facewidth 100
     define_faceheight 75
 
 feed 15m https://laxstrom.name/blag/category/kde/feed/
     define_name Niklas Laxström (Nikerabbit)
 
 feed 15m http://lpapp.blogspot.com/feeds/posts/default/-/KDE
     define_name Laszlo Papp (lpapp)
     define_face hackergotchi/laszlo_papp-80x80.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://who828.wordpress.com/category/planet-kde/feed/?mrss=off
     define_name Smit Shah
 
 feed 15m https://clauschr.wordpress.com/feed/?mrss=off
     define_name Claus Christensen (Claus_chr)
     define_face hackergotchi/clauschr.png
     define_facewidth 80
     define_faceheight 78
 
 feed 15m https://kyofel.wordpress.com/category/KDE/feed/?mrss=off
     define_name Philip Muškovac (yofel)
 
 feed 15m https://www.dvratil.cz/tag/kde/feed/
     define_name Daniel Vrátil (dvratil)
     define_face hackergotchi/dvratil.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://kshadeslayer.wordpress.com/category/KDE/feed/?mrss=off
     define_name Rohan Garg (shadeslayer)
     define_face hackergotchi/rohan.png
     define_facewidth 80
     define_faceheight 84
 
 feed 15m http://blog.svenbrauch.de/tag/planetkde/feed/
     define_name Sven Brauch
     define_face hackergotchi/scummos.png
     define_facewidth 80
     define_faceheight 78
 
 feed 15m http://swairshah.blogspot.com/feeds/posts/default
     define_name Swair Shah (swair)
 
 feed 15m https://fxrh.wordpress.com/category/kdeplanet/feed/?mrss=off
     define_name Felix Rohrbach (fxrh)
 
 feed 15m http://yuvrajtomar.blogspot.com/feeds/posts/default
     define_name Yuvraj Tomar (yuvrajtomar)
     define_face hackergotchi/yuvraj-tomar.jpg
     define_facewidth 80
     define_faceheight 90
 
 feed 15m https://contourproject.wordpress.com/feed/?mrss=off
     define_name Fania Jöck (fjoe)
     define_face hackergotchi/fania_jock.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://kmix5.wordpress.com/feed/?mrss=off
     define_name KMix - the KDE Multimedia Mixer
     define_face hackergotchi/kmix.png
     define_facewidth 64
     define_faceheight 64
     define_feedclass news
 
 feed 15m https://kate-editor.org/author/kuzmich/feed/
     define_name Svyatoslav Kuzmich
     define_face hackergotchi/Svyatoslav-Kuzmich.jpg
     define_facewidth 80
     define_faceheight 94
 
 feed 15m https://blogs.kde.org/blog/8457/feed/
     define_name Torgny Nyblom (tnyblom)
 
 feed 15m https://ljaskiewicz.wordpress.com/feed/?mrss=0ff&category_name=planetkde
     define_name Łukasz Jaśkiewicz (ljaskiewicz)
 
 feed 15m https://djarvie.wordpress.com/category/kde,planetkde/feed/?mrss=off
     define_name David Jarvie (djarvie)
 
 feed 15m http://sebastian-doerner.de/?cat=4&feed=rss2&mrss=off
     define_name Sebastian Dörner
 
 feed 15m http://blog.tenstral.net/category/planet/planetkde/feed
     define_name Matthias Klumpp (ximion)
     define_face hackergotchi/matthias_ximion.png
     define_facewidth 80
     define_faceheight 75
 
 feed 15m http://letsfollowthewhiterabbit.blogspot.com/feeds/posts/default
     define_name Luca Tringali (lucatringali)
     define_face hackergotchi/lucatringali.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://dilfridge.blogspot.com/feeds/posts/default/-/kde
     define_face hackergotchi/andreas-huettel.png
     define_facewidth 80
     define_faceheight 80
     define_name Andreas K. Hüttel (dilfridge)
 
 feed 15m http://fpuelz-kde.blogspot.com/feeds/posts/default
     define_name Friedrich Pülz (fkpulz)
     define_face hackergotchi/fkpulz.png
     define_facewidth 64
     define_faceheight 80
 
 feed 15m https://diggy128.wordpress.com/tag/kde/feed/
     define_name Dimitrios T. Tanis (diggy)
     define_face hackergotchi/dimitrios-tanis.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 24h http://blog.dmaggot.org/tag/kde/feed/
     define_name David E. Narváez (dMaggot)
     define_face hackergotchi/dMaggot.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://philipp.knechtges.com/?cat=3&feed=rss2
     define_name Philipp Knechtges (d1saster)
 
 feed 15m http://deepsky28.blogspot.com/feeds/posts/default?alt=rss
     define_name Florentina Musat (chrome)
 
 feed 15m https://konstantinidis.wordpress.com/category/kde/feed/
     define_name Giannis Konstantinidis (giannisk)
     define_face hackergotchi/giannis-konstantinidis.jpeg
     define_facewidth 76
     define_faceheight 80
 
 feed 15m https://terietor.wordpress.com/tag/planetkde/feed/
     define_name Giorgos Tsiapaliokas (terietor)
 
 feed 15m https://blogs.gentoo.org/johu/category/kde/feed/
     define_name Johannes Huber (johu)
     define_face hackergotchi/johannes-huber.jpg
     define_facewidth 60
     define_faceheight 68
 
 feed 15m https://blogs.kde.org/blog/8948/feed
     define_name Pierre Stirnweiss (PierreSt)
     define_face hackergotchi/pierre-stirnweiss.jpg
     define_facewidth 58
     define_faceheight 85
 
 feed 15m http://joerg-weblog.blogspot.com/feeds/posts/default/-/KDE
     define_name Jörg Ehrichs
     define_face hackergotchi/jehrichs.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://isemenov.blogspot.com/feeds/posts/default?alt=rss
     define_name Ignat Semenov (isemenov)
 
 feed 15m https://freininghaus.wordpress.com/category/kde/feed/?mrss=off
     define_name Frank Reininghaus
 
 feed 15m http://jgrulich.cz/category/kde/feed/
     define_name Jan Grulich (jgrulich)
 
 feed 15m http://playgfx.blogspot.com/feeds/posts/default/-/kdestuff
     define_name Claudio Desideri (snizzo)
 
 feed 15m https://boringtalk.wordpress.com/feed/
     define_name Arjun Basu (ultimatrix)
 
 feed 15m http://strohel.blogspot.com/feeds/posts/default/-/kde
     define_name Matěj Laitl (strohel)
     define_face hackergotchi/strohel.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://www.kdab.com/category/blogs/technical/feed/
     define_name KDAB on Qt
     define_feedclass news
     define_face hackergotchi/kdab.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://www.calligra.org/feed/
     define_name Calligra News
     define_feedclass news
     define_face hackergotchi/calligra.png
     define_facewidth 80
     define_faceheight 57
 
 feed 15m http://amanonit.blogspot.com/feeds/posts/default/-/kde?alt=rss
     define_name Amandeep Singh (amandeepsingh)
 
 feed 15m http://blog.rishab.in/feeds/kde.rss.xml
     define_name Rishab Arora (spacetime)
     define_face hackergotchi/rishab-arora.png
     define_facewidth 79
     define_faceheight 83
 
 feed 15m http://arthursribeiro.blogspot.com.br/feeds/posts/default/-/kde
     define_name Arthur Ribeiro (arthurribeiro)
     define_face hackergotchi/arthurribeiro.jpg
     define_facewidth 62
     define_faceheight 80
 
 feed 15m https://timotheegiet.com/blog/tag/kde/feed
     define_name Timothee Giet (Animtim)
     define_face hackergotchi/animtim.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://mkuettler.blogspot.com/feeds/posts/default/-/planetkde
     define_name Martin Küttler (mkuettler)
 
 feed 15m https://kokeroulis.wordpress.com/tag/planetkde/feed/
     define_name Antonis Tsiapaliokas (kokeroulis)
 
 feed 15m https://jsimon3.wordpress.com/category/kde/feed/
     define_name Joseph Simon (jsimon3)
     define_face hackergotchi/josephsimon.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://skeletdev.wordpress.com/category/kde/feed/
     define_name Casian-Valentin Andrei (skelet)
     define_face hackergotchi/skelet.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://jigarraisinghani.blogspot.com/feeds/posts/default/-/KDE?alt=rss
     define_name Jigar Raisinghani (jigar)
     define_face hackergotchi/jigar.jpg
     define_facewidth 57
     define_faceheight 80
 
 feed 15m https://shivaramanaiyer.wordpress.com/feed/
     define_name Shivaraman Aiyer (sraman)
     define_face hackergotchi/Shivaraman-Aiyer.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://utkuaydin.wordpress.com/category/kde-2/feed/
     define_name Utku Aydın (utku)
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://logofn.blogspot.com/feeds/posts/default
     define_name Roney Gomes (roney)
     define_face hackergotchi/RoneyGomes.jpg
     define_facewidth 80
     define_faceheight 64
 
 feed 15m https://cezarmocan.wordpress.com/feed/
     define_name Cezar Mocan (CezarMocan)
 
 feed 15m https://hashpling.wordpress.com/tag/planetkde/feed/?mrss=off&tag=planetkde
     define_name Anant Kamath (flak37)
 
 feed 15m http://knro.blogspot.com/feeds/posts/default/-/KDE
     define_name Jasem Mutlaq (KNRO)
     define_face hackergotchi/mutlaqja.png
     define_facewidth 65
     define_faceheight 78
 
 feed 15m http://erionism.blogspot.in/feeds/posts/default
     define_name Brijesh Patel (erione)
 
 feed 15m https://blog.sebasgo.net/tag/kde/rss/
     define_name Sebastian Gottfried (sebasgo)
 
 feed 15m https://behindkde.org/rss.xml
     define_name Behind KDE
     define_face hackergotchi/behindkde.png
     define_facewidth 43
     define_faceheight 43
 
 feed 15m http://marcuzzokde.blogspot.com/feeds/posts/default?alt=rss
     define_name Marco Calignano (marcuzzo)
     define_face hackergotchi/marcuzzo.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://ruedigergad.com/tag/planetkde/feed/?mrss=off&tag=planetkde
     define_name Ruediger Gad (rcg)
     define_face hackergotchi/ruedigergad.png
     define_facewidth 72
     define_faceheight 80
 
 feed 15m http://kovalevskyy.tumblr.com/tagged/planetkde/rss
     define_name Ilya Kowalewski (tucnak)
     define_face hackergotchi/kowalewski.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://elv13.wordpress.com/category/kde/feed/?mrss=off
     define_name Emmanuel Lepage Vallee (Elv13)
 
 feed 15m http://mayankmadanon.blogspot.in/feeds/posts/default?alt=rss
     define_name Mayank Madan (mayankmadan)
 
 feed 15m http://g-poesia.blogspot.com/feeds/posts/default/-/kde
     define_name Gabriel Poesia (gpoesia)
     define_face hackergotchi/gabriel-poesia.jpg
     define_facewidth 49
     define_faceheight 80
 
 feed 15m http://stuartmd2.blogspot.com/feeds/posts/default
     define_name Stuart Dickson (stuartmd)
     define_face hackergotchi/stuartmd.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://randa-meetings.ch/category/english/feed/
     define_name Randa Meetings
     define_feedclass news
 
 feed 15m http://sessellift.eu/category/kde/feed/?mrss=off
     define_name Thomas Pfeiffer (colomar)
     define_face hackergotchi/thomas-pfeiffer.jpg
     define_facewidth 75
     define_faceheight 80
 
 feed 15m http://tolszak-dev.blogspot.com/feeds/posts/default/-/planetkde
     define_name Tomasz Olszak (tolszak)
     define_face hackergotchi/tolszak.png
     define_facewidth 70
     define_faceheight 79
 
 feed 15m https://martinbriza.wordpress.com/tag/kde/feed/?mrss=off
     define_name Martin Bříza (mbriza)
 
 feed 15m http://gkbhat.blogspot.in/feeds/posts/default/-/KDE
     define_name Gopalakrishna Bhat
     define_face hackergotchi/sysadmins.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://andreasschilling.tumblr.com/search/kde/rss
     define_name Andreas Schilling
 
 feed 15m https://mbohlender.wordpress.com/feed/atom/
     define_name Michael Bohlender (mbohlender)
 
 feed 15m https://adrianbd.wordpress.com/feed/?mrss=off
     define_name Adrian Draghici (adrianb)
     define_face hackergotchi/adrianb.png
     define_facewidth 57
     define_faceheight 80
 
 feed 15m https://konkiewiczm.wordpress.com/feed/?mrss=off
     define_name Magda Konkiewicz
     define_face hackergotchi/magda.png
     define_facewidth 100
     define_faceheight 127
 
 feed 15m https://oinig.wordpress.com/tag/kde/feed/?mrss=off&tag=kde
     define_name Oindrila Gupta (oini)
     define_face hackergotchi/oini.jpg
     define_facewidth 70
     define_faceheight 80
 
 feed 15m http://kreversiqml.blogspot.com/feeds/posts/default
     define_name Denis Kuplyakov (dener.kup)
     define_face hackergotchi/dener.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://ciypro.wordpress.com/category/kde-gsoc2013/feed/?mrss=off
     define_name Chandan Kumar (chandankumar)
     define_face hackergotchi/chandankumar.jpg
     define_facewidth 80
     define_faceheight 69
 
 feed 15m http://gsoc2013.anmolahuja.com/feeds/posts/default?alt=rss
     define_name Anmol Ahuja (DarthCodus)
 
 feed 15m https://xardas008.wordpress.com/category/kde/feed/?mrss=off
     define_name Daniel Kreuter (xardas008)
     define_face hackergotchi/kreuter.png
     define_facewidth 61
     define_faceheight 79
 
 feed 15m http://akshaycode.blogspot.com/feeds/posts/default/-/KDE?alt=rss
     define_name Akshay Ratan (akshay_r)
 
 feed 15m https://nagpalsahil.wordpress.com/feed/?mrss=off
     define_name Sahil Nagpal (sahil)
 
 feed 15m https://ahmedabouelhamayed.wordpress.com/category/kde/feed/?mrss=off
     define_name Ahmed AbouElhamayed (TheMonster)
 
 feed 15m https://blogs.kde.org/blog/193/feed
     define_name Eike Hein (Sho)
     define_face hackergotchi/eike-hein.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://nikhatzi.gr/?feed=rss2&cat=3
     define_name Nikolaos Chatzidakis
 
 feed 15m https://albertvaka.wordpress.com/feed/?mrss=off
     define_name Albert Vaca (albertvaka)
     define_face hackergotchi/albertvaka.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://shahimoji.wordpress.com/feed/?mrss=off
     define_name Mojtaba Shahi Senobari (moji)
 
 feed 45m https://www.csslayer.info/wordpress/tag/planetkde/feed/
     define_name Weng Xuetian (csslayer)
     define_face hackergotchi/xuetianweng.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://www.csslayer.info/wordpress/category/kde/feed/
     define_name CS Slayer
     define_face hackergotchi/xuetianweng.png
     define_facewidth 80
     define_faceheight 80
     define_feedclass chinese
 
 feed 15m https://blog.bshah.in/feed.xml
     define_name Bhushan Shah (bshah)
     define_face hackergotchi/bshah.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://punit9462.wordpress.com/category/planetkde/feed/
     define_name Punit Mehta (punit9462)
     define_face hackergotchi/punit-mehta.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://ghic.org/~diane/feeds/kde.atom.xml
     define_name Diane Trout (detrout)
 
 feed 15m http://ematirov.blogspot.com/feeds/posts/default/-/kde
     define_name Mihail Ivchenko (EgorMatirov)
     define_face hackergotchi/ematirov.jpg
     define_facewidth 64
     define_faceheight 80
 
 feed 15m http://wheeldesign.blogspot.com/feeds/posts/default?alt=rss
     define_name Jens Reuterberg (jensreuterberg)
     define_face hackergotchi/jensreuterberg.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://zaufi.github.io/rss-kde.xml
     define_name Alex Turbov (zaufi)
 
 feed 15m https://kate-editor.org/author/dav1d/feed/
     define_name David Herberth (dav1d)
 
 feed 15m https://blogs.gnome.org/kittykat/tag/kde/feed/
     define_name Ekaterina Gerasimova (kittykat)
     define_face hackergotchi/egerasimova.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://sanjibandotme.wordpress.com/tag/kde/feed/
     define_name Sanjiban Bairagya (fewcha)
     define_face hackergotchi/sanjibanbairagya.png
     define_facewidth 80
     define_faceheight 77
 
 feed 15m http://kfunk.org/tag/kde/rss/
     define_name Kevin Funk (kfunk)
     define_face hackergotchi/kfunk.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://www.kdevelop.org/news/feed
     define_name KDevelop
     define_face hackergotchi/kdevelop.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://sklin0.wordpress.com/tag/gsoc/
     define_name Sergey Kalinichev (klins)
 
 feed 15m https://abhgangwar.wordpress.com/feed/
     define_name Abhinav Gangwar
 
 feed 15m https://bharathbrat.wordpress.com/category/gsoc-2014-kde/feed/
     define_name Bharath M S (brat197)
     define_face hackergotchi/bharath.png
     define_facewidth 80
     define_faceheight 79
 
 feed 15m https://calincruceru.wordpress.com/feed/
     define_name Călin Cruceru (crucerucalin)
 
 feed 15m https://n1kam.wordpress.com/feed/
     define_name Abhijeet Nikam (nikam08)
 
 feed 15m https://mrupanjana.wordpress.com/feed/
     define_name Rupanjana Mitra (mrupanjana)
 
 feed 15m https://ziemin.wordpress.com/feed/
     define_name Marcin Zieminski
 
 feed 15m https://akulichalexandr.wordpress.com/feed/
     define_name Alexandr Akulich
     define_face hackergotchi/akulichalexandr.png
     define_facewidth 47
     define_faceheight 80
 
 feed 15m http://calligra-author-outliner.blogspot.ru/feeds/posts/default
     define_name Denis Kuplyakov
     define_face hackergotchi/denis-Kuplyakov.jpg
     define_facewidth 64
     define_faceheight 64
 
 feed 15m https://kritawithmohit.wordpress.com/feed/
     define_name Mohit Goyal (mohit)
 
 feed 15m https://gcompris.wordpress.com/category/KDE/feed/
     define_name Timothée Giet (animtim)
     define_face hackergotchi/gcompris.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://nil1511.wordpress.com/feed/
     define_name Nilesh Suthar (nil1511)
     define_face hackergotchi/nil1511.jpg
     define_facewidth 57
     define_faceheight 80
 
 feed 15m http://debjitmondal.blogspot.in/feeds/posts/default/-/kde
     define_name Debjit Mondal (debjit)
 
 feed 15m https://aniketanvit.wordpress.com/tag/planetkde/feed/
     define_name Aniket Anvit (packo)
     define_face hackergotchi/packo.png
     define_facewidth 67
     define_faceheight 80
 
 feed 15m https://mohamedanwer.wordpress.com/tag/kde/feed/
     define_name Mohamed Anwer (tootis)
     define_face hackergotchi/mohamed-anwer.png
     define_facewidth 53
     define_faceheight 80
 
 feed 15m https://yangqiao.wordpress.com/category/kdeconnect/feed/
     define_name YANG Qiao (yangqiao)
 
 feed 15m http://oproj.tuxfamily.org/feed.kde.xml
     define_name Lucas Hermann Negri (lucashn)
     define_face hackergotchi/lucashn.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://www.olafsw.de/category/software/feed/
     define_name Olaf Schmidt-Wischhöfer (ojschmidt)
     define_face hackergotchi/ojschmidt.png
     define_facewidth 59
     define_faceheight 80
 
 feed 15m http://plfiorini.blogspot.com/feeds/posts/default/-/kde
     define_name Pier Luigi Fiorini (plfiorini)
     define_face hackergotchi/plfiorini.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://scarlettgatelymoore.com/tag/opensource/feed/
     define_name Scarlett Moore (sgclark)
     define_face hackergotchi/sgclark.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://the2ring.blogspot.de/feeds/posts/default
     define_name Hannah von Reth (TheOneRing)
     define_face hackergotchi/theonering.png
     define_facewidth 64
     define_faceheight 64
 
 feed 15m http://matija.suklje.name/feeds/kde.atom.xml
     define_name Matija Šuklje (silver_hook)
     define_face hackergotchi/hook.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://kdeonlinux.wordpress.com/feed/
     define_name Andreas Kainz (Andreas_k)
     define_face hackergotchi/Andreas-Kainz.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://kver.wordpress.com/tag/kde/feed/
     define_name Ken Vermette (kver)
     define_face hackergotchi/kver.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://woboq.com/feed/planetkde.rss
     define_name Olivier Goffart (Gof)
 
 feed 15m https://rahulc93.wordpress.com/tag/kde/feed/
     define_name Rahul Chowdhury (rahulch)
     define_face hackergotchi/rahul.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://sinceeverybodyhasablog.wordpress.com/category/KDE/feed/
     define_name Dinu Kumarasiri (sandarumk)
 
 feed 15m http://alltypesofhacking.blogspot.in/feeds/posts/default
     define_name Sayan Biswas
     define_face hackergotchi/sayan.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://skoushik.wordpress.com/tag/kde/feed/
     define_name Koushik S (skoushik)
     define_face hackergotchi/koushik-s.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://blog.pinak.me/feed.kde.xml
     define_name Pinak Ahuja (pinak)
     define_face hackergotchi/pinak.png
     define_facewidth 67
     define_faceheight 80
 
 feed 15m https://subhajitmukherjee.wordpress.com/feed/
     define_name Subhajit Mukherjee (bukai)
     define_face hackergotchi/subhajitmukherjee.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://saikrishna17394.github.io/feed.xml
     define_name Sai Krishna (saikrishna17394)
     define_face hackergotchi/Sai-Krishna.jpg
     define_facewidth 50
     define_faceheight 80
 
 feed 15m http://kshitijblogs.blogspot.com/feeds/posts/default/-/SoK%2714
     define_name Kshitij Gupta (kshitij8)
     define_face hackergotchi/Kshitij-Gupta.png
     define_facewidth 56
     define_faceheight 80
 
 feed 15m http://anu-mittal.blogspot.com/feeds/posts/default/-/Planet%20KDE
     define_name Anu Mittal (anuM)
     define_face hackergotchi/anum.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://dassouvik.wordpress.com/feed/
     define_name Souvik Das (sd__)
     define_face hackergotchi/Souvik-Das.jpg
     define_facewidth 70
     define_faceheight 76
 
 feed 15m https://thegreatercode.wordpress.com/feed/
     define_name Utkarsh Simha (usimha)
     define_face hackergotchi/Utkarsh-Simha.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://aarseeaeron.wordpress.com/feed/
     define_name Aarsee Aeron (aarsee)
     define_face hackergotchi/Aarsee-Aeron.jpg
     define_facewidth 78
     define_faceheight 80
 
 feed 15m http://davidrosca.blogspot.com/feeds/posts/default/-/planetkde
     define_name David Rosca (nowrep)
 
 feed 15m http://kstplot.blogspot.com/feeds/posts/default/
     define_name Kst News
     define_face hackergotchi/kstplot.png
     define_facewidth 80
     define_faceheight 80
     define_feedclass news
 
 feed 15m https://eang.it/planetkde.xml
     define_name Elvis Angelaccio (elvisangelaccio)
     define_face hackergotchi/elvis.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://blog.broulik.de/category/planetkde/feed/
     define_name Kai Uwe Broulik (kbroulik)
     define_face hackergotchi/kai.jpg
     define_facewidth 75
     define_faceheight 75
 
 feed 15m https://rajeeshknambiar.wordpress.com/feed/
     define_name Rajeesh K Nambiar (rajeesh)
     define_face hackergotchi/rajeesh.png
     define_facewidth 80
     define_faceheight 80
 
 feed 60m https://labplot.kde.org/feed/
     define_name Alexander Semke
     define_facewidth 80
     define_faceheight 80
     define_feedclass news
 
 feed 60m https://dfighter1985.wordpress.com/category/planetkde/feed/
     define_name dfighter
 
 feed 3h http://feinstaub.github.io/blog/feed.kde.xml
     define_name gregormi (gregormi)
 
 feed 60m http://kritaanimation.blogspot.com/feeds/posts/default
     define_name Jouni Pentikäinen (tyyppi)
 
 feed 60m https://wolthera.info/category/coding/kde/feed/
     define_name Wolthera van Hövell tot Westerflier (Wolthera)
     define_face hackergotchi/Wolthera.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://wolfcliff.blogspot.com/feeds/posts/default/-/kdestuff
     define_name Francesco Wofford (woffy)
 
 feed 45m http://www.msadityan.com/feed/?cat=kde
     define_name M.S.Adityan (drawkward)
     define_face hackergotchi/msadityan.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://sahebpreet-kde.blogspot.in/atom.xml
     define_name Saheb Preet Singh (sahebpreet)
     define_face hackergotchi/sahebpreet.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://binaryspring.blogspot.com/feeds/posts/default/-/kde
     define_name Aroonav Mishra (roguedragon)
     define_face hackergotchi/aroonav.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://koldavidgsoc.blogspot.com/feeds/posts/default
     define_name David Kolozsvari (koldavid)
     define_face hackergotchi/koldavid.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://mariusoc.blogspot.com/feeds/posts/default
     define_name Marius Stanciu (stancium)
     define_face hackergotchi/mariusoc.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://pgabor.blogspot.com/feeds/posts/default/-/GSOC
     define_name Gábor Péterffy (pgabor)
     define_face hackergotchi/pgabor.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://danielgsoc.wordpress.com/feed/?mrss=off
     define_name Daniel Leu (daniel_leu)
     define_face hackergotchi/leu.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://thebinarybin.wordpress.com/tag/kde/feed/
     define_name Vineet Garg (vineet)
     define_face hackergotchi/vineet-garg.png
     define_facewidth 76
     define_faceheight 75
 
 feed 45m https://amezin.github.io/feed.xml
     define_name Alexander Mezin (amezin)
     define_face hackergotchi/amezin.png
     define_facewidth 70
     define_faceheight 80
 
 feed 45m https://rthomsen6.wordpress.com/tag/kde/feed/
     define_name Ragnar Thomsen (rthomsen)
     define_face hackergotchi/rthomsen.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://usefoss.com/index.php/tag/kde/feed/
     define_name Aaron Honeycut (ahoneybun)
     define_face hackergotchi/ahoneybun.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://datapicker.blogspot.in/feeds/posts/default
     define_name Ankit Wagadre (ankitw)
     define_face hackergotchi/ankitw.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 30m https://blog.baloneygeek.com/feeds/rss.xml
     define_name Boudhayan Gupta (BaloneyGeek)
     define_face hackergotchi/bgupta.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://vyacheslav-matyushin.blogspot.ru/feeds/posts/default/-/kde
     define_name Vyacheslav Matyushin (abiogenesis)
     define_face hackergotchi/vmatyushin.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45 https://laysrodriguesdev.wordpress.com/author/lays147/feed/
     define_name Lays Rodrigues
     define_face hackergotchi/lays.png
     define_facewidth 55
     define_faceheight 80
 
 feed 45m http://support-kde-randa.blogspot.com/feeds/posts/default
     define_name Shourya Singh Gupta
     define_face hackergotchi/shourya.jpg
     define_facewidth 60
     define_faceheight 80
 
 feed 45m https://rizzitello.wordpress.com/author/sithlord48/feed/
     define_name Chris Rizzitello
     define_face hackergotchi/rizzitello.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://blogs.kde.org/blog/10432/feed
     define_name Heiko Tietze (htietze)
     define_face hackergotchi/htietze.png
     define_facewidth 67
     define_faceheight 67
 
 feed 15m https://blogs.churlaud.com/somefoobar/tag/kde/feed/
     define_name Olivier Churlaud (ochurlaud)
     define_face hackergotchi/ochurlaud.jpg
     define_facewidth 67
     define_faceheight 67
 
 feed 30m http://www.alexl.netsons.org/category/blogposts/feed/?mrss=off&tag=planetkde
     define_name Alessandro Longo
     define_face hackergotchi/alexl.png
     define_facewidth 80
     define_faceheight 80
 
 feed 30m https://phernandotelles.wordpress.com/category/english/planetkde/feed/
     define_name Fernando Teles
     define_face hackergotchi/fernandoteles.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://inandoutkde.blogspot.com/feeds/posts/default
     define_name Russell Greene
 
 feed 15m http://divitgulati.blogspot.com/feeds/posts/default
     define_name Divit Gulati
 
 feed 15m http://experiencewithkde.blogspot.de/feeds/posts/default
     define_name Hristiyan Kyosev
 
 feed 23m https://t-fischer.dreamwidth.org/data/rss?tag=kde
     define_name Thomas Fischer
     define_face hackergotchi/thomasfischer.png
     define_facewidth 80
     define_faceheight 80
 
 feed 18m https://stanfordlin.wordpress.com/feed/
     define_name Stanford Lin
 
 feed 15m https://hultnuno.wordpress.com/feed/
     define_name Nuno Hultberg
 
 feed 45m http://programmer-pit.de/?feed=rss2&cat=2
     define_name Gilbert Assaf
 
 feed 15m https://g33kyaditya.wordpress.com/tag/kde/feed/
     define_name Aditya Dev Sharma (g33kyaditya)
     define_face hackergotchi/aditya-dev-sharma.jpg
     define_facewidth 68
     define_faceheight 80
 
 feed 30m https://delsalife.wordpress.com/feed/
     define_name Andrea Del Sarto
 
 feed 45m https://arnavdhamija.com/tag/kde/rss/
     define_name Arnav Dhamija (shortstheory)
     define_face hackergotchi/arnavdhamija.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://alittledeveloper.blogspot.com/feeds/posts/default/?q=label:KDE
     define_name Alessandro Tundo
 
 feed 15m https://atakanzblog.wordpress.com/tag/wikitolearn/feed/
     define_name Daniele Pannozzo
     define_face hackergotchi/atakanz.png
     define_facewidth 80
     define_faceheight 80
 
 feed 30m https://blog.lucatoma.eu/category/kde-planet/feed/
     define_name Luca Toma
 
 feed 16m http://martinadestefani.blogspot.com/feeds/posts/default/-/KDE/?alt=rss
     define_name Martina De Stefani
     define_face hackergotchi/marti_de.png
     define_facewidth 80
     define_faceheight 80
 
 feed 17m https://blogs.wikitolearn.org/author/vincenzo/feed/
     define_name Vincenzo Eduardo Padulano
 
 feed 17m https://blogs.wikitolearn.org/author/lodo_ravi/feed/
     define_name Lodovico Filippo Ravizza
 
 feed 17m https://blogs.wikitolearn.org/author/f.quarenghi/feed/
     define_name Filippo Quarenghi
 
 feed 17m https://blogs.wikitolearn.org/author/jmotta1/feed/
     define_name Jona Motta
 
 feed 17m https://blogs.wikitolearn.org/author/Lucieferr/feed/
     define_name Lucie Ferretti
 
 feed 17m https://blogs.wikitolearn.org/author/m.bona/feed/
     define_name Matteo Bonanomi
 
 feed 45m https://ayushashah.wordpress.com/feed/
     define_name Ayush Shah (ayushshah)
     define_face hackergotchi/ayushshah.jpg
     define_facewidth 80 define_faceheight 80
 
 feed 17m https://blogs.wikitolearn.org/author/matteo_marcoli/feed/
     define_name Matteo Marcoli
 
 feed 14m https://blogs.wikitolearn.org/author/ruphy/feed/
     define_name Riccardo Iaconelli (ruphy)
     define_face hackergotchi/ruphy.png
     define_facewidth 80
     define_faceheight 80
 
 feed 17m https://blogs.wikitolearn.org/author/scimmiaspaziale/feed/
     define_name Riccardo A Gilardi
 
 feed 17m https://blogs.wikitolearn.org/author/Xadhoom/feed/
     define_name Sofia Liguori
 
 feed 17m http://baldi.me/blog/feed-kde.xml
     define_name Cristian Baldi
 
 feed 17m https://blogs.wikitolearn.org/author/irenedaloia/feed/
     define_name Irene D'aloia
 
 feed 17m https://blogs.wikitolearn.org/author/dcarrara/feed/
     define_name Demetrio Carrara
 
 feed 15m https://blogs.wikitolearn.org/author/wikitolearn/feed/
     define_name WikiToLearn Community
     define_face hackergotchi/wtlemblem.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://gsoc16.pulkitgupta.net/feed/
     define_name Pulkit Gupta (pulkit)
     define_face hackergotchi/pulkit.png
     define_facewidth 44
     define_faceheight 80
 
 feed 45m http://thelastpolaris.blogspot.com/feeds/posts/default
 	define_name Artem Fedoskin (polaris)
     define_face hackergotchi/afedoskin.png
     define_facewidth 80
     define_faceheight 80
 
 feed 60m https://micreabog.wordpress.com/category/kde/feed/
     define_name Krzysztof Nowicki
     define_face hackergotchi/nowicki.jpeg
     define_facewidth 80
     define_faceheight 80
 
 feed 60m https://scsilver.wordpress.com/feed/?tag=kde
     define_name Minh Chu (minhchu)
     define_face hackergotchi/minhchu.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://sagarhani.wordpress.com/feed/atom/?tag=kde
     define_name Sagar Hani (sagarhani)
     define_face hackergotchi/sagarhani.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://stefantoncu29.wordpress.com/feed/?tag=kde
 	define_name Stefan Toncu (StefanT)
     define_face hackergotchi/stefan.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://falit94.blogspot.com/feeds/posts/default?alt=rss
       define_name Falit Jain (falitjain)
       define_face hackergotchi/falit.png
       define_facewidth 80
       define_faceheight 80
 
 feed 45m https://raphaelcojocaru.wordpress.com/feed/?tag=kde
     define_name Raphael Cojocaru (raphael29)
     define_face hackergotchi/raphael.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://juliacantor.blogspot.ru/feeds/posts/default?alt=rss
 	define_name Ivan Lakhtanov (vaness)
 
 feed 45m https://keenlearner.wordpress.com/feed/?tag=kde
 	define_name Abhimanyu Shekhawat (abhimanyushekhawat)
     define_face hackergotchi/abhimanyushekhawat.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://kritadev.blogspot.com/feeds/posts/default?alt=rss
     define_name Julian Thijssen (nimmy)
     define_face hackergotchi/nimmy.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://droftware.github.io/feed.kde.xml
     define_name Akshat Tandon (tandon)
     define_face hackergotchi/tandon.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://mvlabat.github.io/ark-gsoc-2016/feed.xml
 	define_name Vladyslav Batyrenko (mvlabat)
 	define_face hackergotchi/mvlabat.png
 	define_facewidth 80
 	define_faceheight 80
 
 feed 45m http://tctara.github.io/gsoc/feed.xml
 	define_name Chantara Tith (tctara)
 
 feed 45m https://prakritibhardwajblog.wordpress.com/tag/kde/feed/
 	define_name Prakriti Bhardwaj (kupy)
 	define_face hackergotchi/Prakriti_Bhardwaj.jpg
 	define_facewidth 80
 	define_faceheight 80
 
 feed 45m https://bhavishadhruve.wordpress.com/feed/
     define_name Bhavisha Dhruve (bdhruve)
 
 feed 45m http://krajszgsoc.blogspot.com/feeds/posts/default?alt=rss
     define_name Fábián Kristóf (krajsz)
     define_face hackergotchi/krajsz.png
     define_facewidth 79
     define_faceheight 69
 
 feed 45m https://swatilodha.wordpress.com/feed/
 	    define_name Swati Lodha (swati_27)
 
 feed 15m http://aspotashev.blogspot.com/feeds/posts/default?alt=rss
     define_name Alexander Potashev (aspotashev)
     define_face hackergotchi/aspotashev.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://bernkastelsgsoc.blogspot.com/feeds/posts/default?alt=rss
     define_name Judit Bartha (bernkastel)
     define_face hackergotchi/bernkastel.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://blog.qt.io/blog/category/loop/feed/
     define_name Qt Dev Loop
     define_feedclass news
     define_face hackergotchi/qt_logo.png
     define_facewidth 80
     define_faceheight 58
 
 feed 15m https://psifidotos.blogspot.com/feeds/posts/default/-/kde
     define_name Michail Vourlakos (psifidotos)
     define_face hackergotchi/vourlakos.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://divyam3897.github.io/feed.xml
     define_name Divyam Madaan (dmadaan_)
     define_face hackergotchi/divyamMadaan.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://rahulyadav170923.blogspot.com/feeds/posts/default/
     define_name Rahul Yadav (rahulyadav)
     define_face hackergotchi/rahulyadav.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://rahulyadav170923.blogspot.com/feeds/posts/default/
     define_name Rahul Yadav (rahulyadav)
     define_face hackergotchi/rahulyadav.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://subdiff.org/blog/feed.xml
     define_name Roman Gilg
     define_face hackergotchi/roman-gilg.png
     define_facewidth 80
     define_faceheight 80
 
 feed 30m https://guoyunhe.me/en/t/kde/feed/
     define_name Guo Yunhe
     define_face hackergotchi/guoyunhe.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 30m https://guoyunhe.me/zh/t/kde/feed/
     define_name Guo Yunhe
     define_feedclass chinese
     define_face hackergotchi/guoyunhe.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://iamutkarshtiwari.wordpress.com/season-of-kde-2016/feed/
     define_name Utkarsh Tiwari (iamutkarshtiwari)
     define_face hackergotchi/utkarshtiwari.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://nitish18blog.wordpress.com/2017/03/08/feed/
     define_name Nitish Chauhan (nitish)
     define_face hackergotchi/nitish.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://mgallienkde.wordpress.com/feed/
     define_name Matthieu Gallien (mgallien)
     define_face hackergotchi/mgallien.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://yuenhoe.com/blog/tag/planetkde/feed/
     define_name Lim Yuen Hoe (moofang)
     define_face hackergotchi/yuenhoe.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m http://blog.chinmoyrp.com/feed.xml
     define_name Chinmoy Ranjan Pradhan (chinmoy)
     define_face hackergotchi/chinmoy.png
     define_facewidth 75
     define_faceheight 75
 
 feed 45m https://akapust1n.wordpress.com/feed/?mrss=off
     define_name Kapustin Alexey (akap)
     define_face hackergotchi/akapustin.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://eliakincosta.github.io/feed.xml
     define_name Eliakin Costa (eliakincosta)
     define_face hackergotchi/eliakincosta.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://anikethfoss.wordpress.com/category/kde/feed/?mrss=off&category_name=kde
     define_name Aniketh Girish (aniketh___)
     define_face hackergotchi/Aniketh-Girish.jpg
     define_facewidth 80
     define_faceheight 80
 
 
 feed 45m https://rish9511.wordpress.com/category/kde/feed/
 	define_name Rishabh Gupta (rishabh)
         define_face hackergotchi/rgupta.png
         define_facewidth 80
         define_faceheight 80
 
 feed 60m https://www.digikam.org/index.xml
     define_name digiKam
     define_face hackergotchi/digikam.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://perplexinglyemma.blogspot.co.uk/feeds/posts/default/-/kde?alt=rss
     define_name Emma Gospodinova (xstyle)
     define_face hackergotchi/emgosp.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://blog.neon.kde.org/index.php/feed/
     define_name KDE neon Blog
     define_feedclass news
     define_face hackergotchi/neon.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://community.chakralinux.org/tags/curated.rss
     define_name Chakra
     define_feedclass news
     define_face hackergotchi/chakra-shield.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://kecsapgsoc2017.blogspot.com/feeds/posts/default?alt=rss
     define_name kecsap (GSOC 2017)
     define_face hackergotchi/kecsap.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://nitish18blog.wordpress.com/2017/06/14/feed/
     define_name Nitish Chauhan (nitish)
     define_face hackergotchi/nitish.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://akapust1n.github.io/feed.xml
     define_name Kapustin Alexey (akap)
     define_face hackergotchi/akapustin.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://zoltanp.github.io/category/kde_feed.xml
     define_name Zoltan Padrah
 
 feed 45m https://shazaismailkaoud.wordpress.com/tag/kde/feed/
     define_name Shaza Ismail Kaoud (shazaismailkaoud)
     define_face hackergotchi/shaza-ismail.png
     define_facewidth 53
     define_faceheight 80
 
 feed 45m https://tantsevov.wordpress.com/feed/?mrss=off
     define_name Tantsevov Grigory (tantsevov)
     define_face hackergotchi/tantsevov.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://anditosan.wordpress.com/feed/?mrss=off
     define_name Andres Betts (anditosan)
     define_face hackergotchi/andres-betts.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://vasudhamathur.wordpress.com/category/KDE/feed/
         define_name Vasudha (vasudhamathur)
         define_face hackergotchi/vasudha.jpg
         define_facewidth 73
         define_faceheight 80
 
 feed 15m http://good-horse.blogspot.com/feeds/posts/default/-/KDE
         define_name Franklin Weng
 
 feed 60m https://blog.bembel.net/feed/?mrss=off&category_name=kde
     define_name Thomas Baumgart (ipwizard)
     define_face hackergotchi/tbaumgart.png
     define_facewidth 80
     define_faceheight 80
 
 feed 60m https://quickfix.es/author/paul/feed/
     define_name Paul (Bro666)
     define_face hackergotchi/paulbro666.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 60m https://quickfix.es/author/skadinna/feed/
     define_name Ivana (skadinna)
     define_face hackergotchi/ivana.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://pointieststick.com/feed/
     define_name Nate Graham (ngraham)
     define_face hackergotchi/ngraham.png
     define_facewidth 59
     define_faceheight 80
 
 feed 60m http://neofytosk.com/categories/kde/index.xml
     define_name Neofytos Kolokotronis (tetris4)
     define_face hackergotchi/neofytosk.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://amankumargupta.wordpress.com/category/gcompris/feed/?mrss=off
     define_name Aman Kumar Gupta (gupta2140[m])
     define_face hackergotchi/amankumargupta.jpg
     define_facewidth 55
     define_faceheight 80
 
 
 feed 45m https://fluca1978.github.io/atom/planet-kde-org
     define_name Luca Ferrari
     define_face hackergotchi/luca-ferrari.png
     define_facewidth 80
     define_faceheight 80
     define_feedclass user
 
 feed 15m https://amitsagtani97.wordpress.com/feed/
         define_name Amit Sagtani (amit__)
         define_face hackergotchi/amit.jpg
         define_facewidth 80
         define_faceheight 80
 
 feed 45m https://antlarr.io/feed/
 	define_name Antonio Larrosa (antlarr)
         define_face hackergotchi/antlarr.png
         define_facewidth 80
         define_faceheight 80
 
 feed 15m https://skrooge.org/rss.xml
     define_name Stéphane MANKOWSKI (smankowski)
     define_face hackergotchi/smankowski.png
 
 feed 45m http://www.kdedigest.com/feeds/posts/default/-/[planetkde]?alt=rss
 	define_name James Cain (ronnoc)
         define_face hackergotchi/james-cain.png
         define_facewidth 80
         define_faceheight 65
 
 feed 60m https://kdiff3.blogspot.com/feeds/posts/default
     define_name KDiff3
 
 feed 60m https://matthijstijink.nl/static/feed_kde.xml
     define_name Matthijs Tijink (mtijink)
     define_face hackergotchi/mtijink.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://nicolasfella.wordpress.com/category/kde/feed/
 	define_name Nicolas Fella (nicofee)
         define_face hackergotchi/nicolasfella.png
         define_facewidth 80
         define_faceheight 80
 
 feed 45m https://mkacej.wordpress.com/category/kde/feed/
     define_name Martin Kacej (mkacej)
 
 feed 45m https://medium.com/feed/kdeok
     define_name Łukasz Sawicki (llucas)
     define_face hackergotchi/lucas.jpg
     define_facewidth 58
     define_faceheight 80
     define_feedclass user
 
 feed 45m https://www.falkon.org/atom.xml
     define_name Falkon
     define_feedclass news
     define_face hackergotchi/falkon.png
     define_facewidth 64
     define_faceheight 64
 
 feed 45m http://furkantokac.com/category/kde/feed/
     define_name Furkan Tokac (ftDev)
     define_face hackergotchi/Furkan-Tokac.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://colorathis.wordpress.com/tag/kde/feed/
     define_name Iván Yossi Santa María (ivanyossi)
     define_face hackergotchi/ivanyossi.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://simeir.github.io/feeds/kdefeed.atom
     define_name Michael Zhou (simeir)
     define_face hackergotchi/simeir.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://kfereneczgsoc2018.blogspot.com/feeds/posts/default
     define_name Ferencz Kovacs (ferenczkovacs)
     define_face hackergotchi/ferencz_kovacs.png
     define_facewidth 62
     define_faceheight 80
 
 feed 45m https://andreycyg.blogspot.com/feeds/posts/default
     define_name Andrey Cygankov (andreyc)
     define_face hackergotchi/andreyc.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://medium.com/feed/@mujjingun_23509
     define_name Gun Park (gpark)
     define_face hackergotchi/mujji.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://ilyabiz.com/category/kde/feed/
     define_name Ilya Bizyaev (ilya_b)
     define_face hackergotchi/ilya_b.png
     define_facewidth 80
     define_faceheight 80
 
 feed 30m https://www.volkerkrause.eu/feed.xml
     define_name Volker Krause
 
 feed 45m https://luis692397029.wordpress.com/feed/
     define_name Luis Lavaire
     define_face hackergotchi/luis.jpeg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://andrewcrouthamel.wordpress.com/category/kde/feed/
     define_name Andrew Crouthamel (AndrewCrouthamel)
     define_face hackergotchi/acrouthamel.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://kiryteo7.wordpress.com/category/kde/
     define_name Ashwin Samudre (ashwins)
     define_face hackergotchi/ashwins.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://www.creative-destruction.org/tags/foss/index.xml
     define_name Mirko Boehm (miroslav)
     define_face hackergotchi/mirkoboehm.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m http://www.mardy.it/categories/kdeplanet.xml
         define_name Alberto Mardegan (mardy)
         define_face hackergotchi/alberto-mardegan.png
         define_facewidth 80
         define_faceheight 80
         define_feedclass user
 
 feed 45m https://xyquadrat.ch/tag/kde/rss/
         define_name Julian Schraner (xyquadrat)
         define_face hackergotchi/xyquadrat.png
         define_facewidth 80
         define_faceheight 80
         define_feedclass user
 
 feed 45m https://wrix.me/rss/
     define_name Wrishiraj Kaushik (wrix)
     define_face hackergotchi/wrix.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://jbbgameich.github.io/feed.xml
     define_name Jonah Brüchert (JBB)
     define_face hackergotchi/jbb.png
     define_facewidth 80
     define_faceheight 80
 
 feed 60m https://kmymoney.org/news.rdf
     define_name KMyMoney
     define_face hackergotchi/kmymoney.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://jucato.wordpress.com/tag/kde/feed/
 	define_name Juan Carlos Torres (jucato)
     define_face hackergotchi/jucato.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://hellozee.github.io/tags/gsoc/index.xml
 	define_name Kuntal Majumder (hellozee)
     define_face hackergotchi/hellozee.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://piyushagg.home.blog/category/kde/feed/
     define_name Piyush Aggarwal | brute4s99
     define_face hackergotchi/brute4s99.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://filipfila.wordpress.com/tag/planet-kde/feed/
     define_name Filip Fila
     define_face hackergotchi/filipf.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://www.kaidan.im/atom.xml
     define_name Kaidan News
     define_face hackergotchi/kaidan.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://kde.inoki.cc/atom.xml
     define_name Weixuan XIAO (Inokinoki)
     define_face hackergotchi/inoki.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://orepoala.home.blog/category/kde/feed/
     define_name Rituka Patwal (orepoala)
     define_face hackergotchi/orepoala.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://sirgienkogsoc2019.blogspot.com/feeds/posts/default
     define_name Sirgienko Nikita (sirgienko)
     define_face hackergotchi/sirgienko.png
     define_facewidth 54
     define_faceheight 80
 
 feed 45m https://agdeva8labplot.blogspot.com/
     define_name Devanshu Agarwal (agdeva8)
     define_face hackergotchi/devanshuagarwal.png
     define_facewidth 78
     define_faceheight 80
 
 feed 45m https://albertoefg.info/blog/kde.xml
     define_name Alberto Flores (albertoefg)
     define_face hackergotchi/albertoefg.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://www.sh-zam.com/feeds/posts/default/-/kde
     define_name Sharaf Zaman (sh_zam)
     define_face hackergotchi/sh_zam.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://tusooa.github.io/tags/kde/atom.xml
     define_name tusooa
     define_face hackergotchi/tusooa.png
     define_facewidth 79
     define_faceheight 80
 
 feed 45m https://fbgsoc.home.blog/feed/
     define_name Farid Boudedja (faridb)
     define_face hackergotchi/faridb.jpg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://feverfew.home.blog/feed/
     define_name A Saoutkin (feverfew)
     define_face hackergotchi/asaoutkin.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://akhilam512.github.io/blog/feed.jekyll.xml
     define_name Akhil K Gangadharan (akhilkg_)
     define_face hackergotchi/akhilkgangadharan.png
     define_facewidth 61
     define_faceheight 80
 
 feed 45m https://akshaychd.blogspot.com/feeds/posts/default
     define_name Akshay Kumar (akshaychd)
     define_face hackergotchi/akshaychd.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://chst.dev/feed.xml
     define_name Caio Tonetti (ctonetti)
     define_face hackergotchi/ctonetti.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://dimitris.cc/feed/kde.xml
     define_name Dimitris Kardarakos (dkardarakos)
     define_face hackergotchi/dkardarakos.png
     define_facewidth 80
     define_faceheight 80
 
 feed 15m https://jen6.github.io/feed.xml
         define_name SonGeon (jen6)
         define_face hackergotchi/songeon_hackergotchi.png
         define_facewidth 80
         define_faceheight 80
 
 feed 45m https://karinappassos.home.blog/feed/
     define_name Karina Passos (karinapassos)
     define_face hackergotchi/karina.jpeg
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://carlschwan.eu/feed.xml
     define_name Carl Schwan (ognarb)
     define_face hackergotchi/ognarb.png
     define_facewidth 80
     define_faceheight 80
 
 feed 45m https://gsocokular2019.home.blog/feed/?mrss=off
     define_name João Netto (joaonetto)
     
 feed 45m https://coderunner99.blogspot.com/feeds/posts/default
 	define_name Shubham (shubham)