| layout | post |
|---|---|
| title | Flickraw Test |
| date | 2012-08-31 14:47 |
| comments | true |
| categories | flickraw |
Gambar ukuran besar:
| source "http://rubygems.org" | |
| group :development do | |
| gem 'rake', '~> 0.9.2' | |
| gem 'rack', '~> 1.4.1' | |
| gem 'jekyll', '~> 0.11.2' | |
| gem 'rdiscount', '~> 1.6.8' | |
| gem 'pygments.rb', '~> 0.2.12' | |
| gem 'RedCloth', '~> 4.2.9' | |
| gem 'haml', '~> 3.1.6' |
| layout | post |
|---|---|
| title | Flickraw Test |
| date | 2012-08-31 14:47 |
| comments | true |
| categories | flickraw |
Gambar ukuran besar:
| Username : Administrator | |
| Password : *********** (isi dengan no.serial modem CPxxxxxx) | |
| ------------------------------------------------------------------------ | |
| ______ SpeedTouch 5x6 | |
| ___/_____/\ | |
| / /\ 6.2.17.5 | |
| _____/__ / \ | |
| _/ /\_____/___ \ Copyright (c) 1999-2007, THOMSON | |
| // / \ /\ \ | |
| _______//_______/ \ / _\/______ |
| <?php | |
| /** | |
| * Plugin Name: WP Rss Poster | |
| * Plugin URI: http://wp-coder.net | |
| * Description: Easy to create posts from multiple rss sources. | |
| * Version: 1.0.0 | |
| * Author: Darell Sun | |
| * Author URI: http://wp-coder.net | |
| * | |
| * @package WRP |
| <?php | |
| /* Admin functions to set and save settings of the | |
| * @package WRP | |
| */ | |
| require_once('pages.php'); | |
| require_once('meta_box.php'); | |
| require_once(WRP_INC.'list_table.php'); | |
| /* Disable Twitter and Facebook workaround */ | |
| // require_once(WRP_INC.'twitteroauth.php');*/ | |
| // require_once(WRP_INC.'facebook.php'); */ |
| // Simple YOURLS frontend | |
| // We use native YOURLS API to do so | |
| <?php | |
| require_once( dirname(__FILE__).'/includes/load-yourls.php' ); | |
| //put here how many entries should be displayed | |
| $items = yourls_api_stats( 'last', 20 ); | |
| foreach( $items['links'] as $item ) { ?> |
| <!-- Just replace **USERNAME** by your github username :-) --> | |
| <style> | |
| #followGithub { | |
| color: #121516; | |
| text-shadow: 0 1px 1px #ccc; | |
| padding: 0.2em 0.4em; | |
| -moz-border-radius: 5px; | |
| -webkit-border-radius: 5px; | |
| border-radius: 5px; |
| <?php | |
| // call the lib.. | |
| require_once('recaptchalib.php'); | |
| // Get a key from http://recaptcha.net/api/getkey | |
| $publickey = ""; | |
| $privatekey = ""; | |
| # was there a reCAPTCHA response? |
| ## | |
| ## @author Jacky Alcine <me@jalcine.me> | |
| ## @see [TODO: Add URL to post about bit.ly URLs.] | |
| ## | |
| ## Add in Bit.ly URL support to pages. | |
| require "bitly" | |
| # Ensure use of new API. | |
| Bitly.use_api_version_3 |
| require 'bitly' | |
| module Jekyll | |
| class BitlyFilterCache | |
| def initialize | |
| @result_cache = {} | |
| config = Jekyll.configuration({}) | |
| @username = config['bitly']['username'] | |
| @key = config['bitly']['api_key'] | |
| Bitly.use_api_version_3 |