Sep 26 2015 0

Final change for calendar badge

I had been in contact with David on the possibility on getting some additional variables available for manipulating dates. This was induced by my tinkering with the look-n-feel for my blog and specifically to design and coding of the calendar badges.

Instead of just adding some variables David implemented formatting options by applying Moments, a library/toolkit specifically developed to Parse, validate, manipulate, and display dates in JavaScript’.

Sep 23 2015 0

Fixing the Archives page

In my previous post I fixed the calendar badge to make it work for image-only posts as well. The same issue could also be found in the Archives page. This was also relying on the custom metadata fields month and day. Archives issue

Sep 22 2015 0

Fixing the calendar badge

As noted in my previous post the way the calendar badge is implemented it would not work correctly for image-only posts, since for these types of post you cannot specify the custom metadata required. This needed to be fixed.

By changing the structure of the HTML templates and rewriting the jQuery code the calendar badge will now work by just using the standard date field. It does need to be using the display format September 24, 2015 (The setting is named How should the date appear on your blog? in your Blot.im dashboard) for the code to work correctly. Something to keep in mind if you wish to implement this in your blog and your are using a different display format.

Sep 21 2015 0

Adding a calendar badge

I wasn’t totally satisfied how dates for each post were displayed using the default Blot templates, so I decided to change it. That’s the beauty of having a template based blogging system available.

After a bit of sketching and trying out several color combinations I have chosen the following design for the calendar badge

Calendar badgeCalendar badge

Sep 21 2015 0

keep-calm-and-its-just-a-test

keep-calm-and-its-just-a-testkeep-calm-and-its-just-a-test
Sep 19 2015 0

Styling table rows

To make the reading of longer tables a little easier a background color can be applied which alternates between odd and even rows.

CSS has built-in support form this, via a pseudo-selector, called nth-child.

table tr:nth-child(odd) td {
  background-color: rgba(225, 234, 240, 1);
}

table tr:nth-child(even) td {
  background-color: rgba(234, 240, 247, 1);
}

Sep 18 2015 0

Modification to Ball Dumper Module

When the Load Shifter was shifting the buckets it tended to get held by the grabber from the ball dumper. When the mover finally gets freed it jumps to its final position which sometimes caused the bucket to jump over the empty bucket mover. It also caused enough strain on the long bar connecting the Initial Drive Assembly to the Load Shifter module. Over time this even caused the Technic Bush 1/2 (4265c) to slip.

I have overcame this issue by making a change to the pin on the Ball Dumper that should make sure the grabber does not sit too close the the load shifter. I my build the single long Technic Pin (6558) did not do the job good enough. The following two parts are used to replace the single Technic Pin

Sep 16 2015 0

GBC timing issues resolved

After reviewing all of the build instructions again I found my timing issues and have been able to resolve them, yay!!

Initial Drive Assembly

This blog is powered by Blot