Skip to content

Instantly share code, notes, and snippets.

View Risyandi's full-sized avatar
🌴
Everyday is a vacation

Risyandi Risyandi

🌴
Everyday is a vacation
View GitHub Profile
@Risyandi
Risyandi / createPdf.js
Created September 13, 2021 05:26
create pdf using pdfMake library
// 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'
@Risyandi
Risyandi / clearReactSelect.js
Created July 28, 2021 03:46
line code for clear react select
import React, { useRef } from "react";
import Select from "react-select";
export default function App() {
const selectInputRef = useRef();
const onClear = () => {
selectInputRef.current.select.clearValue();
};
@Risyandi
Risyandi / convertSingle.txt
Created April 18, 2021 15:33
convert single format to webp
cwebp -preset picture -q 80 d:\source-images-original\1.jpg -o d:\source-images-result\1.webp
@Risyandi
Risyandi / convertAll.txt
Created April 18, 2021 15:30
convert all format to webp automate
for file in *.jpg; do cwebp -q 80 "$file" -o "${file%.jpg}.webp"; done
@Risyandi
Risyandi / sortReverseNum.js
Last active April 15, 2021 07:56
reverse sorting value in array
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--;
@Risyandi
Risyandi / findNumberMax.js
Last active April 15, 2021 07:57
find number maximum in array using javascript solution
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]
}
}
@Risyandi
Risyandi / swiper-react.js
Created December 10, 2020 07:24
example swiper in react
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);
@Risyandi
Risyandi / configurationParameter.php
Created November 13, 2020 02:10
configuration prestashop 1.7x in source folder /app/config/parameters.php
<?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',
/**
* 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++) {
@Risyandi
Risyandi / data-engineer-Python#2.py
Last active January 9, 2020 14:20
Jawaban soal data engineer Jabar Digital Services
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