This file contains 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)itShouldUpdateTheOutputFromTheInput { | |
UIQuery *app = [UIQuery withApplication]; | |
UILabel *outputLabel = [self.app.label text:@"Update Me"]; | |
[app.textField setText:@"testing 1-2-3"]; | |
[app.button touch]; | |
[outputLabel.should.have text:@"testing 1-2-3"]; | |
} |
This file contains 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
/* R O U N D E D C O R N E R S */ | |
/* TODO: test differing KHTML formats across platforms. */ | |
/* TODO: get version specifics for Opera options. */ | |
.round_all { | |
-opera-border-radius: 5px; | |
-o-border-radius: 5px; | |
-khtml-border-radius: 5px; | |
-moz-border-radius: 5px; | |
-webkit-border-radius: 5px; |
This file contains 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 lang='en-US' xml:lang='en-US' xmlns='http://www.w3.org/1999/xhtml'> | |
<head> | |
<title>VacationTrade</title> | |
<meta content='text/html; charset=utf-8' http-equiv='Content-Type' /> | |
</head> | |
<body> | |
<p><a href="http://www.munc.com/" rel="bookmark">More info via a relationship link popup</a></p> | |
<p><a href="http://www.munc.com/" rel="bookmark">More info via a relationship link popup</a></p> | |
<p><a href="http://www.munc.com/" rel="bookmark">More info via a relationship link popup</a></p> |
This file contains 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/sh | |
# Set in Product | Scheme | Edit Scheme | Build | Post-actions as a new Run Script item. | |
# echo Restoring build number | |
# ${PROJECT_DIR}/Scripts/restore_build_number.sh | |
# Select your target in the "Provide build settings from" dropdown. | |
set -e | |
if [ -z "$SRCROOT" ] | |
then | |
echo "Run this from the project root." |
I hereby claim:
- I am muncman on github.
- I am muncman (https://keybase.io/muncman) on keybase.
- I have a public key ASCPBE4GgohZ2wPDNZCgbLQ0dOZOx9AdSv3v6-MsuoAo6go
To claim this, I am signing this object:
This file contains 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 'dart:async'; | |
import 'package:flutter/material.dart'; | |
import 'package:flutter/cupertino.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { |
This file contains 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() async { | |
oneWay(); | |
anotherWay(); | |
orThisWay(); | |
} | |
String? getNullable() { | |
if (DateTime.now().second % 2 == 0) { | |
return 'not null'; | |
} |