Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
{ | |
"consortiumURL" : "http://www.universia.net/", | |
"ocwURL" : "Flamenco?q=UniversityName:33&group=UniversityName", | |
"universityContinent" : "North America", | |
"universityLogo" : "http://www.anahuac.mx/images/stories/contenido/la_universidad/logo_universidad_anahuac_chico.gif", | |
"universityOCWURL" : "http://educommons.anahuac.mx:8080/eduCommons/", | |
"universityURL" : "http://www.anahuac.mx/", | |
"universityCountry" : "Mexico", | |
"universityURI" : "http://dbpedia.org/resource/Universidad_An%C3%A1huac_M%C3%A9xico_Norte", | |
"universityLong" : "-99.267674", |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000
Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.
Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.
/* The Grid ---------------------- */ | |
.lt-ie9 .row { width: 940px; max-width: 100%; min-width: 768px; margin: 0 auto; } | |
.lt-ie9 .row .row { width: auto; max-width: none; min-width: 0; margin: 0 -15px; } | |
.lt-ie9 .row.large-collapse .column, | |
.lt-ie9 .row.large-collapse .columns { padding: 0; } | |
.lt-ie9 .row .row { width: auto; max-width: none; min-width: 0; margin: 0 -15px; } | |
.lt-ie9 .row .row.large-collapse { margin: 0; } | |
.lt-ie9 .column, .lt-ie9 .columns { float: left; min-height: 1px; padding: 0 15px; position: relative; } | |
.lt-ie9 .column.large-centered, .columns.large-centered { float: none; margin: 0 auto; } |
add_action( 'tgmpa_register', 'register_required_plugins' ); | |
// This function is called from the above hook | |
function register_required_plugins() | |
{ | |
// The plugins array allows us to define multiple plugins we want to include. | |
// The commented out example shows how we can include and activation a bundled | |
// plugin zip file in our theme. | |
$plugins = array( | |
/* array( |
<?php | |
/* | |
Plugin Name: Urejevalnik | |
Description: Tabela, znaki itd | |
Author: Janez Troha | |
Version: 1.0 | |
Author URI: http://www.dz0ny.info | |
*/ | |
function fb_change_mce_buttons( $initArray ) { |
#!/usr/bin/env python | |
# | |
# Copyright 2012 Patrick Hetu <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |
<?php | |
require('../library/Solarium/Autoloader.php'); | |
Solarium_Autoloader::register(); | |
$client = new Solarium_Client(); | |
$client->setHost('192.168.1.2'); | |
$client->setCore('geonames'); | |
$query = new Solarium_Query_Select; |