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' =...
Music has always been a significant part of my life, but it wasn't until recently that I discovered the true magic of collaboration. Most of my musical journey has led me to this greatest chapter yet: a duo with the love of my life. The excitement I feel about writing songs with her in a duo setting, where all my creative input can be fully utilized, is unparalleled. No longer held back by the constraints of working with others, I am ready to dive into a world of limitless possibilities. Unleashing Creative Potential In the past, I have had the pleasure of working with various individuals, each bringing their unique talents to the table. However, there were times when my creative ideas were overshadowed or compromised. Now, in this duo setting, I have the freedom to explore my musical instincts fully. Every lyric, every melody, and every musical idea can be expressed without inhibition. A Perfect Symbiosis What makes this duo truly special is the synergy between us. While I focus o...
Comments