- Download docker-compose.yml to dir named
sentry - Change
SENTRY_SECRET_KEYto random 32 char string - Run
docker-compose up -d - Run
docker-compose exec sentry sentry upgradeto setup database and create admin user - (Optional) Run
docker-compose exec sentry pip install sentry-slackif you want slack plugin, it can be done later - Run
docker-compose restart sentry - Sentry is now running on public port
9000
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
| $installPath ="$env:TEMP\appget.exe" | |
| Write-Output "Downloading AppGet installer to $installPath" | |
| $WebClient = New-Object System.Net.WebClient | |
| $WebClient.DownloadFile("https://appget.net/download","$installPath"); | |
| $proc = Start-Process -Wait -FilePath $installPath -ArgumentList "/SILENT /NOCANCEL /SUPPRESSMSGBOXES /NORESTART /CLOSEAPPLICATIONS /FORCECLOSEAPPLICATIONS /NORESTARTAPPLICATIONS /RESTARTEXITCODE=3010" |
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
| C:\>appget search node | |
| Found 148 package(s) | |
| | ID | Name | Version | Tag | | |
| |-----------------------------|-------------------------------|-----------|---------| | |
| | node | Node.js | 11.8.0.0 | 11.8.0 | | |
| | node | Node.js | 11.7.0.0 | 11.7.0 | | |
| | node | Node.js | 11.6.0.0 | 11.6.0 | | |
| | node | Node.js | 11.5.0.0 | 11.5.0 | | |
| | node | Node.js | 11.4.0.0 | 11.4.0 | |
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
| Set updateSession = CreateObject("Microsoft.Update.Session") | |
| updateSession.ClientApplicationID = "MSDN Sample Script" | |
| Set updateSearcher = updateSession.CreateUpdateSearcher() | |
| WScript.Echo "Searching for updates..." & vbCRLF | |
| Set searchResult = _ | |
| updateSearcher.Search("IsInstalled=0 and Type='Software' and IsHidden=0") |
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
| var _ = require('underscore'); | |
| var Backbone = require('backbone'); | |
| var PageableCollection = require('backbone.pageable'); | |
| var SeriesModel = require('./SeriesModel'); | |
| var ApiData = require('../Shared/ApiData'); | |
| var AsFilteredCollection = require('../Mixins/AsFilteredCollection'); | |
| var AsSortedCollection = require('../Mixins/AsSortedCollection'); | |
| var AsPersistedStateCollection = require('../Mixins/AsPersistedStateCollection'); | |
| var moment = require('moment'); |
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
| <dl class="monitor-tooltip-contents"> | |
| <dt>All</dt> | |
| <dd>Monitor all episodes except specials</dd> | |
| <dt>Future</dt> | |
| <dd>Monitor episodes that have not aired yet</dd> | |
| <dt>Missing</dt> | |
| <dd>Monitor episodes that do not have files or have not aired yet</dd> | |
| <dt>Existing</dt> | |
| <dd>Monitor episodes that have files or have not aired yet</dd> | |
| <dt>First Season</dt> |
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
| apt-get remove --purge libreoffice* -y | |
| apt-get remove --purge thunderbird* -y | |
| apt-get remove --purge rhythmbox* -y | |
| apt-get remove --purge unity-lens-music -y | |
| apt-get remove --purge unity-lens-photo -y | |
| apt-get remove --purge unity-lens-video -y | |
| #apt-get remove --purge unity-scope-* -y | |
| #apt-get install unity-scope-calculator -y |
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
| Getting: 70327 | |
| Passed 00:00:07.9702035 | |
| ============================================================== | |
| Getting: 70328 | |
| Passed 00:00:10.0516132 | |
| ============================================================== | |
| Getting: 70329 | |
| Passed 00:00:00.6442383 | |
| ============================================================== | |
| Getting: 70336 |
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
| libmono-system-web4.0-cil | |
| libmono-microsoft-csharp4.0-cil | |
| libmono-system-serviceprocess4.0-cil | |
| libmono-system-servicemodel-discovery4.0-cil |
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
| public class JsonRpcResponse<T> | |
| { | |
| public string Id {get;set;} | |
| public T Result {get;set;} | |
| public JsonRpError Error {get;set;} | |
| } |
NewerOlder