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
dark blue, yellow, light blue, pink, | |
#323D56, #C4905D, #639EB5, #A8767A |
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
# located in service1/buf.gen.yaml | |
version: v2 | |
managed: | |
enabled: true | |
override: | |
- file_option: go_package | |
value: github.com/edmondop/product/service1 | |
plugins: |
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
datasets: | |
- from: databricks:spiceai.datasets.my_awesome_table // A reference to a table in the Databricks unity catalog | |
name: my_delta_lake_table | |
params: | |
endpoint: "https://dbc-a1b2345c-d6e7.cloud.databricks.com" |
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
{ | |
"ChoiceStateX": { | |
"Type": "Choice", | |
"Choices": [ | |
{ | |
"Not": { | |
"Variable": "$.type", | |
"StringEquals": "Private" | |
}, | |
"Next": "Public" |
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: regexcite | |
Title: Make Regular Expressions More Exciting | |
Version: 0.0.0.9000 | |
Authors@R: | |
person("Edmondo", "Porcu", , "edmondo.porcu@gmail.com", role = c("aut", "cre"), | |
comment = c(ORCID = "YOUR-ORCID-ID")) | |
Description: Convenience functions to make some common tasks with string | |
manipulation and regular expressions a bit easier. | |
License: MIT + file LICENSE | |
Encoding: UTF-8 |
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
metadataElements = [{ | |
name: 'CGS Score', | |
metadataType : 'Custom Field', | |
parentObject : 'Account' // can be undefined | |
}, | |
{ | |
name: 'Rating Value', | |
metadataType : 'Custom Field', | |
parentObject : 'Account' // can be undefined |
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
Account.AnnualRevenue | Age | Role | Likely_Member__c | |
---|---|---|---|---|
10000 | 20 | CEO | True | |
100000 | 45 | CFO | False |
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 org.camunda.bpm.engine.ProcessEngine; | |
import org.camunda.bpm.engine.ProcessEngineConfiguration; | |
import org.camunda.bpm.engine.externaltask.LockedExternalTask; | |
import org.camunda.bpm.engine.runtime.ProcessInstance; | |
import org.camunda.bpm.model.bpmn.Bpmn; | |
import org.camunda.bpm.model.bpmn.BpmnModelInstance; | |
import java.util.List; |
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 {ChartData} from "chart.js"; | |
import {getDateOfISOWeek, getDateStringOfISOWeek, getWeekNumber} from "../../../commons/src"; | |
import {addMonths, addWeeks, differenceInCalendarMonths, differenceInCalendarWeeks, isPast, isFuture, addDays} from 'date-fns'; | |
import {range} from 'lodash'; | |
export interface IAdvanceSummaryData{ | |
Invoicer__c?: string; | |
paidBackOnTime: number; | |
paidBackLate: number; |
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 {ChartData} from "chart.js"; | |
import {getDateOfISOWeek, getDateStringOfISOWeek, getWeekNumber} from "../../../commons/src"; | |
import {addMonths, addWeeks, differenceInCalendarMonths, differenceInCalendarWeeks, isPast, isFuture, addDays} from 'date-fns'; | |
export interface IMonthlyChartData { | |
Invoicer__c?: string; | |
Reviewed_Agreed_Payment_Date__c?: string; | |
Agreed_Payment_Date__c?: string; | |
year?: number; | |
month?: number; |
NewerOlder