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> | |
| </cfscript> |
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> | |
| idList = "A1,A2,B1,B4,C6"; | |
| writeOutput("Lista di id: #idList#<hr>"); | |
| writeOutput("Codice originale"); | |
| queryObj = queryNew("IDCODICE","VarChar"); | |
| for (item in listToArray(idList)) { |
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> | |
| idList = "A1,A2,B1,B4,C6"; | |
| writeOutput("Lista di id: #idList#<hr>"); | |
| writeOutput("Codice originale"); | |
| queryObj = queryNew("IDCODICE","VarChar"); | |
| for (item in listToArray(idList)) { |
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> | |
| idList = "A1,A2,B1,B4,C6,A1,A2,B1,B4,C6"; | |
| writeOutput("Lista di id: #idList#<hr>"); | |
| writeOutput("Codice originale"); | |
| queryObj = queryNew("IDCODICE","VarChar"); | |
| for (item in listToArray(idList)) { |
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 popend_ui=''> | |
| <cfset dt = DateFormat(ParseDateTime(popend_ui, "yyyy-MM-dd"))> | |
| <cfoutput>#dt#</cfoutput> |
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 = "/mmm" | |
| if (v CONTAINS "/") { | |
| strip_loc = find("/", v); | |
| str_cnt = strip_loc - 1; | |
| //v = left(v, str_cnt); | |
| } | |
| writedump(strip_loc); | |
| writedump(str_cnt); |
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 popend = '2026-01-22'> | |
| <cfif not isdate(popend)> | |
| <cfoutput>hola</cfoutput> | |
| <cfelse> |
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> | |
| data = QueryNew( | |
| [ | |
| { ein: 'THE_FIRST_ONE', id: 90001 }, | |
| { ein: '[email protected]', id: 380248 }, | |
| { ein: '[email protected]', id: 390957 }, | |
| { ein: '[email protected]', id: 262143 }, | |
| { ein: '[email protected]', id: 266534 }, | |
| { ein: '[email protected]', id: 366746 }, | |
| { ein: '[email protected]', id: 277838 }, |
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> | |
| text = 'Hi,<br> Hope you are well. We have been notified by stores and streaming services that they have received a take down for the following content:<br><br> <b>Artist:</b> LucySPA <br> <b>Release:</b> 愿得一人心(钢琴版)<br><b>Content Issue:</b>Copyright <br> <br> If you have any questions, please contact the claimant at: <b> [email protected]</b>. <br><br> Please understand that DistroKid is not involved in the take down. We have no other information or context, and we are unable to get involved or take sides in disputes between artists and claimants. We''re just the messenger, passing along this info to you in hopes you find it helpful. <br><br> Stores ask that you please do not re-upload the content until the dispute has been resolved between you and the claimant. Note that if another takedown is received for your content, all stores and streaming services will likely remove your entire catalog of music and your DistroKid account will be banned followed by account closure. Furthermore, this matter |
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> | |
| a = [ 1 , 2 ]; | |
| arrayEach(a, function(a){ | |
| lock name="lock-demo" timeout=1 throwOnTimeout=true { | |
| sleep(2001); | |
| } | |
| }, true); | |
| </cfscript> |
NewerOlder