Skip to content

Instantly share code, notes, and snippets.

View yasyaindra's full-sized avatar

Yasya Indra yasyaindra

View GitHub Profile
@yasyaindra
yasyaindra / kaggle.py
Last active January 26, 2023 13:42
downloading kaggle datasets directly to your google colab
!pip install opendatasets
import opendatasets as od
import pandas as pd
from google.colab import files
files.upload()
!ls -lha kaggle.json
!pip install -q kaggle # installing the kaggle package
@yasyaindra
yasyaindra / script.js
Last active August 3, 2022 12:11
Script to know `is the data taken or given?` by giving the change of value
const editAmount = (amount, changing) => {
if (changing > amount) {
return {
preAmount: amount,
currentAmount: changing,
interval: changing - amount,
status: "DITAMBAH",
};
} else if (changing < amount) {
return {