Skip to content

Instantly share code, notes, and snippets.

2015-02-01 16:52:56 ERROR Thread-41 :: cannot concatenate 'str' and 'exceptions.TypeError' objects
2015-02-01 16:52:56 DEBUG SEARCHQUEUE-BACKLOG-3506 :: [Sick Beard Index] :: 21924 more items to be fetched from provider. Fetching another 100 items.
2015-02-01 16:52:53 DEBUG SEARCHQUEUE-BACKLOG-3506 :: [Sick Beard Index] :: Search url: http://lolo.sickbeard.com/api?season=4&maxage=2000&cat=5030%2C5040&limit=100&attrs=rageid&offset=800&t=tvsearch
2015-02-01 16:52:53 DEBUG SEARCHQUEUE-BACKLOG-3506 :: [Sick Beard Index] :: 22024 more items to be fetched from provider. Fetching another 100 items.
2015-02-01 16:52:51 DEBUG SEARCHQUEUE-BACKLOG-3506 :: [Sick Beard Index] :: Search url: http://lolo.sickbeard.com/api?season=4&maxage=2000&cat=5030%2C5040&limit=100&attrs=rageid&offset=700&t=tvsearch
2015-02-01 16:52:50 DEBUG SEARCHQUEUE-BACKLOG-3506 :: [Sick Beard Index] :: 22124 more items to be fetched from provider. Fetching another 100 items.
2015-02-01 16:52:48 DEBUG SEARCHQUEUE-BACKLOG-3506 ::
2015-02-20 21:28:40 ERROR Thread-110 :: Failed doing webui callback: Traceback (most recent call last):
2015-02-20 21:28:40 DEBUG Thread-110 :: Is ep a priority download: False
2015-02-20 21:28:40 DEBUG Thread-110 :: Quality of the episode we're processing: 32768
2015-02-20 21:28:40 DEBUG Thread-110 :: Snatch history had a quality in it, using that: Unknown
2015-02-20 21:28:40 DEBUG Thread-110 :: Retrieving episode object for 4x22
2015-02-20 21:28:40 DEBUG Thread-110 :: Parse result(release_group): None
2015-02-20 21:28:40 DEBUG Thread-110 :: or Parse result(air_date): None
2015-02-20 21:28:40 DEBUG Thread-110 :: Parse result(episode_numbers): [22]
2015-02-20 21:28:40 DEBUG Thread-110 :: Parse result(season_number): 4
2015-02-20 21:28:40 DEBUG Thread-110 :: Parse result(series_name): The Big Bang Theory
2015-02-20 21:28:22 ERROR Thread-80 :: Failed doing webui callback: Traceback (most recent call last):
2015-02-20 21:28:22 DEBUG Thread-80 :: Is ep a priority download: False
2015-02-20 21:28:22 DEBUG Thread-80 :: Quality of the episode we're processing: 32768
2015-02-20 21:28:22 DEBUG Thread-80 :: Snatch history had a quality in it, using that: Unknown
2015-02-20 21:28:22 DEBUG Thread-80 :: Retrieving episode object for 4x15
2015-02-20 21:28:22 DEBUG Thread-80 :: Parse result(release_group): None
2015-02-20 21:28:22 DEBUG Thread-80 :: or Parse result(air_date): None
2015-02-20 21:28:22 DEBUG Thread-80 :: Parse result(episode_numbers): [15]
2015-02-20 21:28:22 DEBUG Thread-80 :: Parse result(season_number): 4
2015-02-20 21:28:22 DEBUG Thread-80 :: Parse result(series_name): The Big Bang Theory
2015-05-12 21:15:42 ERROR SEARCHQUEUE-BACKLOG-7884 :: Check scene exceptions update failed. Unable to get URL: https://raw.githubusercontent.com/SiCKRAGETV/sr_tvrage_scene_exceptions/master/exceptions.txt
AttributeError: '_socketobject' object has no attribute 'set_tlsext_host_name'
cnx.set_tlsext_host_name(server_hostname)
File "/share/MD0_DATA/.qpkg/SickBeard-TVRage/SickBeard-TVRage/lib/requests/packages/urllib3/contrib/pyopenssl.py", line 296, in ssl_wrap_socket
ssl_version=resolved_ssl_version)
File "/share/MD0_DATA/.qpkg/SickBeard-TVRage/SickBeard-TVRage/lib/requests/packages/urllib3/connection.py", line 238, in connect
conn.connect()
File "/share/MD0_DATA/.qpkg/SickBeard-TVRage/SickBeard-TVRage/lib/requests/packages/urllib3/connectionpool.py", line 740, in _validate_conn
self._validate_conn(conn)
using Core.Attributes;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http;
using System.Reflection;
using System.Web;
using System.Web.Http;
using System.Web.Http.Controllers;
using System.Web.Http.Dispatcher;
using Core.ACOFI.Api;
using Core.Api;
using log4net;
using Newtonsoft.Json;
using System.Threading;
using System.Threading.Tasks;
using System.Web.Http;
using System.Web.Http.Cors;
using System.Web.Http.Dispatcher;
using System.Web.Http.ExceptionHandling;
scraper = {
delay: 100,
lastRowShown: 0,
lastRowInSet: 0,
results: [],
complete: false,
prev: 1,
run: function()
{
console.log("Initialising");
@TehWardy
TehWardy / Sample.cs
Created February 12, 2019 18:34
Reflection Based Assembly Loading
/// <summary>
/// Dynamically construct known t's from the assemblies available.
/// </summary>
public static T[] GetInstancesOf<T>()
{
var tType = typeof(T);
var types = GetStackAssemblies()
.SelectMany(a => a.GetTypes())
.Where(t => tType.IsAssignableFrom(t) && tType != t && t.IsClass && !t.IsAbstract)
May 7 14:31:16
pppd[466]: No response to 10 echo-requests
pppd[466]: Serial link appears to be disconnected.
pppd[466]: Connect time 10926.0 minutes.
pppd[466]: Sent 3946826376 bytes, received 1815556059 bytes.
dnsmasq[348]: read /etc/hosts - 5 addresses
dnsmasq[348]: using nameserver 1.0.0.1#53
dnsmasq[348]: using nameserver 1.1.1.1#53
May 7 14:31:19
WAN Connection: Fail to connect with some issues.
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
namespace Test_App
{
public class GenericLineItem
{
public string Type { get; set; }