create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| <?php | |
| $file = "img/15.jpeg"; | |
| $data = exif_read_data($file); // Returns a Multidimensional array containing image META information | |
| print_r($data); | |
| ?> |
| * Chuck Norris always starts his projects with a Roundhouse-Kickoff. | |
| * Chuck Norris is ScrumMaster and ProductOwner - simultaneously. | |
| * Chuck Norris always wins at Planning Poker. | |
| * Chuck Norris does not estimate, he knows. | |
| * Chuck Norris can do 6-month sprints. | |
| * Chuck Norris does not move story cards, he moves the taskboard. | |
| * When Chuck Norris says "done", believe me, it’s "done". | |
| * Even Chuck Norris is not allowed to be late at the stand-up meeting. Now you tell him. | |
| * Chuck Norris can do a thousand sit-ups during the stand-up meeting. | |
| * Chuck Norris answers just two questions on the stand-up meeting. Chuck Norris does not know obstacles. |
| <?php | |
| // Get the repeater field | |
| $repeater = get_field( 'repeater_field_name' ); | |
| // Get a random rows. Change the second parameter in array_rand() to how many rows you want. | |
| $random_rows = array_rand( $repeater, 2 ); | |
| // Loop through the random rows if more than one is returned | |
| if( is_array( $random_rows ) ){ |
| // This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref | |
| <?php | |
| /** | |
| * WordPress Query Comprehensive Reference | |
| * Compiled by luetkemj - luetkemj.github.io | |
| * | |
| * CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters | |
| * Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php | |
| */ |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| // _decimal.scss | MIT License | gist.github.com/terkel/4373420 | |
| // Round a number to specified digits. | |
| // | |
| // @param {Number} $number A number to round | |
| // @param {Number} [$digits:0] Digits to output | |
| // @param {String} [$mode:round] (round|ceil|floor) How to round a number | |
| // @return {Number} A rounded number | |
| // @example | |
| // decimal-round(0.333) => 0 |
| <!--[if IE]> | |
| According to the conditional comment this is IE<br /> | |
| <![endif]--> | |
| <!--[if IE 6]> | |
| According to the conditional comment this is IE 6<br /> | |
| <![endif]--> | |
| <!--[if IE 7]> | |
| According to the conditional comment this is IE 7<br /> | |
| <![endif]--> | |
| <!--[if IE 8]> |
| on_sent_ok: "location = '/thank-you';" |
| // modifys contact form 7's default select value of --- to Please select... | |
| function my_wpcf7_form_elements($html) { | |
| $text = 'Please select...'; | |
| $html = str_replace('<option value="">---</option>', '<option value="">' . $text . '</option>', $html); | |
| return $html; | |
| } | |
| add_filter('wpcf7_form_elements', 'my_wpcf7_form_elements'); | |
| // Modify multiple selects | |
| function my_wpcf7_form_elements($html) { |
I'm doing some research on how companies use GitHub Enterprise (or public GitHub) internally. If you can help out by answering a few questions, I'd greatly appreciate it.