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> | |
<html> | |
<head> | |
<meta charset=utf-8> | |
<title>Futsal</title> | |
<style> | |
ul { width: 200px; margin: 0 auto; text-align: left; } | |
#container { text-align: center; } | |
</style> |
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> | |
<html> | |
<head> | |
<meta charset=utf-8> | |
<title>Futsal</title> | |
<style> | |
html, body, div, span, iframe, | |
h1, h2, h3, h4, h5, h6, p, blockquote, pre, | |
a, img, strong, b, u, i, center, dl, dt, dd, ol, ul, 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
c.plugins.options = {} | |
Dir["./lib/data/*.settings.rb"].each { | |
|file| eval( File.open(file, "rb").read ).each do |key, val| | |
c.plugins.options[key] = val | |
end | |
} |
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
{ | |
Cinch::Plugins::Lastfm => { | |
:api_key => '123abc' | |
} | |
} |
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
public class Person { | |
private String name; | |
private Person mother; | |
private Person father; | |
// mer ting her.... | |
public Person(String name) { | |
this.name = name; | |
} |
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
sub convertLon { | |
my $lon = sprintf "%.6f", ((shift) / (2 * pi * 6378137 / 2)) * 180; | |
} | |
sub convertLat { | |
my $lat = ((shift) / (2 * pi * 6378137 / 2)) * 180; | |
$lat = sprintf "%.6f", 180 / pi * (2 * atan(exp($lat * pi / 180)) - pi / 2); | |
} |
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
public class Card implements Comparable<Card> { | |
int number; | |
char type; | |
public Card (int number, char type){ | |
this.number = number; | |
this.type = type; | |
} | |
public int getNumber() { |
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
if (this.value) { | |
if (card1.getNumber() == 1) { | |
card1.setNumber(14); | |
} | |
if (card1.getNumber() == 1) { | |
card2.setNumber(14); | |
} | |
} |
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 xmlhttp = new XMLHttpRequest(); | |
xmlhttp.open("GET", "test.xml", false); | |
xmlhttp.send(); | |
xmlDoc = xmlhttp.responseXML; | |
var root = xmlDoc.firstChild; | |
var children = root.children; |
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
public class Bsu extends SavingsAccount { | |
double maxDeposite; | |
public Bsu (double maxDeposite) { | |
this.maxDeposite = maxDeposite; | |
} | |
// setters and getts ++ ... | |
@Override |
OlderNewer