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
// evaluate within data viewer - add any missing keywords | |
List( | |
Plain & " Plain"; | |
Strikethrough & " Strikethrough"; | |
SmallCaps & " SmallCaps"; | |
Superscript & " Superscript"; | |
Subscript & " Subscript"; | |
Symbol & " Symbol"; | |
Other & " Other"; |
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
Let ( [ | |
~tab = Char ( 9 ); | |
~lineFeed = Char ( 10 ); | |
~verticalTab = Char ( 11 ); | |
~formFeed = Char ( 12 ); | |
~string = ~tab & ~lineFeed & ~verticalTab & ~formFeed | |
&" This text has both leading and trailing white space characters " | |
& ~tab & ~lineFeed & ~verticalTab & ~formFeed | |
]; | |
TextFormatRemove ( MiddleWords ( ~string ; 1 ; Length ( ~string ) ) ) |
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
<?php | |
$theArray = array ( | |
'Order_id' => 'mystore-12656', | |
'Currency' => 'USD', | |
'Time' => 'Fri Apr 6 10:46:57 2012 GMT', | |
'NumericTime' => '1390972125', | |
'IPAddress' => '127.0.0.1', | |
'Bill_First' => 'Tësting', | |
'Bill_Last' => 'Persøn', |
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
chart.selectAll("rect") | |
.data(counts) | |
.enter().append("rect") | |
.attr("id", function (d, i) {return keys[i];}) | |
.attr("x", legendWidth) | |
.attr("y", function (d, i) {return i * bar_height;}) | |
.attr("width", x) | |
.attr("height", bar_height - gap) | |
.attr("fill", "url(#gradient)") | |
.on("click", fmpurl); |
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
<pre> | |
\foo | |
\\bar | |
"\foo¶\\\bar" | |
"\"\foo\¶\\\\\bar\"" | |
"\"\\\"\foo\\\¶\\\\\\\\\bar\\\"\"" | |
"\"\\\"\\\\\\\"\foo\\\\\\\¶\\\\\\\\\\\\\\\\\bar\\\\\\\"\\\"\"" | |
"\"\\\"\\\\\\\"\\\\\\\\\\\\\\\"\foo\\\\\\\\\\\\\\\¶\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\bar\\\\\\\\\\\\\\\"\\\\\\\"\\\"\"" | |
"\"\\\"\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\foo\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\¶\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\bar\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\"\\\\\\\\\\\\\\\"\\\\\\\"\\\"\"" |
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/bash | |
export PATH=$PATH:/opt/local/bin | |
_ALL="$@" | |
_LTD_GID=$(id -nG $USER) | |
_INTERNAL=NO | |
_X_USR=".*" | |
if [ "$USER" = "aegir" ] || [ "$HOME" = "/var/aegir" ] ; then | |
_Y_USR=aegir | |
else |
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
--------------- | |
.barracuda.cnf | |
--------------- | |
### | |
### Configuration created on 121114-1723 | |
### with Barracuda version BOA-2.0.4 | |
### | |
### NOTE: the group of settings displayed bellow will *not* be overriden | |
### on upgrade by the Barracuda script nor by this configuration file. | |
### They can be defined only on initial Barracuda install. |
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
--------------- | |
.barracuda.cnf | |
--------------- | |
### | |
### Configuration created on 150112-1253 | |
### with Barracuda version BOA-2.3.8 | |
### | |
### NOTE: the group of settings displayed below will *not* be overridden | |
### on upgrade by the Barracuda script nor by this configuration file. | |
### They can be defined only on initial Barracuda install. |
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
/* | |
* PythonWrapText ( text ; columns ; prefix ) | |
* | |
* A bBox plugin function for wrapping text. | |
* http://www.beezwax.net/download/bbox | |
* | |
*/ | |
Let ( [ | |
~script = List ( |
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
Let ( [ | |
~now = Get ( CurrentTimestamp ); | |
~useTimeStamp = Get ( ActiveModifierKeys ) = 8 or Get ( ActiveModifierKeys ) = 10; | |
~registered = MBS ( "Register"; "Name Here"; "Complete"; "5 seats" ; 201601 ; -12831001) = "OK"; | |
~targetFolder = MBS ( "Folders.UserDesktop" ) | |
& "/DDR/" | |
& Filter ( Get ( FileName ) ; "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklomnopqrstuvwxyz1234567890" ) | |
& If ( ~useTimeStamp ; | |
"_" & Year ( ~now ) | |
& "-" & Right ( "0" & Month ( ~now ) ; 2 ) |
OlderNewer