Skip to content

Instantly share code, notes, and snippets.

View ahandsel's full-sized avatar
🏠
Working from home

Genji ahandsel

🏠
Working from home
View GitHub Profile
## Testing
TEST
ADMIN100
ADMINTEST
DEMO
## Basic
FREESHIPPING
SHIPFREE
DISCOUNT10
@ahandsel
ahandsel / Markdown_Link_Checker.sh
Created May 22, 2023 09:17
Run markdown-link-check to all Markdown files in the current folder while skipping node_modules folder
// backend - server.js - Routes API requests from the frontend to Kintone
// Express Server Setup
const express = require('express');
const cors = require('cors');
const fetch = require('node-fetch');
const PORT = 5000;
const app = express();
// Hide sensitive info in a .env file with dotenv

Coding from workshop branch to master

src/index.js

  • Inside the handleChange filter the results by taking in listItems & looking for e.target.value.toLowerCase()
  • Then set setSearchResults(filterResults)
const handleChange = e => {
  let filterResults = listItems.filter(dataRecord => dataRecord.title.toLowerCase().includes(e.target.value.toLowerCase()));
  console.log('filterResults');

React & REST API Workshop Version 3

Let's POST Data to a Web Database From a React Component

Thank you for attending our 2nd Kintone x React workshop!
Use the following files to follow along!

Download Links

Click here or the Download Zip button on the upper right corner for all the code & slides you need for our workshop!

React & REST API Workshop Part 2

Let's POST Data to a Web Database From a React Component

Thank you for attending our 2nd Kintone x React workshop!
Use the following files to follow along!

Download Links

Click here or the Download Zip button on the upper right corner for all the code & slides you need for our workshop!