Gonna try out a Padilla

I gave Padilla & Sons a call today to ask a couple questions. I also noticed they have a Light Weight Competition Kimono for the same price as the Gold weave and I found it mighty enticing.

I believe it was Betty that I spoke with. She answered all my questions to my satisfaction, and made the suggestion that I go with an A4 instead of an A3. I’m 6’1″ and 206 lbs down from 215 lbs after 3 weeks of calorie observation. My goal weight is 190 lbs by end of April.  Since I’m right in the middle of the A3 and A4 she suggested to go big for starters and if I tried it on and didn’t dig it I could exchange it for the A3.  She made it very clear that since these are cotton they will shrink some from washing, but they have detailed instructions on how to deal with this.

Order the A4 white light weight competition today.  Totally stoked!  Gi with shipping is $104 .


One Gi is never enough

So I’m back in the swing of things, hitting 2-4 BJJ classes now a week (hopefully more soon) and I’ve come to realize that one Gi is definitely not enough. My Koral MKM Gi totally rocks, but washing it everyday and letting it hang dry is not working out very well, and there is no chance my Gi will ever be placed in a dryer (I get nightmares just thinking about it). I’m going a bit soggy to class now which ain’t cool.

I’m thinking I’m gonna try something I haven’t seen much of but have read only good reviews. Padilla and Sons has a Gold Weave that looks mighty enticing, and at $95 dollars looks to be quite a deal. Their customer service is claimed to be top notch so I’m going to give them a call here today and see what they recommend as for size and see how it goes.


Still more boarding with Midder Kyle

Snowbird_100129_7 from jimmyDean on Vimeo.


More boarding with Midder Kyle

Snowbird_100129_6 from jimmyDean on Vimeo.


The difference a place can make

After over a month off from BJJ I decided to check out a new place that is a lot closer to me called ‘West Side Jiu-Jitsu’ owned and operated by Mark Johnson. I’d gone to see him at his previous location about a year ago but hadn’t stayed to watch a class. Mark seemed cool, and it looked like a good group of guys, so I decided to take the first time free class.

After about 45 min of drilling we the rolled for 15 and then called it good. I then hit an hour drill class afterward to work technique. Friendly group, all the guys I worked with were patient and had fun. Typical attributes of a good gym in my opinion.

But the real difference I saw was in how I felt after I left. Physically I felt like I’d had a good workout, a little sore is all. But emotionally I felt happy, and most importantly I had fun!

So what was the difference? My previous BJJ experience had top notch instructors and a dedicated group of helpful, passionate students. I got worked hard there and saw obvious improvement in my technique. But the kicker is I never felt really comfortable. And because of that, I didn’t feel safe. Being a student of the Law of Attraction I believe that it was because of this feeling that I was injured repeatedly. Fortunately I decided to follow my feelings, and now I’m in a place that I resonate with.


Snowboarding with Midder Kyle

Snowbird_100129_1 from jimmyDean on Vimeo.

Snowbird_100129_2 from jimmyDean on Vimeo.

Snowbird_100129_3 from jimmyDean on Vimeo.

Snowbird_100129_4 from jimmyDean on Vimeo.

Snowbird_100129_5 from jimmyDean on Vimeo.


GoToCellDialog via IDE

The Trolltech/Prentice Hall book C++ GUI Programming with Qt 4 2nd Edition is a great learners guide, but all the examples use the command line based qmake build tool. I like to do as much through an IDE as I can. So, I’ve decided to document what I’ve had to do differently in order to get the tutorials to work for me using only the IDE. My way may not be the most fluid. I’m learning C++ at the same time I’m learning how to use Qt.

I will not be going over every example, just the one’s where I felt I had a significant ah Ha moment and deviated significantly from the book. But if you find yourself stuck on something let me know and I’ll go over what I’ve done and see if there was any special tweaking needed.

I am using the free open source Windows version of Qt Creator 1.2.1 based on Qt 4.5.3 (32 bit) for learning.

You can download all the books examples at http://www.informit.com/store/product.aspx?isbn=0132354160 I will be only using the examples for Windows.

