How to use:
./wordle.sh
Or try the unlimit mode:
const responseJson = pm.response.json(); | |
const resJsonString = JSON.stringify(responseJson); | |
const template = ` | |
<link rel="stylesheet" href="https://unpkg.com/big-json-viewer/dist/default.css"> | |
<script src="https://unpkg.com/big-json-viewer/dist/browser-api.js"></script> | |
<style> | |
body { | |
height: 100vh; |
const LEN = 1000; | |
// First choice | |
[...Array(12).keys()] | |
// Another choice | |
Array.from({length: LEN}) | |
Array.from(Array(LEN)) | |
async function searchManga(title) { | |
const result = await (await fetch(`https://api.mangadex.org/manga?title=${encodeURI(title)}`)).json(); | |
return result.results.map(v => v.data) | |
} | |
async function getChapters(mangaID) { | |
const result = await (await fetch(`https://api.mangadex.org/chapter/?manga=${mangaID}&limit=50`)).json(); | |
return result.results; | |
} | |
async function getChapterInfo(chapterID) { | |
const result = await (await fetch(`https://api.mangadex.org/chapter/${chapterID}`)).json(); |
- lấy bài hát liên quan: | |
http://mp3.zing.vn/xhr/recommend?type=audio&id=ZW67OIA0 | |
- lấy data thông qua key: | |
http://mp3.zing.vn/xhr/media/get-source?type=audio&key=kmJHTZHNCVaSmSuymyFHLH | |
http://mp3.zing.vn/html5xml/song-xml/kmJHTZHNCVaSmSuymyFHLH | |
- lấy info bài hát | |
https://mp3.zing.vn/xhr/media/get-info?type=audio&id=ZW8I7AAI |
Welcome to step by step hands-on guide to setup webpack in your upcoming typescript project. Please follow the steps and you should be able to create your own webpack project. Please download the source code from github.
You will learn below things:
webpack.config.js
file and modify webpack.config.js based on our need.Thanks everyone for commenting/contributing! I made this in college for a class and I no longer really use the technology. I encourage you all to help each other, but I probably won't be answering questions anymore.
This article is also on my blog: https://emilykauffman.com/blog/install-anaconda-on-wsl
Note: $
denotes the start of a command. Don't actually type this.
x86_64.sh
. If I had a 32-bit computer, I'd select the x86.sh
version. If you accidentally try to install the wrong one, you'll get a warning in the terminal. I chose `Anaconda3-5.2.0-Lis1 = u'ÀÁÂÃÈÉÊÌÍÒÓÔÕÙÚÝàáâãèéêìíòóôõùúýĂăĐđĨĩŨũƠơƯưẠạẢảẤấẦầẨẩẪẫẬậẮắẰằẲẳẴẵẶặẸẹẺẻẼẽẾếỀềỂểỄễỆệỈỉỊịỌọỎỏỐốỒồỔổỖỗỘộỚớỜờỞởỠỡỢợỤụỦủỨứỪừỬửỮữỰựỲỳỴỵỶỷỸỹ' | |
s0 = u'AAAAEEEIIOOOOUUYaaaaeeeiioooouuyAaDdIiUuOoUuAaAaAaAaAaAaAaAaAaAaAaAaEeEeEeEeEeEeEeEeIiIiOoOoOoOoOoOoOoOoOoOoOoOoUuUuUuUuUuUuUuYyYyYyYy' | |
def remove_accents(input_str): | |
s = '' | |
print input_str.encode('utf-8') | |
for c in input_str: | |
if c in s1: | |
s += s0[s1.index(c)] | |
else: | |
s += c |
If you use git on the command-line, you'll eventually find yourself wanting aliases for your most commonly-used commands. It's incredibly useful to be able to explore your repos with only a few keystrokes that eventually get hardcoded into muscle memory.
Some people don't add aliases because they don't want to have to adjust to not having them on a remote server. Personally, I find that having aliases doesn't mean I that forget the underlying commands, and aliases provide such a massive improvement to my workflow that it would be crazy not to have them.
The simplest way to add an alias for a specific git command is to use a standard bash alias.
# .bashrc