This file contains 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
/** | |
* Entrypoint from the Trigger, dispatch the events here | |
* Bobby White | |
* The use case is universal... you're never going to be able to consume 2000 PE in a single Apex transaction if the PE are independent. | |
* You have to "clip" the executions into manageable chunks. | |
* Best case N = 200, in practice if the DML's will touch objects that are poorly governed, it could hit limits at a lower number like 25 or 50. | |
* Q: What is "Independent"? | |
* A: Let's say that you had a flood of PE's that had the applied to the same ExternalId, you might be able to consume these with a single DML (e.g. 10 meter readings for the same Meter, or a series of notifications for the same Client) -- if your use case doesn't demand that you preserve every state change, you could collapse them into one. My default assumption is that you need to design your PE trigger with the premise that the PE's stand alone and have no correlation to other PE's in the same invocation. | |
* I get you, so in the PE loop you have here you might collapse sim |
This file contains 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
//After Inserting opportunities | |
List<Opportunity> opptys = new List<Opportunity>(); | |
insert opptys; | |
// Get the IDs of the opportunities we just inserted | |
Map<Id, Opportunity> opptyMap = new Map<Id, Opportunity>(opptys); | |
//This will create a map of the opportunities | |
// Will allow you to do this | |
List<Id> opptyIds = new List<Id>(opptyMap.keySet()); |
This file contains 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
window.open('/lightning/o/Event/new'); | |
var urlEvent = $A.get("e.force:navigateToURL"); | |
urlEvent.setParams({ | |
"url": "/lightning/o/Event/new" | |
}); | |
urlEvent.fire(); | |
var createRecordEvent = $A.get("e.force:createRecord"); | |
createRecordEvent.setParams({ |
This file contains 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
exports.handler = function(context, event, callback) { | |
//================================================================================ | |
// Modules | |
//================================================================================ | |
var querystring = require('querystring'); | |
var request = require('request'); | |
//================================================================================ |
This file contains 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
mkdir ~/vim | |
cd ~/vim | |
# Staically linked vim version compiled from https://github.com/ericpruitt/static-vim | |
# Compiled on Jul 20 2017 | |
curl 'https://s3.amazonaws.com/bengoa/vim-static.tar.gz' | tar -xz | |
export VIMRUNTIME="$HOME/vim/runtime" | |
export PATH="$HOME/vim:$PATH" | |
cd - |
This file contains 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
<aura:component controller="Lookup"> | |
<aura:attribute Name="selItem" type="object" access="public" | |
description="This attribute can be used by parent component to read selected record"/> | |
<aura:attribute Name="server_result" type="object[]" access="private" /> | |
<aura:attribute name="lookupIcon" type="String" access="public" default="standard:contact"/> | |
<aura:attribute name="objectName" type="String" access="public" | |
description="Name of Object to be searched"/> | |
<aura:attribute name="field_API_text" type="String" access="public" |
This file contains 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
<aura:component > | |
<aura:attribute name="value" type="Integer" default="0" /> | |
<aura:attribute name="variant" type="String" /> | |
<aura:attribute name="hasVariant" type="Boolean" access="private" default="{!false}" /> | |
<aura:attribute name="ringClass" type="String" access="private" /> | |
<aura:attribute name="iconName" type="String" access="private" /> | |
<aura:attribute name="altText" type="String" access="private" /> | |
<aura:handler name="init" value="{!this}" action="{!c.updateView}" /> |
This file contains 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
<aura:component > | |
<aura:attribute name="value" type="Integer" default="0" /> | |
<aura:attribute name="variant" type="String" /> | |
<aura:attribute name="hasVariant" type="Boolean" access="private" default="{!false}" /> | |
<aura:attribute name="ringClass" type="String" access="private" /> | |
<aura:attribute name="iconName" type="String" access="private" /> | |
<aura:attribute name="altText" type="String" access="private" /> | |
<aura:handler name="init" value="{!this}" action="{!c.updateView}" /> |
This file contains 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
Just a quick note on the problem a couple of you were having yesterday where a rails generator appeared not to | |
be creating files. A zombie "spring" process from a different project was still running and so the generator was | |
actually writing files into a different application. | |
You can read about what spring does here: https://github.com/rails/spring The short version is that it's an application | |
preloader that makes running certain tasks faster by keeping parts of your app loaded in memory. | |
This makes things like running your tests faster as the app doesn't have to load from scratch every time. | |
If you don't want an app to use it, pass --skip-spring as an option to rails new. |
This file contains 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
require 'json' | |
require 'net/http' | |
status = nil | |
until status == 'good' | |
url = URI('https://status.github.com/api/status.json') | |
response = Net::HTTP.get(url) | |
body = JSON.parse(response) | |
p body | |
status = body['status'] |
NewerOlder