Tuesday 29 January 2019

Closing a board in trello

Close a board by selecting "Close Board" from the board menu (open the  board's menu and click the "More" button to expand the menu options). You have to be an admin of a board to close it. In Business Class teams, the team admin can also close the board.


Other board members will receive a notification that the board has been closed.


to reactivate: Once a board is closed, it is no longer visible in your Boards list and can only be accessed by clicking the Boards button at the top left of your Trello page and selecting "See closed boards..."  


source: https://help.trello.com/article/777-closing-a-board

Sunday 27 January 2019

Increase number of recent files in task bar

Click your Start Button, type regedit and hit Enter to open the Registry Editor 

Navigate to: 
HKEY_CURRENT_USER\Software\Microsoft\ Windows\CurrentVersion\Explorer\Advanced 

On the right-side, look for an entry named JumpListItems_Maximum. 

If there is no such entry, you need to create one by right-clicking on the empty area, clicking New, clicking DWORD (32-bit) Value, and name it as JumpListItems_Maximum 

Double click that DWORD and set its value to 20 or 30 

Close the Registry Editor and restart your system


source: https://answers.microsoft.com/en-us/windows/forum/all/how-to-increase-the-number-of-recent-files/2ec5e80a-c8f1-4e25-bd5e-4c98169a520e

Sunday 20 January 2019

Getting grayscale image from optitrack camera


Yes, all OptiTrack cameras have the capability of transmitting the entire grayscale frame to the host PC. Motive or the Camera SDK provides the ability to select the video mode and access the data. Furthermore, MJPEG grayscale video is also supported for transmitting downsampled images in order to reduce network traffic.
source: https://optitrack.com/support/faq/general.html

note: helps with identifying false positives for the IR markers.

Thursday 17 January 2019

Fixing mouse click

Adjusting Mouse Click Sensitivity

  1. Display the Control Panel.
  2. Click the Hardware and Sound category.
  3. Click the Mouse link, under the Devices and Printers category. Windows displays the Mouse Properties dialog box.
  4. Make sure the Pointer Options tab is displayed. (See Figure 1.)
  5. Figure 1. The Pointer Options tab of the Mouse Properties dialog box.
You may need to play around with the settings in the dialog box a bit; the major thing to check is your pointer speed. There have been reports that if the speed is set too slow or too fast for your mouse, it can result in some erratic behavior—like that reported by Donna.

source: https://windows.tips.net/T013387_Adjusting_Mouse_Click_Sensitivity.html




  1. Open the Control Panel.
  2. Click Hardware and Sound
  3. Click Mouse
  4. In the Mouse Properties click the Activities tab and drag the slider left to slow down the mouse double-click speed or right to speed up the mouse double-click speed.
Mouse double-click speed

source: https://www.computerhope.com/issues/ch000816.htm

Tuesday 15 January 2019

google groups - making emails accessible to managers in addition to owners


It appears that there were restrictions set (perhaps accidentally) so that only the owner of the group can view e-mail addresses.

As a manager of the group, could you try fixing this by:
  • After entering "Manage" in the main group page, scroll down to "Permissions".
  • Expand the "Permissions" tree, and then select "Access permissions". 
  • Within this webpage, should be a section named "View Member Email Addresses"
  • Activate the "Select groups of users" button, and select "Managers of the group"
  • Activate the "Save" button to save your changes

source: https://groups.google.com/forum/#!topic/accessible/B38WfM8Cy8c

Monday 14 January 2019

error with package installation due to Environment error

Problem:

Could not install packages due to an Environment error :[error 13]: permission denied 

Solution:
pip install --user package-name

source: https://stackoverflow.com/questions/50807507/could-not-install-packages-due-to-an-environment-error-error-13-permission-d

Clearing out Synaptic lock files

Problem:
E: Could not get lock /var/lib/dpkg/lock - open (11 Resource temporarily unavailable)
E: Unable to lock the administration directory (/var/lib/dpkg/) is another process using it?  

You can delete the lock file with the following command:
sudo rm /var/lib/apt/lists/lock
You may also need to delete the lock file in the cache directory
sudo rm /var/cache/apt/archives/lock
sudo rm /var/lib/dpkg/lock
After that, try opening Synaptic again.

source: https://askubuntu.com/questions/15433/unable-to-lock-the-administration-directory-var-lib-dpkg-is-another-process