Log message #4170493

# At Username Text
# Oct 6th 2018, 03:41 vipul.onus Yo WeekEnd :aussieparrot::rightshark::middleparrot:
# Oct 5th 2018, 22:32 f8lRC apparently pretty similar to coax, but about 90 ohm impedence instead of 75.
# Oct 5th 2018, 22:32 f8lRC it doesn't get the resolution right at all
# Oct 5th 2018, 22:32 f8lRC pitti: let's keep the standup in stefw's channel today. I've asked him to update the event, but he's on PTO
# Oct 5th 2018, 22:32 f8lRC if your computer can do any modern CUDA work, it should also be able to run a VM with no issues
# Oct 5th 2018, 22:32 f8lRC https://paste.linux.community/view/1f420a21
# Oct 5th 2018, 22:32 f8lRC crankharder: https://elliotekj.com/2016/11/22/setup-ctrlp-to-use-ripgrep-in-vim/
# Oct 5th 2018, 21:04 GloriousYellow_ there is also info test, which isn't cool.
# Oct 5th 2018, 21:04 GloriousYellow_ My undergrad differential geometry course talked about those subjects, but it did seem to be what others considered grad-level material
# Oct 5th 2018, 21:04 GloriousYellow_ 104F out here
# Oct 5th 2018, 21:04 GloriousYellow_ you need 'fi' to terminate the block, yes
# Oct 5th 2018, 21:03 GloriousYellow_ ayecee: log data of some sensors.
# Oct 5th 2018, 21:03 GloriousYellow_ ohh nice, let me try
# Oct 5th 2018, 20:40 dereuromark darn, 0.10 of phinx might solve the "Specified key was too long; max key length is ..." constraint unique issue.. but migrations plugin is still stuck on 0.8
# Oct 5th 2018, 19:50 itmpls user_groups._ids is the fieldname, ->save($entity, ['associated' => 'SiteUsers.UserGroups']); and $this->belongsToMany('UserGroups', ['className' => 'SiteUsers.UserGroups', 'joinTable' => 'user_groups_users', 'foreignKey' => 'user_id', 'className' => 'SiteUsers.UserGroups']);
# Oct 5th 2018, 19:48 itmpls updated associations and field name too
# Oct 5th 2018, 19:48 itmpls well, renamed the classes to have no prefix and same thing. hmm
# Oct 5th 2018, 19:42 itmpls yeah i suppose i just wanted to differentiate it but i'll try messing around with it
# Oct 5th 2018, 19:41 btx you’re in a plugin, right? so everything is already prefixed with the plugin name
# Oct 5th 2018, 19:41 itmpls it's within the SiteUser plugin, which overrides the Users plugin from cake/dc
# Oct 5th 2018, 19:41 btx is there a reason you’re prefixing everything?
# Oct 5th 2018, 19:40 btx Cake is gonna be looking for `site_user_group_id` so you’ll have to correct your primary/foreign keys on your Join and Tables
# Oct 5th 2018, 19:39 itmpls class name is SiteUserGroupsTable, SiteUsersTable, SiteUserGroupsUsersTable
# Oct 5th 2018, 19:38 itmpls user_id and user_group_id, sorry
# Oct 5th 2018, 19:27 btx what are the columns in the join table? `user_id` and `site_user_group_id` or `user_group_id`
# Oct 5th 2018, 19:25 btx Cake doesn’t care what the db is named, as long as the class names work it can automagic the files/classes to load
# Oct 5th 2018, 19:24 btx is that on `UsersTable`?
# Oct 5th 2018, 19:23 itmpls hah
# Oct 5th 2018, 19:23 itmpls but the className again is SiteUserGroupsUsers not UserGroupsUsers
# Oct 5th 2018, 19:23 itmpls for example
# Oct 5th 2018, 19:23 itmpls currently i have $this->belongsToMany('SiteUserGroups', ['className' => 'SiteUsers.SiteUserGroups', 'foreignKey' => 'user_id', 'joinTable' => 'user_groups_users']);
# Oct 5th 2018, 19:22 itmpls I do a setTable override
# Oct 5th 2018, 19:22 itmpls no
# Oct 5th 2018, 19:22 btx is it prefixed in the database?
# Oct 5th 2018, 19:22 itmpls prefixed by Site
# Oct 5th 2018, 19:22 itmpls if the table is 'user_groups_user' but the class name is say, 'SiteUserGroupsUsers'
# Oct 5th 2018, 19:21 itmpls also, if the class name for my join table was prefixed, would I have to set that in the belongsToMany association?
# Oct 5th 2018, 19:14 btx (plural on second `user`)
# Oct 5th 2018, 19:14 itmpls yeah that makes sense
# Oct 5th 2018, 19:14 btx the join table should be `user_groups_users` I think tho
# Oct 5th 2018, 19:14 btx should be UserGroups first because G < S