Here is an example using emojis instead of past/today:
Output
Move files in current subdirectories to the current directory. Delete local folders that are empty.
This uses the XML/HTML library BeautifulSoup . This could also be done using regex but playing with HTML and regex is usually a bad idea.
Found on reddit
çççç ççç ççç ççç ççç ççç ççç ççç ççç çççç çç çç Fiz esse script (cedilha.sh) pra fazer o c-cedilha (ç) funcionar no Ubuntu 16.04.…
[java] import java.util.concurrent.ExecutorService; import java.util.concurrent.Executors; import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.TimeUnit; class ParallelCounterExample { public static void main(String[] args) throws InterruptedException { int threads = 2000; ExecutorService…
Problem: Match strings that contains a single quotation mark ('), but not multiple ones together. Solution: (?<!')'(?!') This is a regex for a single quotation…