This file contains hidden or 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
#### start times for bookings by members named 'David Farrell' | |
select bks.starttime | |
from | |
cd.bookings bks | |
inner join cd.members mems | |
on mems.memid = bks.memid | |
where | |
mems.firstname='David' | |
and mems.surname='Farrell'; |
This file contains hidden or 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
Regular login - no facebook | |
Meeting for assets | |
Account creation page | |
Device location | |
Create profile page | |
Dropdown boxes (react-native, marterial) | |
Company list | |
Search / filter | |
-- skills information | |
-- search bar |
This file contains hidden or 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
CRITICAL GIT FLOW PROTOCOL | |
#### Creating individual branch for each feature #### | |
pick issue make a branch for it - | |
naming convention: | |
[firstname]-feature-[feature-name] | |
ie: sean-feature-schema | |
## CREATE NEW BRANCH |
This file contains hidden or 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
if( function_exists('acf_add_local_field_group') ): | |
acf_add_local_field_group(array( | |
'key' => 'group_5ae2508670f5b', | |
'title' => 'Test Field', | |
'fields' => array( | |
array( | |
'key' => 'field_5ae2511a7ca5a', | |
'label' => 'Sean Test', | |
'name' => 'sean_test', |
OlderNewer