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
| function stewie() | |
| % Copyright Dimme | |
| % Distributed under the Attribution-ShareAlike CC BY-SA license | |
| % Side length of the upper frame | |
| a = 10; | |
| % Side lengths of the base frame | |
| b = 15; | |
| d = 1; |
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
| * { | |
| margin: 0; | |
| padding: 0; | |
| box-sizing: border-box; | |
| } | |
| body { | |
| font: 13px Helvetica, Arial; | |
| } |
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
| IMPORTANT | |
| Please duplicate this radar for a Safari fix! | |
| This will clean up a 50-line workaround. | |
| rdar://22376037 (https://openradar.appspot.com/radar?id=4965070979203072) | |
| ////////////////////////////////////////////////////////////////////////////// | |
| (Now available as a standalone repo.) |
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
| <!-- Open graph meta --> | |
| <meta property="og:type" content="website"> | |
| <meta property="og:site_name" content="<?php echo site_name(); ?>"> | |
| <?php if(is_homepage() == true) : ?> | |
| <meta property="og:url" content="http://websiteaddress.com"> | |
| <meta property="og:title" content="<?php echo site_name(); ?>"> | |
| <meta property="og:description" content="<?php echo site_description(); ?>"> | |
| <?php else: ?> | |
| <meta property="og:url" content="<?php echo "http://websiteaddress.com/" . current_url(); ?>"> | |
| <meta property="og:title" content="<?php echo page_title('Page can’t be found'); ?> - <?php echo site_name(); ?>"> |