I'm a guitaraholic on the road to recovery. Just kidding. I'm on the road to buy another guitar. I'm also most likely looking for another pedal, cord, speaker, amp, pick, strap, case, rack mount gear, lighting and maybe even some recording or production software.
I did it!
Get link
Facebook
X
Pinterest
Email
Other Apps
After weeks and weeks of use, and a reboot this morning even, I finally did it. Yay Me!
I've seen requests for this type of file on a few forums. Well, I just happen to have a pretty large list of those cities and states at my disposal, so I'm posting it on HTMLMonitor.com for anyone to download. If you want any more data to go with it, just let me know. Otherwise, enjoy. US City and State CSV File
So I was coding a form in Yii, and came across a situation where I had a value of 0111110 (no, yes, yes, yes, yes, yes, no) that I needed to pre-populate values in a multiple select drop down. This didn't seem like it should be that hard, but the Yii documentation lacked a bit there. The first step was to split out the string. $optionValues = str_split($model->variable); Now, we create a blank array to hold our options. $options = array(); Then, we go through those options and set selected on the ones that need selected. foreach ($optionValues as $optionKey=>$optionVal) { if ($optionVal) { $options[$optionKey] = array('selected' => 'selected'); } } Now, we render the drop down list. echo $form->dropDownList($model, 'variable', array('0' => 'Zero', '1' => 'One','2'=>'Two','3' => 'Three', '4' => 'Four', '5' =...
Since I've been doing some recording, I thought it was time to show off my DAW setup. I have a Dell laptop as the heart of the system. It's got a hybrid drive (part solid state, part "traditional" magnetic drive) that seems to keep up quite well with most of what I do. For software, I typically use Reaper . I also have a Behringer headphone amp between the laptop and the mouse for when I have someone over that's doing their part since it works as a nice headphone splitter with individual volume controls. But the laptop itself doesn't really do all that much when it comes to recording. I have a Presonus Studio Channel in the top rack slot, an Alesis SampleRack for triggered drums, a Tascam US16x08 audio board for 16 channels in at a time, a Behringer UltraVoice vocal pre-amp, a Nady 8 channel mic pre, a power conditioner and my Line 6 Pod Pro. Most of the time, all I really need is my Tascam to get the recordings sounding pretty good. Couple that...
Comments