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
// library pdfMake | |
import pdfMake from "pdfmake/build/pdfmake"; | |
import pdfFonts from "pdfmake/build/vfs_fonts"; | |
pdfMake.vfs = pdfFonts.pdfMake.vfs; | |
// document definition | |
let docDefinition = { | |
content: [{ | |
text: 'Report Goods Receive', | |
style: 'header' |
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, { useRef } from "react"; | |
import Select from "react-select"; | |
export default function App() { | |
const selectInputRef = useRef(); | |
const onClear = () => { | |
selectInputRef.current.select.clearValue(); | |
}; |
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
cwebp -preset picture -q 80 d:\source-images-original\1.jpg -o d:\source-images-result\1.webp |
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
for file in *.jpg; do cwebp -q 80 "$file" -o "${file%.jpg}.webp"; done |
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
let arr = [1,2,3,4,5,6]; | |
let start = 0; | |
let end = arr.length - 1; | |
while (start < end) { | |
let temp = arr[start]; | |
arr[start] = arr[end]; | |
arr[end] = temp; | |
start++; | |
end--; |
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
let arr = [4,3,5,5,6,1,2,7,1]; | |
let start = 0; | |
let max = arr[start]; | |
for (let index = 0; index < arr.length; index++) { | |
if (arr[index] > max) { | |
max = arr[index] | |
} | |
} |
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 {SwiperSlide, Swiper} from 'swiper/react'; | |
import SwiperCore, {Pagination, Autoplay} from 'swiper'; | |
SwiperCore.use([Pagination, Autoplay]); | |
const Home = (props) => { | |
const [banner, setBanner] = useState([]) | |
// get data from api | |
setbanner(API_DATA); |
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
<?php return array ( | |
'parameters' => | |
array ( | |
'database_host' => 'localhost', | |
'database_port' => '', | |
'database_name' => 'database-name', | |
'database_user' => 'database-user', | |
'database_password' => '@@@@@', | |
'database_prefix' => 'psod_', | |
'database_engine' => 'InnoDB', |
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
/** | |
* created by : risyandi @2020 | |
*/ | |
function countBits(num, bitNum) { | |
let binary = Number(num).toString(2); | |
let temp = ""; | |
let result = null; | |
for (let index = 0; index < binary.length; index++) { |
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
def pipeline(*funcs): | |
def helper(arg): | |
for func in funcs: | |
arg = func(arg) | |
return arg | |
return helper | |
fun = pipeline(lambda x: x * 3, lambda x: x + 1, lambda x: x / 2) | |
print(fun(3)) #should print 5.0 |