SOQL-Based Inbound List Polling — Automated system that continuously queries Salesforce for new/modified contacts and enrolls them into sales sequences.
Scope: 30+ files across 6 modules, 35+ commits, 5 PRs, 0 production incidents.
SOQL-Based Inbound List Polling — Automated system that continuously queries Salesforce for new/modified contacts and enrolls them into sales sequences.
Scope: 30+ files across 6 modules, 35+ commits, 5 PRs, 0 production incidents.
| [ | |
| { | |
| "command": "editor.action.clipboardCopyAction", | |
| "key": "cmd+c" | |
| }, | |
| { | |
| "command": "editor.action.clipboardCutAction", | |
| "key": "cmd+x", | |
| "when": "editorTextFocus && !editorReadonly" | |
| }, |
| ''' | |
| Using OpenCV takes a mp4 video and produces a number of images. | |
| Requirements | |
| ---- | |
| You require OpenCV 3.2 to be installed. | |
| Run | |
| ---- | |
| ''' |
| # http://sites.math.rutgers.edu/~ajl213/CLRS/Ch1.pdf | |
| import requests | |
| count = int(input("Enter the Chapter number")) | |
| try: |
| #include <iostream> | |
| int main(){ | |
| std::cout<<"Enter the Array"<<std::endl; | |
| int array[5]; | |
| int result; | |
| result = 0; | |
| for (int i = 0; i < 5; ++i) { | |
| std::cin>>array[i]; | |
| // | |
| // Created by Ajay Guru on 10/17/17. | |
| // | |
| #include <iostream> | |
| using namespace std; | |
| template<bool small, int I> |
| #!/usr/bin/python | |
| div1 = ["Lions", "Tigers", "Jaguars", "Cougars"] | |
| div2 = ["Whales", "Sharks", "Piranhas", "Alligators"] | |
| div3 = ["Cubs", "Kittens", "Puppies", "Calfs"] | |
| def create_schedule(list): | |
| """ Create a schedule for the teams in the list and return it""" | |
| s = [] |