Watch the breakdown here in a Q4 2024 prompt engineering update video
- Quick, natural language prompts for rapid prototyping
- Perfect for exploring model capabilities and behaviors
Watch the breakdown here in a Q4 2024 prompt engineering update video
What are the components of FastHTML, and how do they work together? What are some key things I need to understand to write idiomatic FastHTML apps?
Based on the documentation provided, here are the key components of FastHTML and how they work together to create web applications:
public with sharing class ReadFileData { | |
@AuraEnabled | |
public static String readFileFromRecord(String recordId) { | |
ContentDocumentLink contentDocumentLink = [ | |
SELECT id, ContentDocumentId, ContentDocument.Description, | |
ContentDocument.Title, LinkedEntityId | |
FROM ContentDocumentLink | |
WHERE LinkedEntityId = '0017F00002nb4ktQAA' | |
LIMIT 1 | |
]; |
import { LightningElement, api } from 'lwc'; | |
import saveTheChunkFile from '@salesforce/apex/FileUploadService.saveTheChunkFile'; | |
import { ShowToastEvent } from 'lightning/platformShowToastEvent'; | |
const MAX_FILE_SIZE = 4500000; | |
const CHUNK_SIZE = 750000; | |
export default class UploadFile extends LightningElement { | |
@api recordId; | |
fileName = ''; |
/** | |
@description - Universal Batch Apex Scheduler | |
@credit - https://th3silverlining.com/2014/02/02/salesforce-universal-batch-scheduling-class/ | |
*/ | |
global class BatchScheduler implements Schedulable { | |
global Database.Batchable<SObject> batchClass{get;set;} | |
global Integer batchSize{get;set;} {batchSize = 200;} | |
global void execute(SchedulableContext sc) { |
Code is clean if it can be understood easily – by everyone on the team. Clean code can be read and enhanced by a developer other than its original author. With understandability comes readability, changeability, extensibility and maintainability.
/** | |
* @Author : Jitendra Zaa | |
* @Date : Apr 21 2019 | |
* Framework to fix limit of 100 Batch Apex in Queue | |
* */ | |
public class BatchApexFramework implements Schedulable{ | |
private static Integer availableBatchLimit = null; | |
import { LightningElement } from 'lwc'; | |
export default class ComponentA extends LightningElement { | |
fireEvent() { | |
// Fire DOM custom event | |
const customEvt = new CustomEvent('custom'); | |
this.dispatchEvent(customEvt); | |
} | |
} |
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "SFDX: Deploy Current File", | |
"type": "shell", | |
"command": "sfdx", | |
"args": [ | |
"force:source:deploy", | |
"--sourcepath", |
import jwt | |
import requests | |
import datetime | |
from simple_salesforce import Salesforce | |
from simple_salesforce.exceptions import SalesforceAuthenticationFailed | |
def jwt_login(consumer_id, username, private_key, sandbox=False): | |
endpoint = 'https://test.salesforce.com' if sandbox is True else 'https://login.salesforce.com' | |
jwt_payload = jwt.encode( | |
{ |