Skip to content

Instantly share code, notes, and snippets.

View trollixx's full-sized avatar
🚎
Trolling...

Oleg Shparber trollixx

🚎
Trolling...
View GitHub Profile
@trollixx
trollixx / zenburn.xml
Last active December 20, 2023 10:24
Qt Creator Zenburn Theme
<?xml version="1.0" encoding="UTF-8"?>
<style-scheme version="1.0" name="Zenburn">
<style name="Text" foreground="#dcdccc" background="#1f1f1f"/>
<style name="Link" foreground="#dfcfaf"/>
<style name="Selection" foreground="#000d18" background="#8faf9f" bold="true"/>
<style name="LineNumber" foreground="#9fafaf" background="#262626"/>
<style name="SearchResult" foreground="#385f38" background="#f8f893"/>
<style name="SearchScope" foreground="#ffffe0" background="#284f28"/>
<style name="Parentheses" foreground="#b2b2a0" background="#2e2e2e" bold="true"/>
<style name="CurrentLine" foreground="#dcdccc" background="#121212" bold="true"/>

Keybase proof

I hereby claim:

  • I am trollixx on github.
  • I am trollixx (https://keybase.io/trollixx) on keybase.
  • I have a public key whose fingerprint is FF79 E2C9 6C39 0160 8483 DEEA CCF9 31AE 0305 F177

To claim this, I am signing this object:

@trollixx
trollixx / sign-exe.sh
Created April 13, 2015 06:08
Signing Windows executables on Linux
#!/bin/bash
# Based on http://development.adaptris.net/users/lchan/blog/2013/06/07/signing-windows-installers-on-linux/
openssl pkcs12 -in $1 -nocerts -nodes -out .key.pem
openssl pkcs12 -in $1 -nokeys -nodes -out .cert.pem
openssl rsa -in .key.pem -outform DER -out .authenticode.key
openssl crl2pkcs7 -nocrl -certfile .cert.pem -outform DER -out .authenticode.spc
osslsigncode -spc .authenticode.spc -key .authenticode.key -t http://timestamp.verisign.com/scripts/timstamp.dll -in $2 -out $3
rm .key.pem .cert.pem .authenticode.key .authenticode.spc
@trollixx
trollixx / qt.cfg
Last active January 4, 2021 23:32
Uncrustify configuration for Qt
# Uncrustify 0.60
#
# Qt specific options
#
set FOR foreach
set FOR forever
#
# General options
@trollixx
trollixx / build-qt5.sh
Last active December 18, 2015 23:39
Qt5 Build Script
#!/bin/bash
INSTALL_DIR=~/dev/qt5
QT_VERSION=5.2.1
QT_CONFIG="-nomake examples -nomake tests -opensource -confirm-license -debug -developer-build"
QT_PLATFORM_CONFIG="-qpa xcb"
QT_CROSSCOMPULE_CONFIG=""
MODULES=(base declarative graphicaleffects multimedia serialport)