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
| # Back-Propagation Neural Networks | |
| # | |
| # Written in Python. See http://www.python.org/ | |
| # Placed in the public domain. | |
| # Neil Schemenauer <[email protected]> | |
| import math | |
| import random | |
| import string |
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 | |
| /** | |
| * Template Name: Events2 | |
| * | |
| * @package peiFramework | |
| * @subpackage Template | |
| */ | |
| /* See theme's functions.php for PetersDateConverter() function */ |
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
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
| <meta http-equiv="X-UA-Compatible" content="IE=8" /> | |
| <title>Big Movie Weekend - Home</title> | |
| <style type="text/css" media="screen"> | |
| @import "http://www.virginmedia.com/partners/movies/ostmodern/vm.css"; |
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.Scanner; | |
| public class VaccineTest | |
| { | |
| public static void main (String[] args) { | |
| while(true){ | |
| Scanner scan = new Scanner(System.in); |
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.Scanner; | |
| import java.text.DecimalFormat; | |
| public class TrigLength | |
| { | |
| public static void main (String[] args) { | |
| Scanner scan = new Scanner(System.in); |
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
| var coordsToAngle = function(c){ | |
| if(typeof c == Array && c.length==3) | |
| var deg = c[0], min = c[1], sec = c[2]; | |
| else { | |
| var deg = c.match(/([\-]?[\d]{1,3})\°/), deg = (deg === null ? 0 : deg[1].toInt()); | |
| var min = c.match(/([\-]?[\d]{1,3})\'{1}/), min = (min === null ? 0 : min[1].toInt()); | |
| var sec = c.match(/([\-]?[\d]{1,3})\'{2}/), sec = (sec === null ? 0 : sec[1].toInt()); | |
| } | |
| c = deg + min/60 + sec/3600; | |
| return c; |
NewerOlder