This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Hello</title> | |
| <script src="node_modules/jquery/dist/jquery.min.js"></script> | |
| <script> | |
| $(function() { | |
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| identify $(find . -type f \( -name "*.jpg" -o -name "*.png" -o -name "*.jpeg" \)) \ | |
| | awk ' | |
| function basename(file) { | |
| sub("./img/*/", "", file); | |
| return file; | |
| } | |
| { | |
| split($3, a, "x"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| __author__ = 'Sergey Sobko' | |
| __email__ = '[email protected]' | |
| __copyright__ = 'Copyright 2014, The Profitware Group' | |
| def nucleobase_yielder(): | |
| while True: |