WWW posts page 25

PHP ‘break’ argument

I’m not sure if I ever knew this before, but the PHP break statement has an optional argument that declares how many levels to break out of, eg break 2. For instance, in the following example, the break will break out of both loops when the sub-item is found:

$theSubItem = null;
foreach(getItems() as $item){
    foreach($item->getSubItems() as $subItem){
        if($subItem->isTheSubItem()){
            $theSubItem = $subItem;
            break 2;
        }
    }
}
var_dump($theSubItem);

ensuring that we won’t loop through any extra items or sub-items.


Figuring things out with this phonegap stuff. I will have to post some of what I’ve learned when I have more time. We’re just about to the point that we can submit the app and then make the rest of the changes we have left client side. I’ve never done the submission process. It looks a bit confusing with signing things with certificates / keys and using the clients’ developer accounts. Hopefully it won’t prove too difficult. I remember it taking a while for the iOS store at least and know we had some problems with rejections where we had to resubmit several times. Hopefully we don’t run into that now, especially since we’re on tight deadlines as is.


GiveCamp 2016 done

GiveCamp 2016 is over. Another successful year. The new Cleveland Garlic Festival site is live. I didn’t do much on the site the final day besides for fix some URLs and move some files to help with the launch. I did break away to help another team fix some issues with image sliders on the homepage. Not just any team, but one doing some updates to the Cleveland GiveCamp website. I don’t believe those changes are live yet though. During this, I got to work a little while with my cousin’s friend Dara for the first time.

As usual this year, I recognized a number of people from previous years. My project manager was a project manager from a couple years ago. I talked to several of the people I’ve worked with in the past and have seen multiple years. There is definitely a networking aspect to the event. Some of the people I see at meetups and other events.

Continue reading post "GiveCamp 2016 done"

GiveCamp 2016 day 2

Day 2 of GiveCamp is complete. My team is in quite good shape. We shed one member early on. I too left to be re-purposed, but that didn’t last long. I briefly helped one team determine that, after my attempt to help them hack a plugin, it was time to jump ship to another. They didn’t need my further assistance, and the organizers couldn’t find another place for me, so I went back to my original team. Another of our members went home early. Even at a relaxed pace and searching for things to do, we were able to complete their nice-to-haves and improve some things from their quick-setup state. Tomorrow should be easy.

The event of the day more present on my mind at the moment is that my tent pole broke. When I first lay down in it, I saw the pole going at a weird angle. I got out and pulled the fly partly off to find the pole split and rather sharp. The tent was standing alright, but, not wanting the pole to poke through the fly, I attempted to fix it. I spent like an hour between working on and thinking of a field repair. In the end, nothing really got the broken pieces to stay together when the pole was arched. Now I lay in a slightly tilted, wonky tent, tired My tent is a Eureka Midori, and this is the second Eureka I’ve had the pole break on. Neither had I used very many times, maybe a handful each. Disappointing.


Givecamp 2016 day 1

First day of GiveCamp 2016. Working on the Cleveland Garlic Festival website. Seems like it’s going to be another relatively easy one, as I think the last few have been. We are rebuilding the site to run on WordPress and be responsive, plus other general improvements as we go. I’m on a team of four plus one organization representative. Things are going smoothly.


Library of Babel

Awesome, there is a digital version of the Library of Babel. Everything that you could ever write is in there, with some caveats. Caveats are that:

  • each book is less than or equal to 1,312,000 characters
  • it is in the English alphabet
  • all characters are lowercased
  • all non-alphabet characters removed except the space, period, and comma

Any searches would have to be translated to those specifications.

I found this through Jeremy Keith’s discussion of the anchor / link element.

The writings of Charles Dickens, Adactio, and myself can be found in there, many times over.