Skip to content
View KorbenC's full-sized avatar

Organizations

@eftours

Block or report KorbenC

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Apex Coding Standards Apex Coding Standards
    1
    Apex Coding Standard
    2
    
                  
    3
    Introduction
    4
    -------------
    5
    Apex is a strongly-typed, object-oriented, proprietary programming language for the Force.com platform. 
  2. Counts the lines of apex code in org... Counts the lines of apex code in org, combined both class and triggers.
    1
    Integer classLines = 0;
    2
    Integer triggerLines = 0;
    3
     
    4
    for(ApexClass a : [Select Body From ApexClass]){
    5
    	List<String> lines = a.Body.split('\n');
  3. One Trigger Per Object Pattern using... One Trigger Per Object Pattern using context specific handler methods and logic-less triggers. Bonus features such as Routing Abstractions, Recursion Detection and Prevention, and Centralize Enable/Disable of Triggers!
    1
    trigger OpportunityTrigger on Opportunity (
    2
        before insert, after insert, 
    3
        before update, after update, 
    4
        before delete, after delete) {
    5
            //trigger body
  4. apex-forloopspeeds apex-forloopspeeds Public

    Forked from benedwards44/apex-forloopspeeds

    Demonstrates the most time efficient for loops in Apex

    Apex 2