This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| Plugin Name: Geocoder Plugin Example | |
| Plugin URI: http://api.okf.fi/console/ | |
| Description: Example WordPress Plugin for Geocoder API | |
| Version: 1.0 | |
| Author: Tomi Toivio | |
| Author URI: http://fi.flossmanuals.net | |
| License: GPL2 | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local P = {} | |
| AI_SOV = P | |
| function P.ProposeDeclareWar( minister ) | |
| local ai = minister:GetOwnerAI() | |
| local ministerCountry = minister:GetCountry() | |
| local strategy = ministerCountry:GetStrategy() | |
| local year = ai:GetCurrentDate():GetYear() | |
| local month = ai:GetCurrentDate():GetMonthOfYear() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env php | |
| <? | |
| require 'scraperwiki.php'; | |
| $html = scraperwiki::scrape("https://www.eura2007.fi/rrtiepa/projektilista.php?rahasto=ALL&type=xml"); | |
| $eura = preg_replace("/&/", "&", $html); | |
| $projektilista = simplexml_load_string($eura); | |
| $unique_keys = array('projektikoodi'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $handle = fopen("eura.csv", "w"); | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_URL, "https://www.eura2007.fi/rrtiepa/projektilista.php?rahasto=EAKR&type=xml"); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
| $eura = curl_exec($ch); | |
| curl_close($ch); | |
| $eura = preg_replace("/&/", "&", $eura); | |
| $projektilista = simplexml_load_string($eura); | |
| foreach ($projektilista->projekti as $projekti): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file is distributed under the same license as the Booktype package. | |
| # | |
| # Translators: | |
| # Tomi Toivio <tomi@flossmanuals.net>, 2013 | |
| msgid "" | |
| msgstr "" | |
| "Project-Id-Version: Booktype\n" | |
| "Report-Msgid-Bugs-To: \n" | |
| "POT-Creation-Date: 2013-05-05 19:22+0200\n" | |
| "PO-Revision-Date: 2013-12-20 04:06+0200\n" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Call the function when comment is posted */ | |
| add_action('comment_post', 'my_admin_reply'); | |
| function my_admin_reply($id) { | |
| /* Only do it when posting from admin */ | |
| if (is_admin()) { | |
| $mycomment = get_comment($id); | |
| $mycommentid = $mycomment->comment_ID; | |
| $mycommentparent = $mycomment->comment_parent; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function(){var x,o,r,y,K,L,M,N,O,P,Q,R,z,q,A,S,T,U,u,V,W,X;u=function(b){return b.replace(/[a-zA-Z]/g,function(a){return String.fromCharCode(("Z">=a?90:122)>=(a=a.charCodeAt(0)+13)?a:a-26)})};Q=function(b){var a,d;d=[];for(a in b)d.push(a);return 0===d.length};z=function(b,a){return b.push.apply(b,a)};W=function(b,a){var d,c,e,f,g;f=b.split("");g=[];c=0;for(e=f.length;c<e;c++)d=f[c],g.push(a[d]||d);return g.join("")};S=function(b){var a,d,c,e;d=[];c=0;for(e=B.length;c<e;c++)a=B[c],z(d,a(b));return d.sort(function(a, | |
| b){return a.i-b.i||a.j-b.j})};O=function(b,a){var d,c,e,f,g,h,i,j,k;h=[];e=b.length;f=b.toLowerCase();f=u(f);for(d=j=0;0<=e?j<e:j>e;d=0<=e?++j:--j)for(c=k=d;d<=e?k<e:k>e;c=d<=e?++k:--k)if(f.slice(d,+c+1||9E9)in a)i=f.slice(d,+c+1||9E9),g=a[i],h.push({pattern:"dictionary",i:d,j:c,token:b.slice(d,+c+1||9E9),matched_word:u(i),rank:g});return h};r=function(b){var a,d,c,e,f;d={};a=1;e=0;for(f=b.length;e<f;e++)c=b[e],d[c]=a,a+=1;return d};o=function(b,a){return function(d){var c,e,f;c=O(d,a);e=0;for(f= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- blah --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $ch = curl_init(); | |
| curl_setopt($ch, CURLOPT_URL, ""); | |
| curl_setopt($ch, CURLOPT_HEADER, 0); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
| $data = curl_exec($ch); | |
| curl_close($ch); | |
| $filename = date("c") . ".kml"; | |
| file_put_contents($filename, $data); | |
| ?> |