*Disclaimer: I am in no way authorized to speak for or represent Trolltech/Prentice Hall, Nokia, anyone or anything related to Qt. I’m just a computer geek who thinks that Qt totally rocks.

Okay, so this covers pages 23-29, and the extracted example files found in the chap02/gotocell2 folder :

From page 23: once Qt Creator is started instead of going through the books setup steps do the following-

-Go to File/New and when the dialog box pops up select the option Qt4 GUI Application under Projects and click OK.
-Name the project gotocelldialog and put it in a folder you’ll remember where it’s at, click next
-Make sure QtCore Module and QtGui Module are checked, then hit Next again
-On the Class Information step :
Class name: GoToCellDialog
Base class: QDialog (not QWidget)
Header, Source, and Form files should all be the same name as the Class name except all lower case. Make sure that the Generate form check box is checked and click Next
-Under the Project management dialog make sure that this isn’t going under another project (options should be grayed out) and click Finish

Page 24: now, double click the gotocelldialog.ui file and follow the instructions verbatim to create the GoToCellDialog through the IDE to page 26 where you will run the Form Preview to make sure it looks like the example.

The main.cpp, gotocelldialog.pro, .h, and .cpp files will already have been created.

Page 27: Open gotocelldialog.h . Everything is all set up except for the private slot ‘void on_lineEdit_textChanged(); ‘ declaration, so here is my code with the major change in BOLD-

#ifndef GOTOCELLDIALOG_H

#define GOTOCELLDIALOG_H

#include <QtGui/QDialog>

namespace Ui

{

class GoToCellDialog;

}

class GoToCellDialog : public QDialog

{

Q_OBJECT

public:

GoToCellDialog(QWidget *parent = 0);

~GoToCellDialog();

private:

Ui::GoToCellDialog *ui;

private slots:

void on_lineEdit_textChanged();

};

#endif // GOTOCELLDIALOG_H

—– Notice that in the book example we are not creating the Ui namspace but the IDE is.  The IDE is also creating the private *ui pointer. Important to notice.  Read on.

Page 28:

Open the implementation file gotocelldialog.cpp and add the following code shown in BOLD -

#include “gotocelldialog.h”

#include “ui_gotocelldialog.h”

GoToCellDialog::GoToCellDialog(QWidget *parent)

: QDialog(parent), ui(new Ui::GoToCellDialog)

{

ui->setupUi(this);

QRegExp regExp(“[A-Za-z][1-9][0-9]{0,2}”);

ui->lineEdit->setValidator(new QRegExpValidator(regExp, this));

}

GoToCellDialog::~GoToCellDialog()

{

delete ui;

}

void GoToCellDialog::on_lineEdit_textChanged()

{

ui->okButton->setEnabled(ui->lineEdit->hasAcceptableInput());

}

As you can see here, we need to use ui-> to access the GoToCellDialog objects and methods.

Now, what about the connects for the okButton and the cancelButton?  These can actually be setup in the IDE.  Open gotocelldialog.ui and look in the form editor for the ‘Signals and Slots editor’ tab next to the ‘Action Editor’ tab.  You will add the clicked() Signals and accept()/reject() Slots for the okButton and cancelButton as shown to be entered in the gotocelldialog.cpp .  Once you have created these and saved the changes, they can be found in the ui_gotocelldialog.h file.  Please note that you cannot make changes in the actual ui_gotocelldialog.h file because any changes will be removed when you recompile.

At this point you should be able to build and run the GoToCellDialog example and have it perform as discussed on page 29.

I hope this helps, please let me know if this is clear as mud.


Instructables: The EyeWriter

For only $50 you can make a solderless eye tracking setup.

Details and instruction can be found at Instructables.com


Misa Digital Guitar

The guitar has taken yet another evolutionary leap, this time into our digital age.


Instructables – Structured Light 3D Scanning

A very cool Instructable on how to do your own Structured Light 3D Scanning like Radio Head’s “House of Cards” video.

Point Clouds with Depth of Field from Kyle McDonald on Vimeo.


  • Categories

  • Copyright © 1996-2010 Blog o' the Jimmy. All rights reserved.
    iDream theme by Templates Next | Powered by WordPress