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
<cfscript> | |
v = "00012.00006.00003.0011"; | |
lv = "06.000.7728.0100.100"; | |
//dump(toNumeric(v)); | |
//dump(toNumeric(lv)); | |
_lv = REReplace( lv, "[^\d]", "", "all" ) |
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
<cfscript> | |
v = "00012.00006.00003.0011"; | |
lv = "06.000.7728.0100.100"; | |
//dump(toNumeric(v)); | |
//dump(toNumeric(lv)); | |
_lv = REReplace( lv, "[^\d]", "", "all" ) |
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
<cfscript> | |
v = "00012.00006.00003.0011"; | |
lv = "06.000.7728.0100.100"; | |
//dump(toNumeric(v)); | |
//dump(toNumeric(lv)); | |
dump(REReplace( v, "[^\d]", "", "all" )); | |
dump(REReplace( lv, "[^\d]", "", "all" )); |
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
<cfscript> | |
v = "00012.00006.00003.0011"; | |
lv = "06.000.7728.0100.100"; | |
//dump(toNumeric(v)); | |
//dump(toNumeric(lv)); | |
dump(REReplace( v, "[^\d]", "", "all" )); | |
dump(REReplace( lv, "[^\d]", "", "all" )); |
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
<cfscript> | |
cfhttp( | |
url="https://httpstat.us/200?sleep=5000", | |
result="ret" | |
); | |
writeDump(ret); | |
cfhttp( | |
url="https://httpstat.us/200?sleep=5000", | |
timeout="1", |
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
<cfset startingBalance = 3000.00> | |
<cfset numDays = 30> | |
<cfset pctToBet = .004> | |
<cfset pctToBet = .0059> | |
<cfset pctToBet = .0070> | |
<cfset pctToBet = .0035> | |
<cfset pctToBet = .02> | |
<cfset winsPerDay = 10> |
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
<cfscript> | |
function getCredentials(pid){ | |
getDesignations = | |
[ | |
{ | |
"name": "MA" | |
}, | |
{ | |
"name": "RNC" | |
}, |
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
<cfset startingBalance = 3400.00> | |
<cfset numDays = 50> | |
<cfset pctToBet = .004> | |
<cfset pctToBet = .0059> | |
<cfset pctToBet = .0070> | |
<cfset winsPerDay = 30> | |
<cfset balance1 = startingBalance> | |
<cfset totalWins1 = 0> |
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
<cfscript> | |
var response = "Creation of WB003175"; | |
var pattern = "WB\d+" ; | |
var result = REMatch(pattern, response); | |
if(arrayLen(result) > 0 ){ |
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
<cfscript> | |
var a = 1; | |
var b = 1; | |
if( ( IsNull(a) XOR IsNull(b) XOR IsNull(c) ) ) { | |
echo("funziona"); | |
} |
NewerOlder