31 July 2022
30 July 2022
Scraping Photos and Descriptions from an Instagram account using Python
Scraping Photos and Descriptions from an Instagram account using Python
15 July 2022
How to measure Internet speed on Ubuntu?
Using
pip install --user speedtest-cli
gets you a version that is probably newer than the one available from your distribution's repositories.
10 July 2022
How to limit width of table to within screen width with html and css?
How to limit width of a wide table to within screen width with html and css?
Solution: Do the following 2 things
1. <table style='table-layout: fixed'>
2. Set width for every columns in the first row (you can leave the last column, or any one column of all)
<thead>
<tr>
<th style='width: 5%; >blah...</th>
<th style='width: 10%; >blah...</th>
<th style='width: 25%; >blah...</th>
<th style='width: 25%; >blah...</th>
<th>blah...</th>
</tr>
</thead>
That is all.
05 July 2022
How to give author, editor, viewer permissions to room calendars?
On exchange server 2010, Exchange Management Console, mailbox > 'new mailbox' > 'room mailbox' > 'new user'
On active directory, you will see the new room mailbox, disabled. Enable it. Create a password.
On EMC, 'distribution group' > 'new distribution group', create groups to be given (author, edit, review) permission to the new room mailbox.
Add users to each distribution group.
Log on any computer with the new room user. Open MS Outlook > new room mailbox calendar, grant each group permission to the new room mailbox calendar. (After a user is migrated to Office 365, we then can not add remote user to room calendars)
03 July 2022
Subscribe to:
Posts (Atom)