Tramaine Darby

Tramaine Darby

Raleigh NC 27675
Tramaine Darby
917-300-9122 tramainedarby@gmail.com

Blog

Learning (or Refreshing) PHP

February 19, 2015 | PHP | by tdarby

Found an awesome video that was a great core PHP language refresher.   The guy that made it has a ton of awesome videos on his channel.  Moves really fast, so I don’t recommend it to someone learning from scratch, but it was great for me to go over some things I’ve either forgotten, of […]

The Gold Rush is on!

February 18, 2015 | Sigma Gamma Rho | by tdarby

My reactivation with Beta Lambda Sigma chapter has been official for a while, but now it’s really official. The Gold Rush campaign is in full swing! Follow the Capital City Sorors of Sigma Gamma Rho on Facebook

PHP Anonymous functions

February 18, 2015 | PHP | by tdarby

Learned something new today! In php you can create an anonymous function  that will just execute inline: <?php $greetings = function($name) { printf(“Wassup %s\r\n”, $name); }; These function will  make the functionality cleaner when used as callbacks or simple variable assignment.  It creates a closure, so the variables will not bleed out.  If you want to inherit […]

Hello world!

November 17, 2014 | PHP | by tdarby

<?php echo “Hello World!” ?>