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
<? | |
/*loads Bootstrap CSS*/ | |
add_action('wp_enqueue_scripts','load_bootstrap_css_files'); | |
function load_bootstrap_css_files() { | |
wp_register_style( 'bootstrap-base', get_template_directory_uri() . '/style/bootstrap.min.css', array(), '2.3.1', all); | |
wp_register_style( 'bootstrap-responsive-min', get_template_directory_uri() . '/style/bootstrap-responsive.min.css', array(),'2.3.1', all); | |
wp_register_style( 'brown-academy-style', get_template_directory_uri() . '/style/banstyle.css', array(), '1.0.0', all ); | |
wp_enqueue_style( 'bootstrap-base' ); | |
wp_enqueue_style( 'bootstrap-responsive-min' ); |
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
<style> | |
/*homepage speaker grid*/ | |
.featuredspeakers | |
{ | |
padding:0; | |
width:500px; | |
height:660px | |
} | |
.featuredspeakers li |
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
1.Place before closing body tag in home... could also place in feature panel AFTER you have declared everything else: | |
<!--<style> | |
#simplemodal-container a.modalCloseImg { | |
background:url(http://archive.wbresearch.com//luis/js/images/x.png) no-repeat; /* adjust url as required */ | |
width:25px; | |
height:29px; | |
display:inline; | |
z-index:3200; | |
position:absolute; |
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
import java.util.Iterator; | |
void draw(){ | |
if(prevball != null){ | |
//prevball.updateColor(); | |
} | |
fill(cmaster.updateColor()); | |
//.1 - green/blue |
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
<root><PageRedirect><RedirectUrl></RedirectUrl></PageRedirect><Titles><HtmlTitle></HtmlTitle></Titles><fp_image></fp_image><fp_flash></fp_flash><main_flash_xml></main_flash_xml><HtmlContent><HtmlContent><link rel="stylesheet" href="http://38.119.46.100/jqueryfeaturepanel/featurepanel.css" type="text/css"></link><!--<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>--><!--<script type="text/javascript" src="http://38.119.46.100/jqueryfeaturepanel/featurepanel.js"></script>--> | |
<style> | |
#featurePanel, #slider{ | |
width:790px !important; | |
} | |
.slideIndex { | |
display:none; | |
} | |
</style><div id="featurePanel"> | |
<div id="slider"> |
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
#! /bin/bash | |
#This is a bash script used for creating a lot of folders to experiment in Processing! | |
#It asks for the input of the main folder... this folder will hold all of the Processing sub folders for example | |
#If mainfolder is called cupcake and you name the processing folders icings and you want three made | |
#the bash script will create: | |
# cupcake/icings0/icings0.pde | |
# cupcake/icings1/icings1.pde | |
# cupcake/icings2/icings2.pde | |
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
/** | |
* A snippet for an iterator pattern... | |
*/ | |
import | |
ArrayList < obj > objs; | |
void draw() { | |
Iterator < obj > objsIterator = objs.iterator(); | |
while(objsIterator.hasNext()) { | |
obj = objsIterator.next() |
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
<div id="centerStage_map"> | |
<iframe width="790" scrolling="no" height="600" frameborder="0" src="http://archive.wbresearch.com/tradetecheurope/imagemap/index.html"></iframe> | |
</div> |
NewerOlder