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
| 1. Generating CSR: https://support.comodo.com/index.php?/Knowledgebase/Article/View/628/19/csr-generation-microsoft-iis-7x | |
| 2. Completing CSR: https://ssl.comodo.com/support/certificate-installation-microsoft-iis-7x---8x.php | |
| 3. Exporting Certificate: https://www.digicert.com/ssl-support/pfx-import-export-iis-8.htm | |
| 3.1 Select Export on IIS: https://technet.microsoft.com/en-us/library/cc731386%28v=ws.10%29.aspx?f=255&MSPPError=-2147217396 |
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
| Setting the upstream for a fork | |
| Fetch from upstream: git fetch upstream | |
| If upstream is not set check the folowing. | |
| Checking remote: git remote -v | |
| Setup upstream: git remote add upstream https://github.com/fullcalendar/fullcalendar.git |
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
| INSERT INTO [dbo].[tblOperationItem] ([Order], [ItemType], [Group], [OperationId], [ItemId]) | |
| SELECT TOP (12) [Order] = ROW_NUMBER() OVER (ORDER BY [object_id]), 0, 1, @@IDENTITY, i.ItemId | |
| FROM sys.all_objects, [dbo].[tblItem] i | |
| WHERE i.[ItemCode] = '825' | |
| ORDER BY [Order]; |
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
| To force Windows to use a specific network connection, assign a metric value to each one, giving the lowest value to the desired connection: | |
| Open the Network Connections folder (Start > Run > ncpa.cpl) | |
| Right click the desired connection. | |
| Click Properties > Internet Protocol Version 4. | |
| Click Properties > Advanced. | |
| Un-check "Automatic metric". | |
| Enter a number between 1 and 9999 for the "Interface metric"." | |
| Manually set LAN to a larger integer than the wireless | |
| Ex: LAN [interface Metric: 3 ], wireless [interface Metric: 2 ] |
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
| <!-- General Settings --> | |
| <advancedsettings> | |
| <loglevel hide="true">-1</loglevel> <!-- Comment: Disables logging --> | |
| <playcountminimumpercent>95</playcountminimumpercent> | |
| <skiploopfilter>0</skiploopfilter> <!-- Comment: For RPi or similar use 16 or higher (low CPU usage) --> | |
| <nodvdrom>true</nodvdrom> | |
| <!-- MySQL Library --> | |
| <videodatabase> | |
| <type>mysql</type> |