- Possible way to approach the requirements to frame right set of questions ?
- [ ] Which is the core domain problem system will be resolving or we will be automating ?
- Business Domain - Eg. Automating Sales Process
- Technical Domain - Eg. CTI Integration, Salesforce Sales Cloud Implementation
- What is the need of the system ?
- Who are the end users of the system ?
- Who are the super/admin users of the system ?
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
var client = window.client = new WebTorrent({ | |
tracker: { | |
rtcConfig: rtcConfig | |
} | |
}) | |
client.on('warning', onWarning) | |
client.on('error', onError) | |
torrent = client.add(TORRENT, onTorrent) |
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
Update c:\Windows\System32\Drivers\etc\hosts | |
Add <Ip> <hostname1> <hostname2> entry | |
Save |
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
23.21.150.121:3478 | |
iphone-stun.strato-iphone.de:3478 | |
numb.viagenie.ca:3478 | |
s1.taraba.net:3478 | |
s2.taraba.net:3478 | |
stun.12connect.com:3478 | |
stun.12voip.com:3478 | |
stun.1und1.de:3478 | |
stun.2talk.co.nz:3478 | |
stun.2talk.com:3478 |
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
// List<List<Contact>> | |
Contact contactR1 = new Contact(LastName='Test1'); | |
Contact contactR2 = new Contact(LastName='Test2'); | |
List<Contact> contactList = new List<Contact>{ | |
contactR1,contactR2 | |
}; |
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
HttpRequest req = new HttpRequest(); | |
req.setEndpoint('https://raw.githubusercontent.com/swapnilshrikhande/nanoservices-libs/master/src/classes/HTTPNanoService.cls'); | |
req.setMethod('GET'); | |
Http http = new Http(); | |
HTTPResponse res = http.send(req); | |
Map<String,String> createClassMap = new Map<String,String>{ | |
'Name' => 'ExternalCalculatorNanoService' | |
, 'Body' => res.getBody() | |
}; |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Slideshow</title> | |
<meta charset="utf-8"> | |
<style> | |
@import url(https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz); | |
@import url(https://fonts.googleapis.com/css?family=Droid+Serif:400,700,400italic); | |
@import url(https://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700,400italic); |
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
trigger Opportunity_AfterUpdate on Opportunity (after update) { | |
if (Settings.OPPORTUNITY_SETTING.Disable_All__c == true) { | |
return; | |
} | |
// Try to process transactions as needed | |
new Opportunity_ValidateTransactions(trigger.old, trigger.new).execute(); | |
// ? | |
new Opportunity_RelateMatching(trigger.old, trigger.new).execute(); |
-
Core Javascript
-
DOM : HTML -> DOM - Tree Data Structure
- window
- document
- window
-
DOM API -> Manipulate DOM Tree Node
- Selecting Nodes Selector Operators 1. dot
- hash
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
const ws = new WebSocket('ws://localhost:8080') | |
ws.onopen = () => { | |
console.log('Connected to the signaling server') | |
} | |
ws.onerror = err => { | |
console.error(err) | |
} |