Skip to content

Instantly share code, notes, and snippets.

View kehanlu's full-sized avatar
:shipit:

Kehan Lu kehanlu

:shipit:
View GitHub Profile
/***********************************************************************************
*This program is a demo of how to use the touch function in a phone GUI
*This demo was made for LCD modules with 8bit or 16bit data port.
*This program requires the the LCDKIWI library.
* File : display_phonecall.ino
* Hardware Environment: Arduino UNO&Mega2560
* Build Environment : Arduino
*Set the pins to the correct ones for your development shield or breakout board.
@kehanlu
kehanlu / Ubuntu.md
Last active September 16, 2021 14:00
#include <iostream>
#include <vector>
using namespace std;
int main(){
int T;
cin >> T;
while(T--){
bool found[200001] = {0};
import requests
from bs4 import BeautifulSoup
html = requests.get('http://clubs.ntust.edu.tw/Introduction/').text
soup = BeautifulSoup(html,'html.parser')
club_list = list()
for td in soup.find_all('td'):
club_list.append(td.text)
print(club_list)
@kehanlu
kehanlu / sender.c
Last active November 30, 2017 18:10
#define SRV_IP "127.0.0.1"
#include <arpa/inet.h>
#include <netinet/in.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <unistd.h>
#include <string.h>
@kehanlu
kehanlu / index.html
Last active January 7, 2025 09:45
get tickets with google flights (python webcrawler)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>找機票</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<!-- JQuery -->
<script src="http://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<style>
.search{
@kehanlu
kehanlu / index.html
Created November 20, 2017 08:17
今日體育新聞
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>今天體育</title>
<!--Boostrap4-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<!-- JQuery -->
<script src="http://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
<style>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>現在幾點啦</title>
<!-- Bootstrap4 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<!-- JQuery -->
<script src="http://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
</head>
@kehanlu
kehanlu / index.html
Last active November 14, 2017 18:07
今日星座運勢爬蟲
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>今日星座運勢</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<style>
p{
padding: 0 30px 0 30px;
@kehanlu
kehanlu / index.html
Last active November 14, 2017 08:47
calculator on Django
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>計算機</title>
<!-- Bootstrap4 -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<!-- JQuery -->
<script src="http://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>