- Anything from Ryan Singer of Basecamp I would highly recommend. He talks about understanding an interface as a "job to be done", a paradigm I've found most helpful. He also has an excellent talk on designing with forces, a way of thinking about a solution as the result of all the forces in play in a problem scope.
- Whitney Hess, a UI/UX consultant has some GREAT material on understanding the necessity of empathy in design and design as problem solving.
- There's a great little book to spark your thinking on problem solving in design called "Are your lights on" - Pretty entertaining too :)
- Tools to discover more about your
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://www.dropbox.com/scl/fo/ozxfvlz69y6xiu3t29sj5/AEuRXENqrv4Nl2-2xKeR6Mo?rlkey=402k5n185be1dxhxat1rswmo2&st=bn8n51bj&dl=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> 1% | |
last 2 versions | |
not ie <= 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace [YOUR NAMESPACE HERE]; | |
use Illuminate\Database\Eloquent\Model; | |
use Log; | |
use DB; | |
class MysqlBuilder { | |
protected $table; | |
protected $pdoPlaceholderLimit; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace tbb\Auth; | |
use Illuminate\Contracts\Auth\UserProvider; | |
use Illuminate\Contracts\Hashing\Hasher as HasherContract; | |
use Illuminate\Contracts\Auth\Authenticatable as UserContract; | |
class CustomUserProvider implements UserProvider { | |
protected $model; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$valueCollection = [ | |
['ABC - UNDERGRADUATE',"2015ABC",'COMM','COMM 2130','01','11620435234','20','0','2015/08/31 - 2015/12/17','0','1'], | |
['ABC - UNDERGRADUATE','2015ABC','COMM','COMM 21301','02','11620422234','20','0','2015/08/31 - 2015/12/17','0','1'] | |
]; | |
insertOrUpdate($valueCollection); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "person.rb" | |
person = Person.new({firstname: 'john', lastname: 'doe'}) | |
puts person.firstname # john | |
puts person.lastname # doe | |
# in php it would be person->getFullname(); | |
puts person.fullname # Mr. john doe | |
# in php its person->setFullname(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Injectable | |
def can_you_see_me? | |
puts "SEEN!" | |
end | |
end | |
class Person | |
attr_accessor :seer | |
def initialize(seer) | |
@seer = seer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Date{ | |
public $date; | |
public $timestamp; | |
private $format = "Y-m-d"; | |
public function __construct($dateString) | |
{ | |
$this->_setAttrForTimestamp( strtotime($dateString) ); | |
} |