start new:
tmux
start new with session name:
tmux new -s myname
| #!/usr/bin/env python | |
| """ | |
| Requires apachelog. `pip install apachelog` | |
| """ | |
| from __future__ import with_statement | |
| import apachelog | |
| import csv | |
| import re | |
| import sys | |
| from optparse import OptionParser |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
|---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
All of the below properties or methods, when requested/called in JavaScript, will trigger the browser to synchronously calculate the style and layout*. This is also called reflow or layout thrashing, and is common performance bottleneck.
Generally, all APIs that synchronously provide layout metrics will trigger forced reflow / layout. Read on for additional cases and details.
elem.offsetLeft, elem.offsetTop, elem.offsetWidth, elem.offsetHeight, elem.offsetParent| {"lastUpload":"2021-12-12T18:16:37.310Z","extensionVersion":"v3.4.3"} |
| #!/System/Library/Frameworks/Ruby.framework/Versions/Current/usr/bin/ruby | |
| # SET YOUR_HOME TO THE ABSOLUTE PATH OF YOUR HOME DIRECTORY | |
| # chmod +x install.rb | |
| # ./install.rb | |
| if ARGV.length < 1 | |
| puts "Too few arguments, please include the folder name to install your packages there" | |
| exit | |
| end |
| android-ndk | |
| android-platform-tools | |
| android-sdk | |
| android-studio | |
| appcleaner | |
| arduino | |
| cloudflare-warp | |
| coteditor | |
| dbeaver-community | |
| docker |
| lsof -iTCP -P | grep Spark | awk '{print $9}' | cut -d '>' -f2 | cut -d ':' -f1 | uniq | xargs -I% curl ipinfo.io/%/org |
| Find files size excluding folders in the current directory | |
| `find . -name "*.*" -type f -depth 1 -exec du -ch {} +` | |
| Batch file to delete files older than N days | |
| `forfiles -p "C:\what\ever" -s -m *.* -d <number of days> -c "cmd /c del @path"` | |
| Running a batch program in one line |