Simple example using media queries for dynamic size changing of nested divs.
To see results -- open in new window and try to resize.
@media screen and (max-width: 700px) {}| #!/usr/bin/env | |
| find . -type d -exec chmod 755 {} \; | |
| find . -type f -exec chmod 644 {} \; | |
| # Apple metadata removal | |
| xattr -dr com.apple.quarantine . |
| curl -O http://themainframe.ca/wp-content/uploads/2011/06/htop.zip | |
| unzip htop.zip | |
| sudo mv htop /bin | |
| rm htop.zip |
| find . -type f -print0 \ | |
| | xargs -0 md5 \ | |
| | rev \ | |
| | sort -t \) -k1,1 -u \ | |
| | rev \ | |
| | sed -e "s/.*(\(.*\)).*/\"\1\"/"\ | |
| | xargs -J % mv % ../cleaned |
| <!DOCTYPE html> | |
| <meta charset="utf-8"> | |
| <style> | |
| * { | |
| font-family: Arial, sans-serif; | |
| font-size: 1em; | |
| } | |
| body, html { |
| <!doctype html> | |
| <html> | |
| <head> | |
| <title>Test</title> | |
| <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript" charset="utf-8"></script> | |
| <style type="text/css" media="screen"> | |
| body,html{ | |
| margin: 0; |
| #!/usr/bin/env bash | |
| # ~/Library/LaunchAgents Per-user agents provided by the user. | |
| # /Library/LaunchAgents Per-user agents provided by the administrator. | |
| # /Library/LaunchDaemons System-wide daemons provided by the administrator. | |
| # /System/Library/LaunchAgents Per-user agents provided by Mac OS X. | |
| # /System/Library/LaunchDaemons System-wide daemons provided by Mac OS X. | |
| rm -rf /tmp/launchers.tmp.txt |
| sudo apt-get install curl |
| import java.io.*; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| public class ListFiles { | |
| public static void main(String[] args) throws IOException { | |
| String path = (args.length > 0) ? args[0] : "."; |