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
#include <linux/cdev.h> | |
#include <linux/ftrace.h> | |
#include <linux/kallsyms.h> | |
#include <linux/list.h> | |
#include <linux/module.h> | |
#include <linux/proc_fs.h> | |
MODULE_LICENSE("GPL"); | |
MODULE_AUTHOR("National Cheng Kung University, Taiwan"); |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Working with HTML Forms</title> | |
<meta name="viewport" content="width=device-width"> | |
<style> | |
*, | |
*::after, | |
*:before{ |
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
// forms.js | |
// | |
const init = function(){ | |
document.getElementById('button-cancel').addEventListener('click', reset); | |
document.getElementById('button-send').addEventListener('click', send); | |
} | |
const reset = function(ev){ | |
//HTML will automatically put the form back to its initial state |