[Pelican] Remove Prefix in PATH_METADATA Using Named Regex Group
Remove prefix of Pelican PATH_METADATA using Python named regular expression group.
read more »Remove prefix of Pelican PATH_METADATA using Python named regular expression group.
read more »Find images with specific dimension using Linux command line.
read more »How to parse a UTF-16 XML file in Go.
read more »Remove last character of UTF-8 string via utf8.DecodeLastRuneInString in Go.
read more »Use regular expresion groups to replace texts in Vim.
read more »Given an URL, auto-detect and convert the encoding of the HTML document to UTF-8 if it is not UTF-8 encoded in Go.
read more »Given an URL, determine the encoding of the HTML document in Go using golang.org/x/net/html and golang.org/x/text packages.
read more »Reverse a string using for or range keyword in Go.
read more »Go solution to Names scores - Problem 22 - Project Euler.
read more »Go solution to Pandigital products - Problem 32 - Project Euler.
read more »Given a string with Chinese characters, convert the Chinese characters in the string to Pinyin (romanization system for Chinese) in Go.
read more »Given a rune value, check if the rune is a Chinese character.
read more »Use Go regexp package to repace spaces and newline in the string.
read more »Write a list of strings to file in Go programming language.
read more »This Chrome extension helps you download Instagram profile picture in full size.
read more »Given the url of Instagram profile picture, return the url of profile picture in full size.
read more »Get urls of video and audio of Instagram user post live videos shared to stories via Go standard regexp package.
read more »Get file name without extension in Go programming language.
read more »A Chrome extension to help you show Instagram id on the user page.
read more »A Chrome extension to help you try to get Facebook user id by URL change and print the id next to name if found.
read more »A Chrome extension to help you try to get Facebook user id by URL change.
read more »Go strings.Index is equivalent to JavaScript String.prototype.indexOf()
read more »Calculate the length of string (UTF-8) in Go. Iterate over the UTF-8 string by for or range keyword.
read more »Convert specific texts to clickable links (<a> tag) in HTML document via Go/GopherJS.
read more »Convert specific texts to clickable links (<a> tag) in HTML document via JavaScript.
read more »Append text at the beginning of each line via JavaScript.
read more »Go solution to largest product in a series - Problem 8 - Project Euler.
read more »Check if a string exists in file via Go regexp package.
read more »My answer to How can I get Chinese first letter(Pinyin) by using Go language? - Stack Overflow
read more »Build Chrome Extension with Go, compiled to JavaScript via GopherJS. This post show you how to build Chrome extension that convert the web page of Simplified Chinese website to Traditional Chinese.
read more »My implementation of atoi function, which converts a string representing decimal number to its corresponding int type, in Go programmming language.
read more »Get the attribute of a HTML element via named group matches in Go regexp package.
read more »Given a text and a wildcard pattern, implement wildcard pattern matching algorithm that finds if wildcard pattern is matched with text in Go programming language.
read more »Go implementation of BK-tree data structure used for approximate string matching in a dictionary. The distance metric here is Levenshtein distance, the minimum number of single-character edits (insertions, deletions or substitutions) required to change one string into the other.
read more »Go implementation of Wagner-Fischer algorithm that computes the edit distance between two strings of characters. The edit distance here is Levenshtein distance, the minimum number of single-character edits (insertions, deletions or substitutions) required to change one string into the other.
read more »Recursive implementation of Levenshtein distance algorithm in Go programming language. Levenshtein distance (LD) is a measure of the similarity between two strings, the minimum number of single-character edits (insertions, deletions or substitutions) required to change one string into the other.
read more »Go equivalent of Python string startswith and endswith methods.
read more »Find all permutations of a given string containing all distinct characters in Go programming language.
read more »Go front-end programming - online service for conversion of Traditional and Simplified Chinese via GopherJS/godom/gojianfan.
read more »gojianfan - converter for Traditional and Simplified Chinese in Go programming language.
read more »Convert the kebab-case to camelCase in Go programming language.
read more »Generate a random string from [a-z0-9] in Python
read more »Get string from io.Writer (io writer) in Go programming language.
read more »Generate a random string from [a-z0-9] in C programming language.
read more »Read lines from web URL via Go programming language.
read more »Insert a line or string to n-th line of the file via Go programming language.
read more »Append text line or string to the end of file via Go programming language.
read more »Generate a random string from [a-z0-9] in Dart.
read more »Remove leading and trailing empty strings in string array/slice via Go programming language.
read more »Replace specific pattern of strings in HTML files under directory via sed.
read more »Test if a string consists of single character or letter in Go programming language.
read more »Generate a random string from [a-z0-9] in JavaScript.
read more »Replace specific pattern of strings in HTML files under directory via sed.
read more »Get prefix or suffix of a string in Makefile.
read more »Remove prefix or suffix from string via Go programming language.
read more »Given an installed package name on Ubuntu Linux, find its version in Makefile.
read more »Find Pāli word in Velthuis scheme, and replace them with unicode via Go programming language.
read more »Wrap Pāli words in span element via regular expression and Go.
read more »Convert the format (Big5 encoding to UTF-8, remove DOS newline in file, replace string big5 with UTF-8, and append UNIX newline to end of file) of HTML files in directory via Bash script.
read more »Convert the name of files in directory to lowercase via Bash script.
read more »Output fixed width/length string in Go programming language.
read more »Read Yes/No (i.e., ask for user confirmation) from console in Go programming language.
read more »Create reStructuredText metadata via Go text/template and text/width package.
read more »Convert encoding of file from Big5 to UTF-8, remove DOS newline in file, replace string big5 with UTF-8, and append UNIX newline to end of file.
read more »Example for how to replace a string in a variable in Makefile.
read more »Readlines from string or file in Go programming language.
read more »Search links of major search engines - Google, DuckDuckGo, Bing, Yahoo, Baidu, Yandex, Ecosia, Qwant.
read more »Wrap Pāli words in span element via regular expression and JavaScript.
read more »Make reStructuredText links of the same name anonymous via regular expression by sed stream editor.
read more »Replace footnote in reStructuredText format via regular expression by sed stream editor.
read more »Replace footnote in reStructuredText format via regular expression in Vim editor.
read more »Remove query string from URL in Go programming language.
read more »Get UTF-8 string width (width of English letter is 1, width of CJK character is 2) in Go programming language.
read more »Convert file encoding from Big5 to UTF-8 via Go programming language.
read more »Insert a line after first pattern match via sed stream editor.
read more »Convert all files in a directory recursively (i.e., including subdirectories of the directory) from Big5 encoding to UTF-8 via iconv command.
read more »Find Pāli word in Velthuis scheme via Go programming language.
read more »Append text at the beginning of each line via sed stream editor.
read more »Convert Traditional Chinese PO file to Simplified Chinese via OpenCC and sed in Makefile.
read more »Concatenate and Minify CSS via sed and tr command in Makefile.
read more »Minify HTML via Go programming language.
read more »Minify CSS via Go programming language.
read more »Remove C/C++ style comments via Go programming language.
read more »Automatically convert Traditional Chinese (zh_TW) PO file to Simplified Chinese (zh_CN) by OpenCC and Go programming language.
read more »Extract URL from reStructuredText link and insert the URL in the file as metadata via Python.
read more »Conversion Button of Traditional/Simplified Chinese on Website via JavaScript.
read more »Python script to convert HTML table to reStructuredText list-table via Beautiful Soup 4.
read more »Go regexp example of named group matches - extract metadata from file path.
read more »Python scripts to export PIXNET blog posts to files of reStructuredText format.
read more »Count leading spaces of a string in Go.
read more »Iterate over UTF-8 or non-ASCII strings in Go. Iterations by for or range keywords.
read more »Parse Accept-Language in HTTP Request Header in JavaScript Programming Language.
read more »Automatically convert Traditional Chinese (zh_TW) PO file to Simplified Chinese (zh_CN) by OpenCC and Python programming language.
read more »Conversion of Traditional and Simplified Chinese by OpenCC and Python programming language.
read more »Conversion of Traditional and Simplified Chinese by OpenCC and Go programming language.
read more »Write a bash script to use wget to fetch webpages.
read more »Use regular expression in Python to search and find strings marked for i18n (Internationalization)
read more »Generate a random string from [a-z0-9] in Golang.
read more »Parse Accept-Language in HTTP Request Header in Go Programming Language.
read more »List all files in a directory recursively (i.e., including subdirectories of the directory), and use sed to rename the files.
read more »Remove trailing newline (carriage return) of a string in C programming language.
read more »Parse Accept-Language in HTTP Request Header in Python.
read more »Remove leading and trailing whitespaces of a string in JavaScript.
read more »JavaScript library New Tong Wen Tang for conversion of Traditional and Simplified Chinese.
read more »JavaScript equivalent of basename program.
read more »JavaScript equivalent of Python string startswith, endswith, and contains.
read more »Given a set of strings (words), and an user input string, output a set of strings with prefix the same as the user input string
read more »%2c%e3%80%90%e5%bd%a2%e3%80%91%e6%97%a0%e7%a2%8d%e7%9a%84%e3%80%82 <=> ,【形】无碍的。
read more »