This file contains hidden or 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 lang="en"><head>\n <meta name="pageKey" content="d_ad-library-detail">\n<!----><!----> <meta name="locale" content="en_US">\n <meta id="config" data-app-version="0.0.1626" data-call-tree-id="AAYz+yc9uPdiifyfgkJQcg==" data-multiproduct-name="ads-guest-frontend" data-service-name="ads-guest-frontend" data-browser-id="e1d92387-be48-4608-8df8-c1c4810331f3" data-enable-page-view-heartbeat-tracking="" data-page-instance="urn:li:page:d_ad-library-detail;tkwl0ifvSWaZr7A1jklo6A==" data-disable-jsbeacon-pagekey-suffix="true" data-member-id="0" data-dna-member-lix-treatment="enabled" data-human-member-lix-treatment="enabled" data-dfp-member-lix-treatment="control" data-sync-apfc-headers-lix-treatment="control" data-sync-apfc-cb-lix-treatment="enabled">\n\n <link rel="canonical" href="/ad-library/detail/409470296">\n<!----><!---->\n<!---->\n<!---->\n<!---->\n<!---->\n <link rel="icon" href="https://static.licdn.com/aero-v1/sc/h/al2o9zrvru7aqj8e1x2rzsrca">\n\n |
This file contains hidden or 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
import React from 'react'; | |
// import { ArrowRightIcon } from '@heroicons/react/24/solid'; | |
type JobPosting = { | |
title: string; | |
subtitle: string; | |
href: string; | |
}; | |
/* One job card component */ |
This file contains hidden or 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
{ | |
"status": { | |
"code": "CM000", | |
"message": "Success" | |
}, | |
"data": [ | |
{ | |
"jsonSchema": { | |
"$schema": "http://json-schema.org/draft-06/schema#", | |
"definitions": { |
This file contains hidden or 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
{ | |
"allInvestors": [ | |
"Salesforce Ventures", | |
"Greycroft", | |
"Kleiner Perkins", | |
"General Motors Ventures", | |
"Harbert Growth Partners", | |
"ServiceNow", | |
"Lighter Capital", | |
"Vision Ridge Capital Partners", |
This file contains hidden or 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
{ | |
"id": "uuid4", | |
"description": "A representation of a account object post", | |
"active" : true, | |
"version" : "0.0.1" | |
"createadAt" : <timestamp>, | |
"updatedAt" : <timestamp>, | |
"coreObjectType" : "ACCOUNT" | |
"type": "object", | |
"required": ["title", "content", "author"], |
This file contains hidden or 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
{ | |
"id": "uuid4", | |
"coreObjectName": "ACCOUNT", | |
"version": "0.0.1", | |
"description": "This defines the waterfall rules", | |
"createdAt": "timestamp", | |
"updatedAt": "timestamp", | |
"active": true, | |
"rules" : { | |
"global" : [ |
This file contains hidden or 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
{ | |
"id": "uuid4", | |
"coreObjectName": "ACCOUNT", | |
"externalSource": "ZOOMINFO", | |
"version": "0.0.1", | |
"description": "Mapping configuration for ZoomInfo to Account object transformation", | |
"createdAt": "timestamp", | |
"updatedAt": "timestamp", | |
"active": true, | |
"fieldMappings": [ |
This file contains hidden or 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
{ | |
"transitionHistory": { | |
"recordList": [ | |
{ | |
"timestamp": 1739428163000, | |
"message": "PreHook START for operation: defaultCrudTransitionGroupGuard_campaignValidationGuard_budgetGuard_timelineGuard" | |
}, | |
{ | |
"timestamp": 1739428163000, | |
"message": "PreHook END for operation: defaultCrudTransitionGroupGuard_campaignValidationGuard_budgetGuard_timelineGuard" |
This file contains hidden or 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
package ai.cbx1.commons.statemachine; | |
// This class gives out methods to take in a list of transitions and turn it into a .dot file | |
// you can use any online digraph visualiser to see the output | |
import static guru.nidi.graphviz.model.Factory.*; | |
import guru.nidi.graphviz.attribute.*; | |
import guru.nidi.graphviz.model.MutableGraph; | |
import guru.nidi.graphviz.model.MutableNode; |
This file contains hidden or 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
import re | |
import requests | |
from bs4 import BeautifulSoup | |
from langflow.custom import Component | |
from langflow.io import DropdownInput, MessageTextInput, Output | |
from langflow.schema import Data | |
class CustomApiCallerComponent(Component): | |
display_name = "API Caller" |
NewerOlder