Members: @112XXXXXX, @112XXXXXX, @112XXXXXX (student IDs)
:::info You can write in Chinese. :::
| #!/usr/bin/env bash | |
| # build-coreutils-github.sh | |
| # Clone and build GNU coreutils from GitHub with debug symbols. | |
| set -euo pipefail | |
| # Install all dependencies in ONE apt line | |
| sudo apt-get update && sudo apt-get install -y \ | |
| autopoint autoconf automake bison gettext git gperf gzip help2man m4 make perl tar texinfo wget xz-utils \ | |
| build-essential pkg-config |
I hereby claim:
To claim this, I am signing this object:
| class ws::sudo { | |
| package { "sudo": | |
| ensure => 'present' | |
| } | |
| file { ['/etc/sudoers']: | |
| ensure => file, | |
| owner => '0', | |
| group => '0', |
| #### Contents of the preconfiguration file (for wheezy) | |
| ### Localization | |
| d-i debian-installer/locale string en_US.UTF-8 | |
| d-i debian-installer/keymap select us | |
| d-i keymap select us | |
| ### Network configuration | |
| d-i netcfg/choose_interface select auto | |
| ### Mirror settings |
請看目前網站的樣子:ntuchorus.github.io
| #include <iostream> | |
| #include <algorithm> | |
| #include <string> | |
| #include <vector> | |
| using namespace std; | |
| const int MaxCharacterHash = 20; | |
| int searchMinimalPerfectHash(int i, vector<string>& fwords, vector<string>& hash, vector<bool>& visited, vector<int>& values ); | |
| vector<string> words = { | |
| "auto", |
| ; What does "BP.DEVNUM" mean? | |
| DPBLOCK STRUC | |
| DEVNUM DB ? ;I/O driver number | |
| DPBLOCK ENDS | |
| MOV AH,[BP.DEVNUM] | |
| ;------------------- | |
| ; We see this pattern many times : | |
| ; SegmentRegister : [ PointerRegister.NAME ] |
| " Vim color file | |
| " Converted from Textmate theme Monokai using Coloration v0.3.2 (http://github.com/sickill/coloration) | |
| set background=dark | |
| highlight clear | |
| if exists("syntax_on") | |
| syntax reset | |
| endif |