載入中
[筆記] vue-cli-service serve: Invalid Host header
Add `devServer > disableHostCheck` in `vue.config.js`
```javascript
module.exports = {
//...
devServer: {
...(還有更多)
0 則留言
[筆記] puppeteer on WSL
Install missing lib:
```bash
apt install libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libxkbcommon0 libgtk-3-0
```
...(還有更多)
0 則留言
[心得] GCC 2021 Online
# GCC (Global Cybersecurity Camp) 2021 Online
時間: 1/16、1/17、1/23、1/24、1/30、1/31
地點: 公務人員發展學院福華文教會館
官網: https://gcc.ac/gcc_2021/
...(還有更多)
0 則留言
[筆記] Python bruteforce script
```python3
from itertools import product
def bruteforce_generator(characters, min_length, max_length):
for i in range(min_length, max_length+1):
...(還有更多)
0 則留言
Two Pwns a Week Challenge(3) - flag
# flag
**先備知識**
- basic assembly
...(還有更多)
2 則留言
[筆記] typescript - object is possibly 'null'
```typescript
// Use `as` syntax
const el = document.querySelector("#selector") as Element;
observer.observe(el);
```
...(還有更多)
0 則留言
[筆記] Property 'xxx' does not exist on type 'Vue' while using $refs in typescript
```typescript
(this.$refs.spy as ScrollSpy).initObserver();
// or if you are using `vue-property-decorator`
@Ref('spy') readonly scrollspy!: ScrollSpy;
...(還有更多)
0 則留言
109上學期 登出成功
全都...結束了嗎...
![isitallover](https://truth.bahamut.com.tw/s01/202101/0ebb5653f1f2a4fb3cf06e824445177b.JPG)
2 則留言
Two Pwns a Week Challenge(2) - bof
# bof
**先備知識**
- endianness
**知識點**
...(還有更多)
4 則留言
Two Pwns a Week Challenge(1) - collision
# collision
**先備知識**
- c: command line argument
**知識點**
...(還有更多)
0 則留言