Skip to content

Instantly share code, notes, and snippets.

View WisnuDS's full-sized avatar
🎯
Hocus Focus

Wisnu Dewa Saputra WisnuDS

🎯
Hocus Focus
View GitHub Profile
@WisnuDS
WisnuDS / ChiliImageDetection.py
Created January 4, 2021 18:15
This Code for Final Exam in Pattern Recognition
import cv2
import matplotlib.pyplot as plt
import pandas as pd
from sklearn.neighbors import KNeighborsClassifier
# Segmentation using equalize in colorize feature
# Segmentation for green feature
green = []
for i in range(1, 41):
@WisnuDS
WisnuDS / tree.css
Created July 5, 2020 08:35 — forked from dylancwood/tree.css
CSS to create a simple tree structure with connecting lines. No images or JS required.
ul.tree, ul.tree ul {
list-style: none;
margin: 0;
padding: 0;
}
ul.tree ul {
margin-left: 10px;
}
ul.tree li {
margin: 0;
@WisnuDS
WisnuDS / SmartLurahBot.py
Last active June 22, 2020 14:52
Bot for Smart Lurah Application
import os
import logging
from datetime import datetime
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
import time
import requests
import json
import re
@WisnuDS
WisnuDS / UserModel.java
Created May 18, 2020 06:59
Sample of Model
package models;
import helper.Model;
import java.util.ArrayList;
import java.util.List;
public class UserModel extends Model {
private String id;
private String telegramId;