Skip to content

Instantly share code, notes, and snippets.

View kekonn's full-sized avatar
🏠
Working from home

kekkon kekonn

🏠
Working from home
View GitHub Profile
resolving dependencies...
looking for conflicting packages...
Packages (1) linux-zen-5.3.zen1-1
Total Installed Size: 82.74 MiB
Net Upgrade Size: 0.00 MiB
checking keyring...
checking package integrity...
@kekonn
kekonn / update_tv_version.patch
Created August 7, 2018 19:17
Teamviewer 11 version patch
diff --git a/PKGBUILD b/PKGBUILD
index 64fb32e..d6cb8fe 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,7 +1,7 @@
# Maintainer: Alex Taber & liberodark
pkgname=teamviewer11
-pkgver=11.0.67687
+pkgver=11.0.93329
@kekonn
kekonn / Bindings.xml
Created September 9, 2017 12:20
Wooting One Profile for Ubisoft's The Crew
<ActionConfig VERSION="1">
<ActionList Name="DrivingBindings" State="OFF">
<Action Name="Brake" IsAnalog="1" RateUp="1000" RateDown="1000">
<ActionRef Name="Brake" />
</Action>
<Action Name="Throttle" IsAnalog="1" RateUp="1000" RateDown="1000">
<ActionRef Name="Throttle" />
</Action>
<Action Name="SteerLeft" IsAnalog="1" RateUp="1000" RateDown="1000">
<ActionRef Name="SteerLeft" />
@kekonn
kekonn / sonarr.debug.txt
Created March 18, 2016 10:13
Sonarr logs
16-3-12 20:38:08.7|Info|Bootstrap|Starting Sonarr - C:\ProgramData\NzbDrone\bin\nzbdrone.console.exe - Version 2.0.0.3953
16-3-12 20:38:09.1|Debug|ServiceProvider|Checking if service NzbDrone exists.
16-3-12 20:38:09.1|Debug|ProcessProvider|Found 1 processes with the name: NzbDrone.Console
16-3-12 20:38:09.1|Debug|ProcessProvider| - [6184] NzbDrone.Console
16-3-12 20:38:09.1|Debug|ProcessProvider|Found 0 processes with the name: NzbDrone
16-3-12 20:38:09.2|Info|MigrationLogger|*** Migrating data source=C:\ProgramData\NzbDrone\nzbdrone.db;cache size=-10485760;datetimekind=Utc;journal mode=Wal;pooling=True;version=3 ***
16-3-12 20:38:09.4|Info|MigrationLogger|*** 101: add_ultrahd_quality_in_profiles migrating ***
16-3-12 20:38:09.4|Debug|MigrationLogger|Beginning Transaction
16-3-12 20:38:09.4|Info|add_ultrahd_quality_in_profiles|Starting migration to 101
16-3-12 20:38:09.4|Debug|MigrationLogger|PerformDBOperation
You are now ready to chat with Vivek.
Vivek:
Thanks for contacting EA Help! My name is Vivek how may I help you?
you:
Hi
you:
I am having sound problems with NFS The Run
you:
During the menus it works just fine, but during the cutscenes there is no sound
you:
@kekonn
kekonn / gist:1035620
Created June 20, 2011 13:43
Service 500 error
GET https://mobilevikings.com/api/2.0/oauth/usage.json?msisdn=%2B32474372145 HTTP/1.1
Authorization: OAuth oauth_callback="oob",oauth_consumer_key="[redacted]",oauth_nonce="49218nmefqm8v4rs",oauth_signature="9N3W4ecC1GbsLsc11A8hM2vW%2Fek%3D",oauth_signature_method="HMAC-SHA1",oauth_timestamp="1308577320",oauth_token="UA6tg3EDeyrRb4ebDn",oauth_version="1.0",
User-Agent: Hammock
Host: mobilevikings.com
This call pauses for a couple of seconds and then returns a 500.
@kekonn
kekonn / oauth_problem.txt
Created June 19, 2011 16:47
OAuth problem headers
GET https://mobilevikings.com/api/2.0/oauth/request_token/ HTTP/1.1
Authorization: OAuth oauth_callback="oob",oauth_consumer_key="[redacted]",oauth_nonce="jio7tjuun0dpf5yk",oauth_signature="abTtzO%2Fsri61DgyvHRBKtft%2FAR4%3D",oauth_signature_method="HMAC-SHA1",oauth_timestamp="1308517003",oauth_version="1.0"
User-Agent: Hammock
Host: mobilevikings.com
Connection: Keep-Alive
HTTP/1.1 200 OK
Server: nginx/0.8.54
Date: Sun, 19 Jun 2011 20:56:49 GMT
Content-Type: application/x-www-form-urlencoded
namespace InfiniteScroll
{
public interface IInfiniteScrollingItemsSource
{
void GetMoreItems(int count = 10);
}
}
@kekonn
kekonn / InfiniteScrollingListBox.cs
Created December 15, 2010 16:32
For a tutorial
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Media;
namespace InfiniteScroll
{
kernel void matrixTranspose( global float *a, global float *b, constant float *c, constant int size )
{
int idx = get_global_id(0);
int idy = get_global_id(1);
b[idx * size + idy] = a[idy * size + idx];
int BLOCKSIZE = 0;
int loops;
for (loops=0;loops<50;loops++)
{