create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| var commentSchema = new Schema({ | |
| postId: { | |
| type: String, | |
| hashKey: true | |
| }, | |
| id: { | |
| type: String, | |
| rangeKey: true, | |
| default: shortId.generate |
| using System; | |
| using System.Collections.Concurrent; | |
| using System.IO; | |
| using System.Threading.Tasks; | |
| using UnityEditor; | |
| using UnityEditorInternal; | |
| using UnityEngine; | |
| /// <summary> | |
| /// Uses file system watcher to track changes to specific files in the project directory. |
| using TMPro; | |
| using UnityEngine; | |
| [RequireComponent(typeof(TextMeshProUGUI))] | |
| public class BuildDisplayer : MonoBehaviour | |
| { | |
| private TextMeshProUGUI Text; | |
| private void Awake() | |
| { |
| using System.Collections; | |
| using System.Collections.Generic; | |
| public class GameEvent | |
| { | |
| } | |
| public class Events | |
| { | |
| static Events instanceInternal = null; |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "your_email@youremail.com"
| // Listen for orientation changes | |
| window.addEventListener("orientationchange", function() { | |
| // Announce the new orientation number | |
| alert(window.orientation); | |
| }, false); | |
| // Listen for resize changes | |
| window.addEventListener("resize", function() { | |
| // Get screen size (inner/outerWidth, inner/outerHeight) | |
| <?php | |
| // Populate using POST vars | |
| $data = [ | |
| 'email' => 'test@test.com', | |
| 'status' => 'subscribed' | |
| ]; | |
| var_dump( syncMailchimp($data) ); |
| add_action( 'pre_get_posts', 'custom_pre_get_posts_query' ); | |
| function custom_pre_get_posts_query( $q ) { | |
| if ( ! $q->is_main_query() ) return; | |
| if ( ! $q->is_post_type_archive() ) return; | |
| if ( ! is_admin() && is_shop() ) { | |
| $q->set( 'tax_query', array(array( |
| // Sensei - Add tags to Courses | |
| // Run this after "register_post_type( 'course'..." in "class-woothemes-sensei-posttypes.php" | |
| register_taxonomy( | |
| 'course_tag', | |
| 'course', | |
| array( | |
| 'hierarchical' => false, | |
| 'label' => __( 'Tags', CURRENT_THEME ), | |
| 'singular_name' => __( 'Tag', CURRENT_THEME ), |
| package nl.stroep.games.components; | |
| import flambe.Component; | |
| import nape.space.Space; | |
| /** | |
| * @author Mark Knol [blog.stroep.nl] | |
| */ | |
| class NapeDebugView extends Component | |
| { | |
| private var _space:Space; |