I hereby claim:
- I am cam5 on github.
- I am cameronhurd (https://keybase.io/cameronhurd) on keybase.
- I have a public key whose fingerprint is 5F9E 7497 89CA 536D B0C3 0589 53AF CFDF 3CA9 B798
To claim this, I am signing this object:
| { | |
| "name": "smartweb-version-2", | |
| "version": "0.0.0", | |
| "private": true, | |
| "scripts": { | |
| "build": "rm -rf dist && webpack --mode development --config webpack.server.config.js && webpack --mode development --config webpack.dev.config.js", | |
| "start": "node ./server/app.js" | |
| }, | |
| "engines": { | |
| "node": ">= 8.0.0", |
| Verifying my Blockstack ID is secured with the address 14SiwJBwpgLUTV54HXFNdYF2Lii3LS6KrP https://explorer.blockstack.org/address/14SiwJBwpgLUTV54HXFNdYF2Lii3LS6KrP |
I hereby claim:
To claim this, I am signing this object:
| $('select').dropkick({ | |
| change: function(value, label) { | |
| var lb = $('.dk_label:contains(' + label + ')'), | |
| ct = lb.parents('.dk_container'); | |
| ct.css('height', lb.css('height')); | |
| } | |
| }); |
| <?php | |
| $id_map = array(); | |
| $update = array(); | |
| $posts = $db->query("SELECT * from wp_posts"); | |
| for ($count = 1; $count <= $posts->num_rows; $count++) { | |
| $row = $posts->fetch_assoc(); | |
| $id_map[$row['ID']] = $count; |
| .hook-alert() {} | |
| .hook-alert-success() {} | |
| .hook-alert-warning() {} | |
| .hook-alert-danger() {} | |
| .hook-article-title() {} | |
| .hook-article-meta() {} | |
| .hook-article-lead() {} | |
| .hook-article-divider() {} | |
| .hook-badge() {} | |
| .hook-badge-success() {} |
| $jp = new Jetpack_Comments; | |
| remove_action('comment_form_before', array($jp, 'comment_form_before')); | |
| remove_action('comment_form_after', array($jp, 'comment_form_after'));` | |
| comment_form( apply_filters( 'woocommerce_product_review_comment_form_args', $comment_form ) ); |
| <? | |
| class Better_Ellipses { | |
| static $link; | |
| static function init() { | |
| add_action('bbp_new_reply', array(__CLASS__, 'get_reply_info'), 1, 2); | |
| add_action('bbp_new_topic', array(__CLASS__, 'get_topic_info'), 1, 1); | |
| add_filter('bp_excerpt_append_text', array(__CLASS__, 'link_ellipses') ); | |
| } | |
| static function link_ellipses($string) { | |
| return " <a href='" . self::$link . "'>[…]</a>"; |