Para Instalar
https://github.com/PowerShell/PowerShell/releases/download/v7.2.6/PowerShell-7.2.6-win-x64.msi
<script type="text/javascript"> | |
(function () { | |
"use strict"; | |
// once cached, the css file is stored on the client forever unless | |
// the URL below is changed. Any change will invalidate the cache | |
var css_href = './index_files/web-fonts.css'; | |
// a simple event handler wrapper | |
function on(el, ev, callback) { | |
if (el.addEventListener) { | |
el.addEventListener(ev, callback, false); |
Para Instalar
https://github.com/PowerShell/PowerShell/releases/download/v7.2.6/PowerShell-7.2.6-win-x64.msi
@-moz-document regexp("^\\S+/docs.*$") { | |
body { | |
background: #303030; | |
} | |
input { | |
background: #303030; | |
color: #eee; | |
border: none; | |
} | |
.swagger-section #header { |
=LOWER(CONCATENATE(DEC2HEX(RANDBETWEEN(0;POWER(16;8));8);"-";DEC2HEX(RANDBETWEEN(0;POWER(16;4));4);"-";"4";DEC2HEX(RANDBETWEEN(0;POWER(16;3));3);"-";DEC2HEX(RANDBETWEEN(8;11));DEC2HEX(RANDBETWEEN(0;POWER(16;3));3);"-";DEC2HEX(RANDBETWEEN(0;POWER(16;8));8);DEC2HEX(RANDBETWEEN(0;POWER(16;4));4))) |
using System; | |
using System.Text; | |
using System.ServiceModel.Channels; | |
using System.Xml; | |
using System.IO; | |
using System.Security.Cryptography; | |
using System.Resources; | |
using System.Security.Cryptography.X509Certificates; | |
namespace eMedNySOAPClient |
This gist contains multiple files. Each file contains a specific type of Apex or Visualforce comment header.
When code is no longer used, but can not be deleted from your org, add the @deprecated
annotation to the File or Method Header.
import java.security.cert.CertificateException; | |
import java.security.cert.X509Certificate; | |
import javax.net.ssl.X509TrustManager; | |
public class BlindTrustManager implements X509TrustManager { | |
public X509Certificate[] getAcceptedIssuers() { | |
return null; | |
} |
public DataTablesResult<Item> Browse(DataTablesParam dataTableParam) | |
{ | |
var queryable = GetItems().AsQueryable() | |
.InterceptWith(new SetComparerExpressionVisitor(StringComparison.CurrentCultureIgnoreCase)); | |
return DataTablesResult.Create(queryable, dataTableParam); | |
} |
void Main() | |
{ | |
var words = new []{"HELLO"}.AsQueryable().SetComparer(StringComparison.CurrentCultureIgnoreCase); | |
words.Where (x => x.StartsWith("hel")).Dump(); | |
words.Where (x => x.Contains("ell")).Dump(); | |
words.Where (x => x.EndsWith("llo")).Dump(); | |
words.Where (x => x.Equals("hello")).Dump(); | |
words.Where (x => x == "hello").Dump(); |