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
- return this.prisma.ctrPayrollCompensation.create({ | |
- data: createData, | |
+ return this.prisma.ctrPayrollCompensation.upsert({ | |
+ where: { idepotencyKey } | |
+ create: { ...createData, idepotencyKey }, | |
+ update: {}, | |
include: { | |
rateOfPayUnit: true, | |
cycle: { include: { recurringFrequency: true, recurringPatterns: true } }, | |
} |
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
// Suppose createData includes all the other required fields, | |
// and idempotencyKey is received as part of the request payload. | |
await this.prisma.ctrPayrollCompensation.upsert({ | |
where: { idempotencyKey }, | |
create: { ...createData, idepotencyKey }, | |
update: {}, // Update nothing | |
}); |
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
Error: instantiating 'Breeze::Requests::ShowPage#perform_render()' | |
In lib/lucky/src/lucky/html_builder.cr:27:5 | |
27 | render | |
^----- | |
Error: instantiating 'render()' | |
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
defaults write com.microsoft.VSCode.helper CGFontRenderingFontSmoothingDisabled -bool NO |
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 fs = require('fs'); | |
const rp = require('request-promise'); | |
const Promise = require('bluebird'); | |
const list = fs.readFileSync('./list', { encoding: 'utf8' }); | |
const urls = list.split('\n'); | |
const TOKEN = '<YOUR API TOKEN>'; | |
const repos = urls.map((url) => { |
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
import React, { Component } from 'react'; | |
import { select } from 'd3-select'; | |
class LineChart extends Component { | |
componentDidMount() { | |
this.renderChart(); | |
} | |
renderChart() { | |
const svg = select(this.containerEl); |
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
package main | |
import ( | |
"bufio" | |
"fmt" | |
"log" | |
"os" | |
"runtime" | |
"strings" | |
"sync" |
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 fs = require('fs'); | |
const Path = require('path'); | |
const React = require('react'); | |
const ReactDOMServer = require('react-dom/server'); | |
const Email = require('../lib/Email').default; | |
const STYLE_TAG = '%STYLE%'; | |
const CONTENT_TAG = '%CONTENT%'; |
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
{ | |
"name": "react-emails-example", | |
"version": "0.1.0", | |
"private": true, | |
+ "main": "./server/createEmail.js", | |
"devDependencies": { | |
+ "babel-cli": "^6.24.1", | |
+ "babel-preset-react-app": "^2.2.0", | |
"react-scripts": "0.9.5" | |
}, |
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
@media only screen and (max-width: 650px) { | |
.title-heading { | |
font-size: 18px !important; /* We need !important to */ | |
text-align: center !important; /* overcome inline styles */ | |
} | |
} |
NewerOlder