- Save
Tests.scpt
to the folder~/.Xcode/
- Open the folder
~/.Xcode/
inTerminal.app
- Perform the command
chmod +x ./Tests.scpt
inTerminal.app
- Open
Xcode ➭ Behaviors ➭ Testing Succeeds
- Choose
~/.Xcode/Tests.scpt
in the Run popup - Open
Xcode ➭ Behaviors ➭ Testing Fails
and repeat
View LICENSE
Copyright (c) 2013 Jamz Tang <jamz@jamztang.com> | |
Permission is hereby granted, free of charge, to any person obtaining a copy | |
of this software and associated documentation files (the "Software"), to deal | |
in the Software without restriction, including without limitation the rights | |
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
copies of the Software, and to permit persons to whom the Software is furnished | |
to do so, subject to the following conditions: | |
The above copyright notice and this permission notice shall be included in all |
View Test.java
import java.io.IOException; | |
import javafx.application.Application; | |
import javafx.scene.Scene; | |
import javafx.scene.layout.StackPane; | |
import javafx.scene.web.WebEngine; | |
import javafx.scene.web.WebView; | |
import javafx.stage.Stage; | |
public class Test extends Application { |
View angle-between-points.js
var p1 = { | |
x: 20, | |
y: 20 | |
}; | |
var p2 = { | |
x: 40, | |
y: 40 | |
}; |
View NiochatServer.java
package niochat; | |
import java.net.*; | |
import java.nio.*; | |
import java.nio.channels.*; | |
import java.io.IOException; | |
import java.util.*; | |
public class NiochatServer implements Runnable { | |
private final int port; |
View css-injection.html
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>css injection | xero.nu</title> | |
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> | |
<style type="text/css"> | |
body{ | |
font: normal 12pt "Times New Roman", serif; | |
background: #ccc; | |
color: #000066; |
View Instructions.md
View NSString+XML.h
// | |
// NSString+XML.h | |
// Customizable string XML parser for NSString, NSMutableString, NSAttributedString, and NSMutableAttributedString. | |
// | |
// Created by Shilo White on 8/31/13. | |
// Copyright (c) 2013 XIDA Design & Technik. All rights reserved. | |
// | |
#import <Foundation/Foundation.h> |
View remove_svn_dirs.sh
rm -rf `find . -type d -name .svn` |
View README.md
Install ChromiumOS
- Get Chromium OS from one of the following places
- Download the vanilla build (old but stable): http://chromeos.hexxeh.net/
- NOTE: Password is
facepunch
- NOTE: Password is
- Download the nightly build (sync doesn't work): http://download-chromiumos.appspot.com/
- NOTE: If you want developer mode, you must change
_base_
in the download URL to_test_
as the base image does not have developer tools enabled - NOTE: Password is unknown, instructions for working around this are provided later
- NOTE: I could not get syncing working with this build, perhaps due to no API KEYS being provided???
- NOTE: I could not move past the welcome screen on the 64bit build due to no network being found (32bit worked)
- NOTE: If you want developer mode, you must change
- Download the vanilla build (old but stable): http://chromeos.hexxeh.net/
OlderNewer