Moved to jekyll on GitHub

In 2005, right around the time moveabletype was imploading, I started a wordpress blog. I used it a bunch. Social media had not taken over and RSS reader were just getting started.

But these days RSS readers are dead as everyone moved to twitter or other media sites.

And wordpress is hard to keep secure if you don’t give it the love and care it needs.

So now I’ve exported all the posts to this jekyll which builds on github. It will have less hacking but lets see if I use it at all.

How to turn on Windows 10 Emoji Keyboard

 

I’m not sure why this was so hard to find. Simply right click on the taskbar and get the menu to appear. There is an option to “Show touch keyboard button”. That will add the touch keyboard to the far right of the taskbar. Clicking that will bring up the keyboard where you can then click the emoji icon.

windows-10-emoji-keyboard

 

emoji-keyboard

User Profile Edit with Autoform and SimpleSchema in Meteor JS

The steps to creating a form with autoform for editing user profile information are simple but not obvious when trying to tie everything together for the first time.

The first step is the set up the Schema. You need to set it correctly for the user data but the profile object is free form where you can add anything you want. Remember that all the things in the profile object are editable by the user. After you craete the schema be sure to attach it to the users collection.

Next you just need to create the form. The autoform quickform helper will spit out a form for all the user data, most of which you probably don’t want the user to be editing. Instead we can easily just show the fields we want to let users edit:

And that’s it. In the autoForm helper the collection accepts either a template helper (no quotes) or a global variable (quotes). For users you need to pass in the “Meteor.users” collection. To set what data to load the doc attribute needs an object with a _id property which the currentUser helper has.