brew install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
chsh -s /bin/zsh
notify: | |
if: always() | |
name: Notify | |
needs: | |
- job1 | |
- job2 | |
- job11 | |
- job3 | |
- job4 | |
runs-on: ubuntu-latest |
// The console.log() is a function that writes a message to log on the debugging console | |
// Names can contain letters, digits, underscores, and dollar signs. | |
// No limit o the length of the variable name | |
// Names can begin with letter, $ and _ | |
// Reserved words(like switch, if else) cannot be used as names | |
// console.log(null+'10'); | |
// var name = "Nikhil" | |
// var age = 23 |
<Document xmlns="urn:iso:std:iso:20022:tech:xsd:pain.008.001.02"> | |
<CstmrDrctDbtInitn> | |
<GrpHdr> | |
<MsgId>PRE2018*****</MsgId> | |
<CreDtTm>2018-12-10T14:31:01</CreDtTm> | |
<NbOfTxs>2</NbOfTxs> | |
<CtrlSum>200</CtrlSum> | |
<InitgPty> | |
<Nm><strong>TU NOMBRE COMERCIAL</strong></Nm> | |
<Id> |
from simple_salesforce import Salesforce | |
import pandas as pd | |
sf = Salesforce(username="yourSFusername",password="youSFpassword", security_token="yourSFsecuritytoken") | |
Group_Members = sf.query_all("Select GroupId,UserOrGroupId from GroupMember") | |
Active_Users = sf.query_all("Select Username,Name,Id from User where isActive = True") | |
Groups = sf.query_all("Select Id,Name,Type from Group") | |
Group_Members_DF = pd.DataFrame(Group_Members['records']) | |
Users_DF = pd.DataFrame(Active_Users['records']) |
Product2 p = new Product2(); | |
p.Name = 'Test Product'; | |
p.Description='Test Product'; | |
p.productCode = 'ABC'; | |
p.isActive = true; | |
insert p; | |
PricebookEntry standardPrice = new PricebookEntry(); | |
standardPrice.Pricebook2Id = Test.getStandardPricebookId(); | |
standardPrice.Product2Id = p.Id; |
public with sharing class InvocableApexTemplate { | |
@InvocableMethod( | |
label = 'Name as displayed in Process Builder' | |
description = 'Tooltip as displayed in Process Builder' | |
) | |
public static List<Response> execute( List<Request> requests ) { | |
List<Response> responses = new List<Response>(); | |
brew install zsh
sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
chsh -s /bin/zsh
List all alias | |
keytool -list -v -keystore ClientCert.pfx -storepass Password1 -storetype PKCS12 | |
Change an alias | |
keytool -changealias -alias "pvktmp:696deac3-0855-476c-b945-9bd3bacb4f2f" -destalias "clientcertax" -keypass Password1 -keystore ClientCert.pfx -storepass Password1 | |
Convert pfx to jks | |
keytool -importkeystore -srckeystore ClientCert.pfx -srcstoretype pkcs12 -destkeystore clientcertax.jks -deststoretype JKS |
#!/bin/bash | |
# Definir la carpeta donde buscar los archivos | |
search_dir="force-app/main/default/classes" | |
# Nombre del archivo CSV de salida | |
output_file="resultados_httpreq.csv" | |
# Encabezado del archivo CSV | |
echo "Archivo,Linea,Contenido" > $output_file |