repo
string
commit
string
message
string
diff
string
as3/as3-utils
ff4acfb3e8dd6f533ad85a008479fa04c0ec0382
changed gitignore to ignore more eclipse files
diff --git a/.gitignore b/.gitignore index 0bce7cd..379fde3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,10 +1,11 @@ target bin bin-debug bin-release *.iml .actionScriptProperties .flexLibProperties .project .settings/ -.DS_Store \ No newline at end of file +.DS_Store +org.eclipse.core.resources.prefs \ No n...
as3/as3-utils
2e4d8be719a816db06cd9510d9dc1d84fa1ac769
comments did not pass asdoc, changed <= to less or equal so it will not misinterpate a tag
diff --git a/src/utils/align/interpolateMultiX.as b/src/utils/align/interpolateMultiX.as index a4ef4a8..5efff40 100644 --- a/src/utils/align/interpolateMultiX.as +++ b/src/utils/align/interpolateMultiX.as @@ -1,19 +1,19 @@ package utils.align { /** - * interpolate multiple DisplayObjects at multiple weights at t =...
as3/as3-utils
1e590d8d72f0e1354189332ae1c8dab57318da36
Adding the "Calendar" concept, showChildren, and various date utils
diff --git a/src/utils/date/Calendar.as b/src/utils/date/Calendar.as new file mode 100644 index 0000000..ce4b027 --- /dev/null +++ b/src/utils/date/Calendar.as @@ -0,0 +1,23 @@ +/** + * User: John Lindquist + * Date: 3/16/11 + * Time: 11:27 AM + */ +package utils.date +{ + /** + * Calendar is an exception to the "pack...
as3/as3-utils
b97b3721a2c393d5961032db7fea4251843cc14e
Removed svn folder. Added url to comments for mvc files.
diff --git a/src/utils/mvc/.svn/all-wcprops b/src/utils/mvc/.svn/all-wcprops deleted file mode 100644 index 746b30b..0000000 --- a/src/utils/mvc/.svn/all-wcprops +++ /dev/null @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 41 -/svn/!svn/ver/42/trunk/src/org/as3lib/mvc -END -AbstractView.as -K 25 -svn:wc:ra_dav:ve...
as3/as3-utils
1846a26a5755cac6445ae08c5058ead7f2a640b9
added unapproved code
diff --git a/src/utils/color/Color.as b/src/utils/color/Color.as new file mode 100644 index 0000000..a8d5781 --- /dev/null +++ b/src/utils/color/Color.as @@ -0,0 +1,455 @@ +package utils.color +{ + + import flash.events.Event; + import flash.events.EventDispatcher; + + import utils.number.clamp; + + /** + * A color...
as3/as3-utils
870318ef942aa5a04b3390f686390a520c06f6a1
Removed svn folder. Added url to comments for mvc files.
diff --git a/src/utils/mvc/.svn/all-wcprops b/src/utils/mvc/.svn/all-wcprops deleted file mode 100644 index 746b30b..0000000 --- a/src/utils/mvc/.svn/all-wcprops +++ /dev/null @@ -1,35 +0,0 @@ -K 25 -svn:wc:ra_dav:version-url -V 41 -/svn/!svn/ver/42/trunk/src/org/as3lib/mvc -END -AbstractView.as -K 25 -svn:wc:ra_dav:ve...
as3/as3-utils
659b935079c264cc296de74724653e05839636be
added unapproved code
diff --git a/src/utils/color/Color.as b/src/utils/color/Color.as new file mode 100644 index 0000000..a8d5781 --- /dev/null +++ b/src/utils/color/Color.as @@ -0,0 +1,455 @@ +package utils.color +{ + + import flash.events.Event; + import flash.events.EventDispatcher; + + import utils.number.clamp; + + /** + * A color...
as3/as3-utils
35f14845574c408784cceb9e019866ebfd8c8fa5
modified range
diff --git a/src/utils/math/Range.as b/src/utils/math/Range.as index 446de3e..af50cfb 100644 --- a/src/utils/math/Range.as +++ b/src/utils/math/Range.as @@ -1,212 +1,212 @@ /* CASA Lib for ActionScript 3.0 Copyright (c) 2009, Aaron Clinger & Contributors of CASA Lib All rights reserved. Redistributio...
as3/as3-utils
be062acc6fc530a6a2398255f833b602a824735e
edited README
diff --git a/README.md b/README.md index 31676c5..9b50f62 100644 --- a/README.md +++ b/README.md @@ -1,43 +1,45 @@ # as3-utils ActionScript 3 Utilities and Object Extensions provided as reusable package-level functions that solve common problems. # What have you got for me? HEAPS, too much to list here right ...
as3/as3-utils
9846cce18fe00d398f201a9870cce3e562169fd4
Added adChild(), removeChild(), and removeChildAt() which all allow you to use these functions as usual but with many of the typical errors supressed like the index being out of bounds. Removed attTargetToParent() and removeTargetFromParent() since they aren't quite as robust as the new functions added. Fixed a minor e...
diff --git a/src/utils/display/addChild.as b/src/utils/display/addChild.as new file mode 100644 index 0000000..a440833 --- /dev/null +++ b/src/utils/display/addChild.as @@ -0,0 +1,30 @@ +package utils.display +{ + import flash.display.DisplayObject; + import flash.display.DisplayObjectContainer; + + + /** + * Allows ...
as3/as3-utils
e94058ecb708fe3c1cb9e632b1eda9b6c3f8899c
Added fullscreen package. tweaks to docs
diff --git a/src/utils/color/getColor.as b/src/utils/color/getColor.as index 5e6bdc3..6fec4b3 100644 --- a/src/utils/color/getColor.as +++ b/src/utils/color/getColor.as @@ -1,21 +1,21 @@ package utils.color { /** Converts a series of individual RGB(A) values to a 32-bit ARGB color value. - @param r: A uin...
as3/as3-utils
0c640cbaead16c248d7fe34fda8681ec0d2307d4
assign()
diff --git a/src/utils/object/assign.as b/src/utils/object/assign.as new file mode 100644 index 0000000..d908348 --- /dev/null +++ b/src/utils/object/assign.as @@ -0,0 +1,25 @@ +package utils.object { + + + + /** + * Assign properties from params to an Object. + * @param obj Target Object + * @param params Source Ob...
as3/as3-utils
812afc514150be799567a4a59d90921135232cc0
Reverted === and !==, my bad
diff --git a/src/utils/array/arraysAreEqual.as b/src/utils/array/arraysAreEqual.as index 33d2ecb..13cc945 100644 --- a/src/utils/array/arraysAreEqual.as +++ b/src/utils/array/arraysAreEqual.as @@ -1,37 +1,32 @@ -package utils.array -{ +package utils.array { /** * Compares two arrays and returns a boolean ind...
as3/as3-utils
70c5246c4883caf0bbd8e59e5c85973362658a01
added some new drawing shape functions
diff --git a/src/utils/draw/createCircleShape.as b/src/utils/draw/createCircleShape.as new file mode 100644 index 0000000..e397a43 --- /dev/null +++ b/src/utils/draw/createCircleShape.as @@ -0,0 +1,31 @@ +package utils.draw +{ + import flash.display.Graphics; + import flash.display.Shape; + + /** + * Create a shape ...
as3/as3-utils
216ca88bbad986cbe3892c8d12f1f0d51c2c94f7
renamed timeRelationships to TimeRelationships. added toggleAMPM
diff --git a/src/utils/date/timeRelationships.as b/src/utils/date/TimeRelationships.as similarity index 97% rename from src/utils/date/timeRelationships.as rename to src/utils/date/TimeRelationships.as index 326dc7b..4592f57 100644 --- a/src/utils/date/timeRelationships.as +++ b/src/utils/date/TimeRelationships.as @@ -...
as3/as3-utils
bab4496c818bd0ab0282e342ed1eed4eaee29c89
added IDisplayObject
diff --git a/src/utils/display/IDisplayObject.as b/src/utils/display/IDisplayObject.as new file mode 100644 index 0000000..a22f83d --- /dev/null +++ b/src/utils/display/IDisplayObject.as @@ -0,0 +1,26 @@ +package utils.display +{ + import flash.display.DisplayObject; + + /** + * An interface to work around the lack o...
as3/as3-utils
685f04cbae836eab7010619cf9c5b0df13918a56
Added new class TextFieldWrapper. renamed utils.xml.constants to utils.xml.XMLConstants.
diff --git a/src/utils/textField/TextFieldWrapper.as b/src/utils/textField/TextFieldWrapper.as new file mode 100644 index 0000000..ebfcb6f --- /dev/null +++ b/src/utils/textField/TextFieldWrapper.as @@ -0,0 +1,45 @@ +package utils.textField +{ + import flash.display.MovieClip; + import flash.text.TextField; + + /** + ...
as3/as3-utils
65ad0e81bd262cd67888e035c9feceb0b487420e
added circular dictionary added stricktIs
diff --git a/src/utils/dictionary/CircularDictionary.as b/src/utils/dictionary/CircularDictionary.as new file mode 100644 index 0000000..fccbe07 --- /dev/null +++ b/src/utils/dictionary/CircularDictionary.as @@ -0,0 +1,76 @@ +package utils.dictionary +{ + import flash.errors.IllegalOperationError; + import flash.utils....
as3/as3-utils
79ac310b15fa6b7059a311cfa084c4b10a74fbb4
Added isRoughlyEqual()
diff --git a/.gitignore b/.gitignore index 8a0c108..0bce7cd 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,10 @@ target bin bin-debug bin-release -*.iml \ No newline at end of file +*.iml +.actionScriptProperties +.flexLibProperties +.project +.settings/ +.DS_Store \ No newline at end of file diff --git a/src/...
as3/as3-utils
3374510c48cac1478d8c4c06b0177fdce96a832b
fixed example text
diff --git a/src/utils/number/max.as b/src/utils/number/max.as index 7a2879e..6f1e9cc 100644 --- a/src/utils/number/max.as +++ b/src/utils/number/max.as @@ -1,29 +1,29 @@ package utils.number { /** Evaluates <code>val1</code> and <code>val2</code> and returns the larger value. Unlike <code>Math.max</code> this...
as3/as3-utils
c7d9bd3f13e380545651450e273d5d56e8903d8e
Few API changes in new utils caused by refactoring from older Utilitaris libraries (no getters)
diff --git a/src/utils/location/getLocationName.as b/src/utils/location/getLocationName.as index 64d27fb..d2b0814 100644 --- a/src/utils/location/getLocationName.as +++ b/src/utils/location/getLocationName.as @@ -1,52 +1,50 @@ package utils.location { import flash.external.ExternalInterface; - import flash.net.URLRe...
as3/as3-utils
bc190e734400d69b62b0cc9aaa493e470de827b6
cropBitmapData(), scheduleForNextFrame() and traceChildren()
diff --git a/src/utils/display/cropBitmapData.as b/src/utils/display/cropBitmapData.as new file mode 100644 index 0000000..6457186 --- /dev/null +++ b/src/utils/display/cropBitmapData.as @@ -0,0 +1,23 @@ +package utils.display { + import flash.display.BitmapData; + import flash.geom.Point; + import flash.geom.Rectangle...
as3/as3-utils
f4ef8a745f83a293287702920cd319d3f761716f
truncate2()
diff --git a/src/utils/string/truncate2.as b/src/utils/string/truncate2.as new file mode 100644 index 0000000..38454f1 --- /dev/null +++ b/src/utils/string/truncate2.as @@ -0,0 +1,36 @@ +package utils.string { + + + + /** + * Returns a String truncated to a specified length with optional suffix. + * @param value Inpu...
as3/as3-utils
cd4fc57a7cf7456c4dc5c3d4587726eda54e7f5a
new String utils
diff --git a/src/utils/string/padLeft.as b/src/utils/string/padLeft.as new file mode 100644 index 0000000..3d9fb2c --- /dev/null +++ b/src/utils/string/padLeft.as @@ -0,0 +1,24 @@ +package utils.string { + + + + /** + * Pads value with specified padChar character to a specified length from the left. + * @param value ...
as3/as3-utils
68d7eb4f03172e3ba9b277c55facfcf289e737ee
randomCharacters() optimization
diff --git a/src/utils/string/randomCharacters.as b/src/utils/string/randomCharacters.as index 17aa00b..f30c720 100644 --- a/src/utils/string/randomCharacters.as +++ b/src/utils/string/randomCharacters.as @@ -1,13 +1,24 @@ -package utils.string -{ +package utils.string { + + + /** - * Generate a set of random charac...
as3/as3-utils
efeb9db80d755aaef374176df5889bb7a0677cf8
trim(), ltrim() and rtrim() optimizations
diff --git a/src/utils/string/ltrim.as b/src/utils/string/ltrim.as index 11cedcd..a9cc2f3 100644 --- a/src/utils/string/ltrim.as +++ b/src/utils/string/ltrim.as @@ -1,26 +1,25 @@ -package utils.string -{ +package utils.string { + + + /** * Removes whitespace from the front of the specified string. * - * ...
as3/as3-utils
d0e2488d5b2081a6a0bba0a4deac60fecd7a738f
New String utils
diff --git a/src/utils/string/afterFirst.as b/src/utils/string/afterFirst.as new file mode 100644 index 0000000..e970a8e --- /dev/null +++ b/src/utils/string/afterFirst.as @@ -0,0 +1,28 @@ +package utils.string { + + + + /** + * Returns everything after the first occurrence of the provided character in the String. + ...
as3/as3-utils
6e62f25607ff079ee4633c1d5dfb65175d1fac80
New ratio utils
diff --git a/src/utils/ratio/defineRect.as b/src/utils/ratio/defineRect.as new file mode 100644 index 0000000..ef700bd --- /dev/null +++ b/src/utils/ratio/defineRect.as @@ -0,0 +1,14 @@ +package utils.ratio { + import flash.geom.Rectangle; + + + + public function defineRect(size:Rectangle, width:Number, height:Number, ...
as3/as3-utils
d9851e71a03ae950113e2a4953025a10c2c3a22c
inspect() now uses tabs to display tree structure
diff --git a/src/utils/object/inspect.as b/src/utils/object/inspect.as index 6222e6a..7d1479f 100644 --- a/src/utils/object/inspect.as +++ b/src/utils/object/inspect.as @@ -1,34 +1,39 @@ -package utils.object -{ +package utils.object { import flash.utils.describeType; - public function inspect(obj:Object, depth:int...
as3/as3-utils
b8dcdb732940cfd1165b1290eb39247093375135
New object utils
diff --git a/src/utils/object/contains.as b/src/utils/object/contains.as new file mode 100644 index 0000000..31a143c --- /dev/null +++ b/src/utils/object/contains.as @@ -0,0 +1,25 @@ +package utils.object { + + + + /** + * Searches the first level properties of an Object for a another Object. + * @param obj Object to...
as3/as3-utils
4b7a6752184e6c00d6da05a144d2b02b3ff16834
New random utils
diff --git a/src/utils/number/fastMax2.as b/src/utils/number/fastMax2.as new file mode 100644 index 0000000..0c6cfe9 --- /dev/null +++ b/src/utils/number/fastMax2.as @@ -0,0 +1,16 @@ +package utils.number { + + + + /** + * Get fast max for two numbers. + * @param val1 Number A + * @param val2 Number B + * @return M...
as3/as3-utils
6e899653a074d4a447cc00bbba36b67b6263d95f
New location utils
diff --git a/src/utils/location/getDomain.as b/src/utils/location/getDomain.as new file mode 100644 index 0000000..f9bb6e6 --- /dev/null +++ b/src/utils/location/getDomain.as @@ -0,0 +1,24 @@ +package utils.location { + import flash.display.DisplayObject; + + + + /** + * Detects MovieClip's domain location. + * Funct...
as3/as3-utils
80c6eb7350a714399932136de4d11a5309273502
New JS utils
diff --git a/src/utils/js/callJSFunction.as b/src/utils/js/callJSFunction.as new file mode 100644 index 0000000..f57086b --- /dev/null +++ b/src/utils/js/callJSFunction.as @@ -0,0 +1,40 @@ +package utils.js { + import flash.external.ExternalInterface; + + + + /** + * Call a JS function. + * @param func Name of the fu...
as3/as3-utils
0e87696c406e33db272900436843fe7138101648
Docs update
diff --git a/src/utils/date/formatDate.as b/src/utils/date/formatDate.as index e106d32..cca4465 100644 --- a/src/utils/date/formatDate.as +++ b/src/utils/date/formatDate.as @@ -1,406 +1,409 @@ package utils.date { import utils.conversion.minutesToSeconds; import utils.number.addLeadingZero; import utils.number.f...
as3/as3-utils
28b01cdb6f0b45ea7e609d722235921056664d8e
New geom utils
diff --git a/src/utils/geom/getRectangleCenter.as b/src/utils/geom/getRectangleCenter.as new file mode 100644 index 0000000..cb781ca --- /dev/null +++ b/src/utils/geom/getRectangleCenter.as @@ -0,0 +1,14 @@ +package utils.geom { + import flash.geom.Point; + import flash.geom.Rectangle; + + + + /** + * Calculates cente...
as3/as3-utils
9aedf754f67463435e76f54f0c2ab86f1196cf01
New Time utils
diff --git a/src/utils/date/timeCode.as b/src/utils/date/timeCode.as new file mode 100644 index 0000000..31617ea --- /dev/null +++ b/src/utils/date/timeCode.as @@ -0,0 +1,18 @@ +package utils.date { + + + + /** + * Utility function for generating time code given a number seconds. + * @param sec Seconds + * @return T...
as3/as3-utils
c435d480eeb1ce5d26c607ce045444a89ae48dca
New Date utils
diff --git a/src/utils/date/dayAbbrNames.as b/src/utils/date/dayAbbrNames.as new file mode 100644 index 0000000..8e31d66 --- /dev/null +++ b/src/utils/date/dayAbbrNames.as @@ -0,0 +1,7 @@ +package utils.date { + + + public const dayAbbrNames:Array = [ "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" ]; + + +} diff --git...
as3/as3-utils
7be40d67ac86ce3daf48c6f18477a3c27578b14a
comments did not pass asdoc, changed <= to less or equal so it will not misinterpate a tag
diff --git a/src/utils/align/interpolateMultiX.as b/src/utils/align/interpolateMultiX.as index a4ef4a8..5efff40 100644 --- a/src/utils/align/interpolateMultiX.as +++ b/src/utils/align/interpolateMultiX.as @@ -1,19 +1,19 @@ package utils.align { /** - * interpolate multiple DisplayObjects at multiple weights at t =...
as3/as3-utils
0e8884f9d321a4a7e261bdf895ca0f3976a55b0c
Some general cleanup. Added test for clone(object). Added some comments. Added my name to the README.
diff --git a/README.md b/README.md index d9720e9..31676c5 100644 --- a/README.md +++ b/README.md @@ -1,42 +1,43 @@ -# as3-utils +# as3-utils ActionScript 3 Utilities and Object Extensions provided as reusable package-level functions that solve common problems. # What have you got for me? -HEAPS, too much to li...
as3/as3-utils
010bcd1ee086aaea7f6222d41eefcb0651091831
IntelliJ told me that some logic could be simplified. must... obey... ide... overlord...
diff --git a/src/utils/xml/isValidXML.as b/src/utils/xml/isValidXML.as index 25bbfcc..bc369a3 100644 --- a/src/utils/xml/isValidXML.as +++ b/src/utils/xml/isValidXML.as @@ -1,34 +1,29 @@ package utils.xml { /** * Checks whether the specified string is valid and well formed XML. * * @param data The string t...
as3/as3-utils
1537a7846324e43c8f17e454c668dd898f37d211
Added tests for alignCenter(). Tests exposed incorrect algorithm in xAlignCenter and yAlignCenter. Replaced with algorithm found at http://chargedweb.com/labs/2010/07/27/alignutil_align_objects_easily/ which also takes into account the object's rotation and scale so it should be more useful overall.
diff --git a/src/utils/align/xAlignCenter.as b/src/utils/align/xAlignCenter.as index f8a244b..1d4d4b6 100644 --- a/src/utils/align/xAlignCenter.as +++ b/src/utils/align/xAlignCenter.as @@ -1,12 +1,27 @@ package utils.align { import flash.display.DisplayObject; + import flash.geom.Point; + import flash.geom.Re...
as3/as3-utils
20aac7ff1ff92eec2838038a30c8f8f5ad1f4fe4
added hamcrest and mockolate library swcs and updated .gitignore to disregard IntelliJ .iml files
diff --git a/.gitignore b/.gitignore index ce8a1a2..8a0c108 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ target bin bin-debug -bin-release \ No newline at end of file +bin-release +*.iml \ No newline at end of file diff --git a/libs/hamcrest-as3-flex-1.1.3.swc b/libs/hamcrest-as3-flex-1.1.3.swc new file ...
as3/as3-utils
8470f13347653b56e34cd2f187802976b7e0b0a2
adding getNextDay and getPreviousDay with tests
diff --git a/src/utils/date/getNextDay.as b/src/utils/date/getNextDay.as new file mode 100644 index 0000000..a716631 --- /dev/null +++ b/src/utils/date/getNextDay.as @@ -0,0 +1,23 @@ +package utils.date +{ + /** Returns the next calender date following the provided Date. + * If no Date is provided, the current date...
as3/as3-utils
fb7d4e1127160bc7404f060bfd782ff10540459d
utils to go back and forth from cartesian to polar coordinates
diff --git a/src/utils/geom/cartesianToPolarCoordinates.as b/src/utils/geom/cartesianToPolarCoordinates.as new file mode 100644 index 0000000..8ff0f6a --- /dev/null +++ b/src/utils/geom/cartesianToPolarCoordinates.as @@ -0,0 +1,25 @@ +/** + * Created by IntelliJ IDEA. + * User: Ian McLean + * Date: Sep 30, 2010 + * Tim...
as3/as3-utils
4fc142b97c2a006bd9f887c1c64a518ba8d86f85
had to edit intellij template
diff --git a/src/utils/date/getFullDayIndex.as b/src/utils/date/getFullDayIndex.as deleted file mode 100644 index 5588a73..0000000 --- a/src/utils/date/getFullDayIndex.as +++ /dev/null @@ -1,24 +0,0 @@ -package utils.date -{ - import mx.formatters.DateBase; - - /** - * Returns the index of the day that the full ...
as3/as3-utils
43db7338ed4489eab2b23563e176646ccae70f44
had to edit intellij template
diff --git a/src/utils/range/randomRangeDate.as b/src/utils/range/randomRangeDate.as index 7f68c42..cea3c40 100644 --- a/src/utils/range/randomRangeDate.as +++ b/src/utils/range/randomRangeDate.as @@ -1,44 +1,43 @@ /** * Created by IntelliJ IDEA. - * User: Ian + * User: Ian McLean * Date: Sep 26, 2010 * Time: 1:...
as3/as3-utils
a59fd7170128ed1dda60ed230ed00ccd651c738c
util to generate a date within a range
diff --git a/src/utils/range/randomRangeDate.as b/src/utils/range/randomRangeDate.as new file mode 100644 index 0000000..7f68c42 --- /dev/null +++ b/src/utils/range/randomRangeDate.as @@ -0,0 +1,44 @@ +/** + * Created by IntelliJ IDEA. + * User: Ian + * Date: Sep 26, 2010 + * Time: 1:59:33 PM + * To change this templat...
as3/as3-utils
35a4af5b1dd8dd37cec5a4c03f15d5ee072a442a
NOTES about as3-utils, issues to fix, functionality duplication audit results.
diff --git a/NOTES.md b/NOTES.md new file mode 100644 index 0000000..55f9102 --- /dev/null +++ b/NOTES.md @@ -0,0 +1,251 @@ +# as3-utils + +# ISSUES + +- parameter names are not descriptive +- variable names are not descriptive +- nomenclature is inconsistent +-- use functional-programming names? +-- use designer frien...
as3/as3-utils
d1d0a161c6321018f098fa883ac41834e08da483
reimplemented alignLeft, alignRight to behave like the Align panel in Flash IDE.
diff --git a/src/utils/align/alignLeft.as b/src/utils/align/alignLeft.as index 42c850e..8bb810b 100644 --- a/src/utils/align/alignLeft.as +++ b/src/utils/align/alignLeft.as @@ -1,13 +1,66 @@ package utils.align { - import flash.display.DisplayObject; - /** - * Left align object to target. + * Aligns all the targe...
as3/as3-utils
420212ef88077d6484012593e719f81e316834c4
fixed ASDoc errors with unencoded html-entities
diff --git a/src/utils/color/averageBlue.as b/src/utils/color/averageBlue.as index 7bee2b5..177d77f 100644 --- a/src/utils/color/averageBlue.as +++ b/src/utils/color/averageBlue.as @@ -1,17 +1,18 @@ package utils.color { import flash.display.DisplayObject; import flash.geom.Rectangle; /** - * Sample & averag...
as3/as3-utils
0944ff8f7c00ae85dd447d2e3d961df8f2890e22
updating readme
diff --git a/README.md b/README.md index dcc9128..d9720e9 100644 --- a/README.md +++ b/README.md @@ -1,42 +1,42 @@ # as3-utils ActionScript 3 Utilities and Object Extensions provided as reusable package-level functions that solve common problems. # What have you got for me? HEAPS, too much to list here right...
as3/as3-utils
c57898c5c828fab90cb90aee21bd31cc94f2a800
updating readme
diff --git a/README.md b/README.md index 71672b5..dcc9128 100644 --- a/README.md +++ b/README.md @@ -1,38 +1,42 @@ # as3-utils ActionScript 3 Utilities and Object Extensions provided as reusable package-level functions that solve common problems. # What have you got for me? HEAPS, too much to list here right...
as3/as3-utils
53c905acec5ac80838e9ccf200ddf780b78d28ba
ignore generated directories
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ce8a1a2 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +target +bin +bin-debug +bin-release \ No newline at end of file
as3/as3-utils
0263a176ea94f33418ec585c24bf11f48824b0a4
fix asdoc error about @see and HTML
diff --git a/src/utils/validation/isEmail.as b/src/utils/validation/isEmail.as index 5c7cfc0..1306842 100644 --- a/src/utils/validation/isEmail.as +++ b/src/utils/validation/isEmail.as @@ -1,15 +1,15 @@ package utils.validation { /** Determines if String is a valid email address. @param email: String to ver...
as3/as3-utils
940ee8da6d079bdaf1047ca407916db20d8ddd68
build.xml: clean, initialize, compile, test, report, doc, package.
diff --git a/build.properties b/build.properties new file mode 100644 index 0000000..6ec6a0f --- /dev/null +++ b/build.properties @@ -0,0 +1,12 @@ +project.name=as3-utils + +build.groupId=as3 +build.artifactId=as3-utils +build.version=0.1 +build.artifact=${build.artifactId}-${build.version} + +test.runner=UtilsTestRunn...
pattex/jekyll_scaffold
5d96d200e833fb0691d97d35f6280de21b82a8b5
Added a gitignore file.
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cf30e03 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +_site/*
pattex/jekyll_scaffold
5b3693fc8612f217ca5c13eecd1d20f6c648177d
Page title should link to home.
diff --git a/_layouts/default.html b/_layouts/default.html index c0b1893..e3aa4a9 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,17 +1,17 @@ <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="content-type" content="text/html; charset...
pattex/jekyll_scaffold
58ed661f5241c62c3631584658c02f8c9d202552
Useless junk removed.
diff --git a/_config.yml b/_config.yml index c74001e..c7cb024 100644 --- a/_config.yml +++ b/_config.yml @@ -1,5 +1,4 @@ ---- - url: http://example.com/jjjsite/ - author: John Doe - email: john@example.com - title: johns juicy joke site \ No newline at end of file +url: http://example.com/jjjsite/ +author: John Doe...
pattex/jekyll_scaffold
5d6720a110e1343fcc2ba30cc73abf49c4f31dd2
Redundant "/" removed.
diff --git a/atom.xml b/atom.xml index 1b13e6e..fd2315b 100644 --- a/atom.xml +++ b/atom.xml @@ -1,27 +1,27 @@ --- layout: nil --- <?xml version="1.0" encoding="utf-8"?> <feed xmlns="http://www.w3.org/2005/Atom"> <title>{{ site.title }}</title> - <link href="{{ site.url }}/atom.xml" rel="self"/> + <link href="...
pattex/jekyll_scaffold
6137888535e314ca268be2a279a303bc7d273ef1
Added a readme file.
diff --git a/README.textile b/README.textile new file mode 100644 index 0000000..4031c77 --- /dev/null +++ b/README.textile @@ -0,0 +1,28 @@ +h1. Jekyll Scaffold + +I made a few websites lately. For generating the static HTML i used "Jekyll":http://github.com/mojombo/jekyll/ which i really like. But to save oneself to ...
lfundaro/GoogleCodeJam
d89720f5b05b989c22a8003bca8bb15c96a703a4
Changed index start.
diff --git a/codejam-2011/store_credit/s_sol.hs b/codejam-2011/store_credit/s_sol.hs index ee79bce..851ebd8 100644 --- a/codejam-2011/store_credit/s_sol.hs +++ b/codejam-2011/store_credit/s_sol.hs @@ -1,56 +1,56 @@ import Data.List (genericSplitAt) type Index = Integer type II = (Integer,Index) index :: [Int...
lfundaro/GoogleCodeJam
cc85f49cebd582adc30919cdb43c50d9dd39c4eb
Added input example.
diff --git a/codejam-2011/store_credit/input b/codejam-2011/store_credit/input new file mode 100644 index 0000000..6ab4b08 --- /dev/null +++ b/codejam-2011/store_credit/input @@ -0,0 +1,10 @@ +3 +100 +3 +5 75 25 +200 +7 +150 24 79 50 88 345 3 +8 +8 +2 1 9 4 4 56 90 3 \ No newline at end of file
lfundaro/GoogleCodeJam
da8c0ba0af2cfba9db2b09fa693f2ec0694f4a74
Added input and output processing.
diff --git a/codejam-2011/store_credit/s_sol.hs b/codejam-2011/store_credit/s_sol.hs index d224bd0..ee79bce 100644 --- a/codejam-2011/store_credit/s_sol.hs +++ b/codejam-2011/store_credit/s_sol.hs @@ -1,33 +1,56 @@ +import Data.List (genericSplitAt) + type Index = Integer type II = (Integer,Index) index :: [Int...
lfundaro/GoogleCodeJam
618f93ad662ea432ea8c1109902a21ebcceee4d9
Added ghci based solution for the Store Credit problem - South Africa 2010. I still need to figure out input and output.
diff --git a/codejam-2011/store_credit/s_sol.hs b/codejam-2011/store_credit/s_sol.hs new file mode 100644 index 0000000..d224bd0 --- /dev/null +++ b/codejam-2011/store_credit/s_sol.hs @@ -0,0 +1,33 @@ +type Index = Integer +type II = (Integer,Index) + +index :: [Integer] -> [II] +index x = zip x [0..] + +norep :: (...
lfundaro/GoogleCodeJam
09694bcd5d53e963f905404b07b71930eff33500
Agregando el problema del Google Code Jam Qualification Round Africa and Arabia 2011 de nombre 'Closing the Loop'
diff --git a/codejam-2011/closing_the_loop/loop.py b/codejam-2011/closing_the_loop/loop.py new file mode 100644 index 0000000..c53abd7 --- /dev/null +++ b/codejam-2011/closing_the_loop/loop.py @@ -0,0 +1,53 @@ +import sys + +# calculates the size of the rope loop given the two lists +# of ropes by color +def size_of_lo...
lfundaro/GoogleCodeJam
2c8e3fc7e8d2b80e889cb4e3cc00e773abfaab55
Adding Python solution for t9 spelling and small/large output
diff --git a/javier/t9spelling/t9spelling.py b/javier/t9spelling/t9spelling.py new file mode 100644 index 0000000..5741667 --- /dev/null +++ b/javier/t9spelling/t9spelling.py @@ -0,0 +1,31 @@ + + +#Translate the given word 'word' using the letters dictionary +#letters-to-numbers given in dict +def trans_word(word,dic):...
lfundaro/GoogleCodeJam
86389d4a48fbfd7d4e86228750943ba18814af7b
Changin some small features to improve speed... Improves just a bit -> The fact of using lists makes it crappy. Important: This problem is so an efficient access and distribution of memory problem. So C/C++. Be careful, be efficient from the beginning
diff --git a/javier/crop-triangles/crop.py b/javier/crop-triangles/crop.py index 774efa8..9820169 100644 --- a/javier/crop-triangles/crop.py +++ b/javier/crop-triangles/crop.py @@ -1,48 +1,55 @@ # Google code jam - Online round 1B # Crop triangles - Small # Javier Fernandez: javierfdr@gmail.com import sys out_fi...
lfundaro/GoogleCodeJam
e38d991019fb5fa33b305ef6eb146f86f19cfa91
Adding code for crop-triangles . It only solves the small input, no doubt that python is not good for this problem. There are optimizations that can be done at the beginning for avoiding unnecessary comparisons, but mostly organizing the pairs in a matrix.
diff --git a/javier/crop-triangles/crop.py b/javier/crop-triangles/crop.py new file mode 100644 index 0000000..774efa8 --- /dev/null +++ b/javier/crop-triangles/crop.py @@ -0,0 +1,48 @@ +# Google code jam - Online round 1B +# Crop triangles - Small +# Javier Fernandez: javierfdr@gmail.com + +import sys +out_file = open...
lfundaro/GoogleCodeJam
dec4bae842a0096c59491c701caf3977e76540b3
final numbers -> lack of input/output
diff --git a/javier/numbers/numbers.hs b/javier/numbers/numbers.hs index 25e8906..804fe27 100644 --- a/javier/numbers/numbers.hs +++ b/javier/numbers/numbers.hs @@ -1,73 +1,86 @@ {- Google code jam - Online round A 2008 - warming up Problem: Numbers Implementation: free precision numbers (on lists) multipli...
lfundaro/GoogleCodeJam
85b0d07f929c84239ca4fdf5d07554f4befaea2d
Adding numbers problem from Online Round 1A google code jam Haskell implementation for three square root calculation
diff --git a/javier/numbers/numbers.hs b/javier/numbers/numbers.hs new file mode 100644 index 0000000..25e8906 --- /dev/null +++ b/javier/numbers/numbers.hs @@ -0,0 +1,73 @@ + +{- + Google code jam - Online round A 2008 - warming up + Problem: Numbers + Implementation: free precision numbers (on lists) multiplied + ...
lfundaro/GoogleCodeJam
66e899048fd065fea190324c671735630087d24e
minimum scalar product solved, what a MAMEY this was, 15 min
diff --git a/lorenzo/__init__.py b/lorenzo/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lorenzo/min_scalar/__init__.py b/lorenzo/min_scalar/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/lorenzo/min_scalar/min_scalar.py b/lorenzo/min_scalar/min_scalar.py new file mode 10064...
lfundaro/GoogleCodeJam
fe2745a2455f104ed9b3292b96c82f49d53ef300
get2work is done...
diff --git a/lorenzo/get_to_work/get_to_work.py b/lorenzo/get_to_work/get_to_work.py new file mode 100644 index 0000000..8740053 --- /dev/null +++ b/lorenzo/get_to_work/get_to_work.py @@ -0,0 +1,83 @@ +#! /usr/bin/python + +import sys + +def prepare_string(string): + string = string.split(' ') + for i in range(le...
lfundaro/GoogleCodeJam
f6c613323a86df39850f2a59c2b140eff8d55183
odd man out solved, finally
diff --git a/lorenzo/minority/minority.py b/lorenzo/minority/minority.py index 3146b0b..135285c 100644 --- a/lorenzo/minority/minority.py +++ b/lorenzo/minority/minority.py @@ -1,80 +1,65 @@ #! /usr/bin/python -def minority(T): - if len(T) <= 1: +import sys + +def minority(T, length): + if length <= 1: ...
sipsorcery/samples
222496daebba7660859197739bf6d7e99966a1cb
Added CallAnnouncement ruby script.
diff --git a/CallAnnouncement.rb b/CallAnnouncement.rb new file mode 100644 index 0000000..8640fdb --- /dev/null +++ b/CallAnnouncement.rb @@ -0,0 +1,232 @@ +# Copyright 2011 Mike Telis +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License....
sipsorcery/samples
36aa8b69693ab69c1c271c1577b60863a23dd245
Added wizard consumer script.
diff --git a/wizardconsumer.rb b/wizardconsumer.rb new file mode 100644 index 0000000..a8ff3f8 --- /dev/null +++ b/wizardconsumer.rb @@ -0,0 +1,22 @@ +require 'mikesgem' + +settings = lookup.GetSettings() +Tz = settings.GetTimezoneOffset() +Country = settings.Options.countrycode +Area = settings.Options.areacode +Enabl...
sipsorcery/samples
ec8c0622913f36dcc0bddbe47cd6ec64221add16
Adding dialplan wizard script
diff --git a/dialplanwizard.rb b/dialplanwizard.rb new file mode 100644 index 0000000..e5ee670 --- /dev/null +++ b/dialplanwizard.rb @@ -0,0 +1,257 @@ +# Copyright 2010 Mike Telis +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# Yo...
jrockway/kiokux-debug-leaks
b74bd89514b4e6eec7ab114531f01a5775a981ef
initial import
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..78371b7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +blib +inc +pm_to_blib +META.yml +MANIFEST +MANIFEST.* +Makefile +Makfile.old diff --git a/Makefile.PL b/Makefile.PL new file mode 100644 index 0000000..a3e3361 --- /dev/null +++ b/Makefile.PL...
shashi/shellsparrow
6d00e231e32d3638a3e27c23e5f19b8e37e513e9
I am not planning world dominance :)
diff --git a/sample.shellsparrowrc b/sample.shellsparrowrc index 51ff807..d86af92 100644 --- a/sample.shellsparrowrc +++ b/sample.shellsparrowrc @@ -1,10 +1,10 @@ # You have to create a file called .sparrowshellrc in the $HOME directory # Here is a sample config file that you can build on [jabbersh] jid: mysparro...
shashi/shellsparrow
8ffdbacbce66903a99aa093dbc249468b7ebfdf7
added LICENSE
diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..c5f829d --- /dev/null +++ b/COPYING @@ -0,0 +1,24 @@ +The MIT License + +Copyright (c) 2009 Shashi Gowda <connect2shashi@gmail.com> + +Permission is hereby granted, free of charge, to any person +obtaining a copy of this software and associated document...
shashi/shellsparrow
48c9bc476730acfe2c9d7b6f903f2b7f20606eca
1st commit
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b25c15b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*~ diff --git a/README.textile b/README.textile new file mode 100644 index 0000000..dd010ca --- /dev/null +++ b/README.textile @@ -0,0 +1,26 @@ +h1. ShellSparrow v0.1 + +ShellSparrow lets you c...
spencertipping/webtimer
e70eb844638470a53e56b1da1d0fc7d2dd4f726b
Added input filtering
diff --git a/timer.html b/timer.html index ce91d2b..700599f 100644 --- a/timer.html +++ b/timer.html @@ -1,107 +1,109 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery....
spencertipping/webtimer
f05c7caee08676ad4c47def8ecb5cdbf152c0107
Treating all numbers as n+1. This is to avoid problems with a number having been up for a while. Rounding up should help.
diff --git a/timer.html b/timer.html index 33d99fd..ce91d2b 100644 --- a/timer.html +++ b/timer.html @@ -1,107 +1,107 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery....
spencertipping/webtimer
591c0ab8a0dc17e4e877e2b499f4edfe629edd82
Showing throughput
diff --git a/timer.html b/timer.html index ba1d7f7..33d99fd 100644 --- a/timer.html +++ b/timer.html @@ -1,106 +1,107 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery....
spencertipping/webtimer
0215465d27505e71ba84464ee6453a53e17b6bad
Disabling inputs
diff --git a/timer.html b/timer.html index 54fb8a1..ba1d7f7 100644 --- a/timer.html +++ b/timer.html @@ -1,104 +1,106 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery....
spencertipping/webtimer
aff80e8d2b564510c75848bd91240b7cffbcb1a8
Making conservative estimate less conservative
diff --git a/timer.html b/timer.html index 37f9498..54fb8a1 100644 --- a/timer.html +++ b/timer.html @@ -1,104 +1,104 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery....
spencertipping/webtimer
d5f13de21ce833469768c75b516c12ece1961d87
Using SD instead of variance
diff --git a/timer.html b/timer.html index b01a79c..37f9498 100644 --- a/timer.html +++ b/timer.html @@ -1,103 +1,104 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery....
spencertipping/webtimer
f8221870598e8fa2f3dcbd91fdf81346899fcb77
Fix function
diff --git a/timer.html b/timer.html index 864b21c..b01a79c 100644 --- a/timer.html +++ b/timer.html @@ -1,103 +1,103 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery....
spencertipping/webtimer
8b1169a2cc6aa3f3830a251de9dd83f8a921fd50
Fix space
diff --git a/timer.html b/timer.html index af3c3f9..864b21c 100644 --- a/timer.html +++ b/timer.html @@ -1,103 +1,103 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery....
spencertipping/webtimer
96002d66920d6992df12e36af5428f8f2b7c7f5a
Put in lots of debugging code
diff --git a/timer.html b/timer.html index b023eaf..af3c3f9 100644 --- a/timer.html +++ b/timer.html @@ -1,92 +1,103 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.m...
spencertipping/webtimer
d69c813f559c200b99e1d14f979f6b07bf751092
Revised the estimation logic and added statistical variance.
diff --git a/timer.html b/timer.html index 6a60fe9..b023eaf 100644 --- a/timer.html +++ b/timer.html @@ -1,74 +1,92 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.mi...
spencertipping/webtimer
634b57e4da3c378cc34b58943c279e8e8422bfc5
Fix variable name
diff --git a/timer.html b/timer.html index 490161b..6a60fe9 100644 --- a/timer.html +++ b/timer.html @@ -1,74 +1,74 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.mi...
spencertipping/webtimer
f48f82b2d0425052b0801a33ebc963c722dd13e2
Sorting results
diff --git a/timer.html b/timer.html index 98e1b99..490161b 100644 --- a/timer.html +++ b/timer.html @@ -1,66 +1,74 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.mi...
spencertipping/webtimer
ff655da8a463449cf47862c463e069bb81017568
Fix variable name
diff --git a/timer.html b/timer.html index b10b2a4..98e1b99 100644 --- a/timer.html +++ b/timer.html @@ -1,66 +1,66 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.mi...
spencertipping/webtimer
62f3ab2ddce46a8314ed379323263960cc571997
Reduce timeout
diff --git a/timer.html b/timer.html index bfd83c2..b10b2a4 100644 --- a/timer.html +++ b/timer.html @@ -1,66 +1,66 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.mi...
spencertipping/webtimer
49eb502a09d0c5ec3c0b9d0fcd80483798dd75cc
Preserving sign
diff --git a/timer.html b/timer.html index 65e4441..bfd83c2 100644 --- a/timer.html +++ b/timer.html @@ -1,66 +1,66 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.mi...
spencertipping/webtimer
b11f5e7f98ad7e767102ad27b045195edb5c4c44
Perhaps fixed the timing logic.
diff --git a/timer.html b/timer.html index c73f3e2..65e4441 100644 --- a/timer.html +++ b/timer.html @@ -1,65 +1,66 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.mi...
spencertipping/webtimer
5cda266275b50f17f43872a5aa0a11f3e43e8f44
Using auto-refresh and hiding the button to prevent stacking
diff --git a/timer.html b/timer.html index b4922bf..c73f3e2 100644 --- a/timer.html +++ b/timer.html @@ -1,62 +1,65 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.mi...
spencertipping/webtimer
a01cbfe136dd6f927d65723fb5d1cb1be8b941d0
Using JSONP
diff --git a/timer.html b/timer.html index 1a0f93b..b4922bf 100644 --- a/timer.html +++ b/timer.html @@ -1,62 +1,62 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.mi...
spencertipping/webtimer
0c6749b8a2af1dbf0292400cb9998d4ddb427628
Fix jQuery URL
diff --git a/timer.html b/timer.html index 4b0d9ab..1a0f93b 100644 --- a/timer.html +++ b/timer.html @@ -1,62 +1,62 @@ <html> <head> <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> - <script src='http://ajax.googleapis.com/libs/ajax/jquery/1.4.2/jquery.mi...
spencertipping/webtimer
9ddffab0a52eb9a1d01232cf72c548f84a94930a
Removed references to DMV, and made the match more lenient
diff --git a/timer.html b/timer.html index 9c8c96a..4b0d9ab 100644 --- a/timer.html +++ b/timer.html @@ -1,62 +1,62 @@ <html> <head> - <title>DMV Waiting List Estimator</title> + <title>Waiting List Estimator</title> <style> body {font-family: sans-serif} </style> <script src='http://ajax....