This file contains hidden or 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
| <?xml version="1.0" encoding="utf-8"?> | |
| <!-- WYJ_Text_JP --> | |
| <!-- Author: Devalon --> | |
| <!-- DateCreated: 31/10/2023 10:57:17 AM --> | |
| <GameData> | |
| <LocalizedText> | |
| <Replace Tag="LOC_TRAIT_CIVILIZATION_WEI_NAME" Language="ja_JP"> | |
| <Text>魏王国</Text> | |
| </Replace> | |
| <Replace Tag="LOC_TRAIT_CIVILIZATION_WEI_DESCRIPTION" Language="ja_JP"> |
This file contains hidden or 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> | |
| <head> | |
| <meta charset="utf-8"/> | |
| <title>String#includes vs. String#indexOf vs. RegExp</title> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/benchmark/1.0.0/benchmark.min.js"></script> | |
| <script src="./suite.js"></script> | |
| </head> | |
| <body> | |
| <h1>Open the console to view the results</h1> |
This file contains hidden or 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
| const Botkit = require('botkit'); | |
| const puppeteer = require('puppeteer'); | |
| const fs = require('fs'); | |
| const capture = async keyword => { | |
| const browser = await puppeteer.launch(); | |
| const page = await browser.newPage(); | |
| await page.goto('https://kabutan.jp/'); | |
| await page.type('#input_id', keyword); | |
| await page.click('#kensaku_btn'); |
This file contains hidden or 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
| #!/bin/bash | |
| if [ ! $1 ]; then | |
| echo "pass the username to create." | |
| exit 1; | |
| fi | |
| useradd $1; | |
| cd /home/$1 |