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
void main() { | |
var now = new DateTime.now(); | |
var later = now.add(const Duration(seconds: 5)); | |
print("now > later == ${now > later}"); | |
print("now >= later == ${now >= later}"); | |
print("now < later == ${now < later}"); | |
print("now <= later == ${now <= later}"); | |
} | |
extension BetterDateTime on DateTime { |
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?> | |
<profiles version="13"> | |
<profile kind="CodeFormatterProfile" name="Jarod" version="13"> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_ellipsis" value="insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_after_comma_in_enum_declarations" value="insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.insert_new_line_in_empty_annotation_declaration" value="do not insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_comma_in_allocation_expression" value="do not insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.insert_space_before_at_in_annotation_type_declaration" value="insert"/> | |
<setting id="org.eclipse.jdt.core.formatter.parentheses_positions_in_for_statment" value="common_lines"/> | |
<setting id="org.eclipse.jdt.core.formatter.comment.new_lines_at_block_boundaries" value="true"/> |
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 AngleSpeed extends Vector { | |
protected float xSpeed; | |
protected float ySpeed; | |
public AngleSpeed(AngleSpeed old) { | |
this(old.distance, old.xSpeed, old.ySpeed, old.angle.getAngle()); | |
} | |
public AngleSpeed(float speed, float xSpeed, float ySpeed, float angle) { | |
super(angle, speed); |
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
span{ | |
position: absolute; | |
top: 50%; | |
left: 50%; | |
text-shadow: 0 0 4px #FFFFFF; | |
font-size: 30px; | |
font-weight:bold; | |
font-family: Helvetica, Arial, sans-serif; | |
} | |
#l1{z-index: 18;} |
NewerOlder