JSENCODE
https://developer.salesforce.com/forums/?id=906F00000008qbwIAA
JSENCODE
https://developer.salesforce.com/forums/?id=906F00000008qbwIAA
DMARC email validation
https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_sites.htm#apex_System_Site_methods
https://packagebuilder.herokuapp.com/
This tool uses the Salesforce Metadata API to build a package.xml file based on components in your Salesforce org. Handy for building a package.xml file for use with ANT Force.com Migration or other IDE tools, or building a destructiveChanges.xml file.
Faster than having to download all the actual metadata in order to build your package.xml file.
https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_permissionset.htm
SELECT Id, Parent.label, SobjectType, PermissionsRead, Parent.PermissionsModifyAllData, ParentId FROM ObjectPermissions WHERE PermissionsRead = true and <strong>SobjectType</strong> = 'Merchandise__c'
SELECT Id, Name FROM UserLicense
CS_ServiceContractTotalCases objTest= new CS_ServiceContractTotalCases();
Database.executeBatch(objTest,100 <– this batch size — sfdc default is 200 );
CS_ServiceContractTotalCases objTest= new CS_ServiceContractTotalCases();
Database.executeBatch(objTest,100);