Click to toggle contents of the toggle
Here's a sample code:
ReactDOM.render(
<h1>Hello, world!</h1>,
document.getElementById('root')
);
# Python3 program for implementation of RR scheduling | |
# Function to find the waiting time for all processes | |
def findWaitingTime(processes, n, bt, wt, quantum): | |
rem_bt = [0] * n | |
# Copy the burst time into rt[] | |
for i in range(n): | |
rem_bt[i] = bt[i] | |
t = 0 # Current time |
let output = ""; | |
const apiKey = "xxx"; | |
async function sendEmail() { | |
await fetch("https://api.sendgrid.com/v3/mail/send", { | |
method: "POST", | |
headers: { | |
"Content-Type": "application/json", | |
Authorization: `Bearer ${apiKey}`, |
const gm = require("gm").subClass({ imageMagick: true }); | |
const fs = require("fs"); | |
const images = fs.readdirSync("./images"); | |
images.forEach((image) => { | |
gm(`./images/${image}`).write( | |
`./prc/${image.slice(0, 11)}.jpg`, | |
(err) => { | |
if (!err) console.log("✅ done"); |
const fs = require("fs"); | |
const url = | |
"https://bolajiayodeji.github.io/fed-unis-perf-eval/lighthouse%20report/"; | |
fs.readFile("text.txt", "utf8", function (err, links) { | |
// get all text per line in links | |
const lines = links.split("\n"); | |
//replace spaces with %20 |
tweets = [ | |
"Wow, what a great day today!! #sunshine", | |
"I feel sad about the things going on around us. #covid19", | |
"I'm really excited to learn Python with @JovianML #zerotopandas", | |
"This is a really nice song. #linkinpark", | |
"The python programming language is useful for data science", | |
"Why do bad things happen to me?", | |
"Apple announces the release of the new iPhone 12. Fans are excited.", | |
"Spent my day with family!! #happy", | |
"Check out my blog post on common string operations in Python. #zerotopandas", |
const dataA = [] | |
const dataB = [] | |
const arrA = dataA.map(e => e.toLowerCase().replace(/\s/g, '')); | |
const arrB = dataB.map(e => e.toLowerCase().replace(/\s/g, '')); | |
console.log(arrA.length, arrB.length) | |
// Find duplicates in array A |
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | |
# dependencies | |
/node_modules | |
/.pnp | |
.pnp.js | |
# testing | |
/coverage |
Here's a sample code:
ReactDOM.render(
<h1>Hello, world!</h1>,
document.getElementById('root')
);
commercelayer resources:get skus -w name_i_cont_all=t-shirt,pink -w name_not_i_cont_all=women,white
Example ID of t-shirt selected: NzWOpOSyBx
.