While it seems like a bad idea to try and post a full length post from your iPhone or iPod, I think using it to post shorter side posts might be whre this application shines.
While it seems like a bad idea to try and post a full length post from your iPhone or iPod, I think using it to post shorter side posts might be whre this application shines.
It’s that time of year again! The snap is in the air, the leaves are changing, and it’s time once again to make apple cider. For the past 3 years we’ve gotten together with my wife’s family to participate in making as much apple cider as we can with as many apples as we can get. It’s an all day event, which usually last into the dark of the evening. This year was no exception.
It’s no secret – well if you’ve been listening to me for the past few days, that I’ve been upset with GoDaddy’s free web hosting. I have a side project for a client, and it needed an admin back end done – something to edit the pages, nothing crazy or too difficult and since I love JQuery, I add in some eye candy because it makes it easier to use.
Well as I’m cruising along, certain things that I’m use to doing a certain way just aren’t working. I narrowed down what I thought the problem was and it points right to the stupid ad banner that GoDaddy uses – well more to the point the mechanism they employ to add it to the pages.
It goes as far as attaching to an AJAX request reponse. So when you send your request and you get back a nice little JSON object back, it has some iframe crap stuck to the end of it. It really through me for a loop for awhile. Luckily Scott (and old coworker and friend of mine) got me pointed in the right direction.
When I got married, my wife brought along some recipes. One of those was for a dish called Swiss Cheese Chicken. It really was just a good, simple dish – and I love it. Last night was one of those nights that I actually had some time to cook dinner – I love cooking, no doubt about it, I do love it.
In fact I remember one time, I had just started dating this girl – but she had been asked out to some school dance before we started going out. No biggie, but here’s the catch. She asked if I would cook them dinner – I said “Sure!”, because I love cooking. At any rate, as I digress here…
So moving on to the actual dish. The prep time varies because if you have frozen pork chops then they’ll take awhile to defrost – I don’t like to use the microwave to defrost, because it can cook edges and turn out gross, I like to let them sit on the counter or if I’m pressed for time use hot water to thaw.
In one of my projects, I thought it would be cool to have a drop down select box trigger a slide down for the results, then slide up and slide back down when a new choice was selected. Seemed pretty easy, but when I got into it, it wasn’t as easy as I thought at first. But in all reality it turned out to be super easy.
I did some digging around to figure out how to tell if my div container (the one that would hold all the results) was visible or not, maybe I should just read the entire JQuery documentation – HA! Instead I turned to google and found that you can check for :hidden.
$("#div-id").is(":hidden");
So I can base my logic on that, if it’s hidden do this or if it’s not do this…
That was perfect, now it was just a matter of having it do exactly what I wanted. So if the div wasn’t hidden, I needed to hide then show it again with the new results. Or if it was hidden, show the results. Continue Reading »
So it’s Saturday night, and I’m feeling alright. But I’m bored, and I’ve been kind of coped up too long in the house. Then came the critical question “What should we have for dinner?”. I hate that question, because it’s generally at the point where I’m hungry and ready to just call it and go somewhere for food that makes me and the family ill or that we could make for a whole lot cheaper (yes, I’m pretty addicted to going out to eat, even with all it’s pit falls and side effects).
My wife suggested Lasagna – and I do love it, but it takes so long and I didn’t think we had all the ingredients for a yummy batch, but really when has having the right ingredients ever stopped me? So here we go, the relatively quick and easy lasagna…
I started with what I had for noodles, turns out we had a box of over ready noodles – that means no boiling. I used 9 noodles for 3 layers and started by laying down 3 on the bottom of a 13×9. This brings up an issue (and it goes right along with hot dogs and buns – you know, too many hotdogs, not enough buns so you end up buying more buns when you don’t need them, Why can’t they make a normalized noodle size? Too short for a 13×9 but too big for a 9×9, what gives!!!)
Not long ago we bought a new (to us) vehicle to replace an aged commuter. We decided on a lower mileage 2003 Honda Pilot. Not long after I was coming back to work and once I put the car in park noticed that the idle was surging. It would rise and then lower over and over. I was less then thrilled, but I turned to my trusty friend the internet to a site I had recently joined – Piloteers.org. I went about searching for what might be the problem, and wouldn’t you know it there was a post from some time ago talking about it.
I made a quick request of exactly how to do it and got a good response, enough so that I performed the maintenance and got it all squared away. The steps are easy, and I think even for a mechanical novice. You’ll need a few tools and spray, but I think most people will have the tools already, the Throttle Body cleaner they may need to go get.
I’m the middle of building a new company website, something that will bring them into the 21st century. With that thought in mind, I need to develop a back end for employees to log in and update their own information. This is of course centered around their log in credentials.
So in the their “dashboard” they can update their password. But if they are like me, sometimes they type faster then they realize and might have hit different keys by mistake, so I thought I would give them the ability to show their password in readable characters if they wanted to. This allows them to check over what they have typed and verify they have what they want. I think it’s easier then using a double password field that just takes more time to fill in – but that’s just me.