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
.radio-item { | |
display: inline-block; | |
position: relative; | |
padding: 0 6px; | |
margin: 10px 0 0; | |
} | |
.radio-item input[type='radio'] { | |
display: none; | |
} |
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
<button onclick='javascript: | |
if(document.getElementById("J").value=="") | |
{alert("Please enter into the left column a list of IDs on 15 chars");return; | |
} | |
var y=document.getElementById("J").value.split("\r").join("").split("\n"); | |
var z=new Array(); | |
for(var x=0;x<y.length;x++) | |
{ | |
if(y[x].length==15) | |
{ |
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
this.superAfterRender(); | |
// this is done in renderer because we don't get access to the window element in the helper js. | |
var didScroll = false; | |
window.onscroll = function() { | |
didScroll = true; | |
}; | |
window.addEventListener('scroll', function() { | |
didScroll = true; |
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
.security-pref-radio { | |
margin-top : 6px; | |
} | |
input[type='radio']:checked:after{ | |
width: 16px; | |
height: 16px; | |
border-radius: 14px; | |
top: -1px; | |
left: -1px; | |
position: relative; |
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
Where can the logging level of a robot be changed from? | |
* The robot settings, which are accessed via the UiPath Robot icon in the System tray. | |
* Orchestrator, in the Edit Robot section, the Settings tab. | |
What happens if you try to end the execution of a job by clicking the Stop/Cancel button in UiPath Orchestrator? | |
* The execution process is killed. | |
* The execution is not impacted if no Should Stop activity has been included in the workflow in Studio. | |
* The job state is changed to Canceled/Stopped, even if no Should Stop activity was used. |
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
script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | |
<form> | |
<p>Enter an email address:</p> | |
<input id='email'> | |
<button type='submit' id='validate'>Validate!</button> | |
</form> | |
<h2 id='result'></h2> |
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
Http Responses | |
200 “OK” success code, for GET,PATCH or HEAD request. | |
201 “Created” success code, for POST request. | |
204 “No Content” success code, for DELETE request. | |
300 The value returned when an external ID exists in more than one record. The response body contains the list of matching records. | |
304 The request content has not changed since a specified date and time. The date and time is provided in a “If-Modified-Since” header. | |
400 The request could not be understood, usually because the ID is not valid for the particular resource. For example, if you use a userId where a groupId is required, the request returns 400. | |
401 The session ID or OAuth token has expired or is invalid. Or, if the request is made by a guest user, the resource isn’t accessible to guest users. The response body contains the message and errorCode. | |
403 The request has been refused. Verify that the context user has the appropriate permissions to access the requested data, or that the context user is not an external user. | |
404 Either the sp |
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
class A | |
{ | |
static int i = 1111; | |
static | |
{ | |
i = i-- - --i; | |
System.out.println("ONE"); | |
System.out.println(i); | |
} |
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
public with sharing class PermissionExtractorHelper { | |
private static PermissionExtractorHelper handler; | |
String email_address = '[email protected]'; | |
private PermissionExtractorHelper() { | |
} | |
public static PermissionExtractorHelper getInstance() { | |
if(handler == null) { | |
handler = new PermissionExtractorHelper(); | |
} |
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
public with sharing class ContentVersionUtil { | |
public ContentVersionUtil() { | |
} | |
public static Id createDocument(Id parentId, String fileName, String data, Id contentDocumentId) { | |
ContentVersion versionData = new ContentVersion(); | |
versionData.ContentLocation = 'S'; | |
versionData.ContentDocumentId = contentDocumentId; | |
versionData.VersionData = Blob.valueOf(data); |