I hereby claim:
- I am damecek on github.
- I am damecek (https://keybase.io/damecek) on keybase.
- I have a public key ASCK6qFeX7XgmZD-37Mk_iLgvWGlhBoJmx1-cRLAa0GPqwo
To claim this, I am signing this object:
| public abstract class Chainable implements Queueable { | |
| private Chainable next; | |
| private ChainableContext context; | |
| public Chainable() { | |
| this.context = new BaseContext(); | |
| } | |
| protected abstract void execute(ChainableContext context); |
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Dependency Graph Visualization</title> | |
| <script src="https://d3js.org/d3.v5.min.js"></script> | |
| <style> | |
| body, html { | |
| margin: 0; | |
| padding: 0; | |
| width: 100%; |
| #!/bin/bash | |
| # Execute the SOQL query | |
| QUERY_RESULT=$(sf data query -o carvago-prod --query "SELECT Id FROM sf_devops__Work_Item__c ORDER BY CreatedDate DESC LIMIT 1" --result-format csv) | |
| # Get the record ID from the result. We select the second line (actual data) and then cut by ',' to get the ID. | |
| RECORD_ID=$(echo "$QUERY_RESULT" | awk 'NR==2' | cut -d',' -f2) | |
| # Form the URL | |
| URL="https://carvago.lightning.force.com/sf_devops/DevOpsCenter.app?workItemId=$RECORD_ID" |
| #!/bin/bash | |
| # Usage | |
| # /bin/bash ./deployPermSetFields.sh ./force-app/main/default/permissionsets/Logistic_Edit.permissionset-meta.xml | |
| # Get the XML file name from the script argument | |
| xml_file=$1 | |
| # Use awk to extract field names | |
| fields=$(awk -F'[<>]' '/<field>/ {print $3}' $xml_file) |