Skip to content

Instantly share code, notes, and snippets.

Thread 5 (Thread 59272.0xe7ec):
#0 0x75f082d0 in Sleep () from C:\WINDOWS\SYSTEM32\kernel32.dll
No symbol table info available.
#1 0x6b799feb in QThread::msleep (msecs=500) at thread\qthread_win.cpp:446
No locals.
#2 0x00454b8b in ModelThread::run (this=0x2ef801f8) at ../src/modelthread.cpp:68
No locals.
#3 0x6b799da8 in QThreadPrivate::start(void*)@4 (arg=0x2ef801f8) at thread\qthread_win.cpp:367
thr = 0x2ef801f8
1 Ui_TestOverviewClass::setupUi ui_testoverview.h 105 0x5621ff
2 TestOverview::TestOverview testoverview.cpp 8 0x46dab0
3 Ui_VWGuiClass::setupUi ui_vwgui.h 157 0x552216
4 VWGui::VWGui vwgui.cpp 50 0x440a03
5 main main.cpp 132 0x45366c
@Osse
Osse / .zshrc
Created February 25, 2015 19:48
function zle-line-init zle-keymap-select {
RPS1="%B${${KEYMAP/vicmd/n}/(main|viins)/i}%b"
RPS2=$RPS1
zle reset-prompt
}
zle -N zle-line-init
zle -N zle-keymap-select
@Osse
Osse / pms
Created December 16, 2014 23:43
./5.8.8/AnyDBM_File.pm
./5.8.8/App/Prove/State/Result/Test.pm
./5.8.8/App/Prove/State/Result.pm
./5.8.8/App/Prove/State.pm
./5.8.8/App/Prove.pm
./5.8.8/Attribute/Handlers.pm
./5.8.8/attributes.pm
./5.8.8/AutoLoader.pm
./5.8.8/AutoSplit.pm
./5.8.8/autouse.pm
#!/bin/bash
green=$(tput setaf 2)
yellow=$(tput setaf 3)
blue=$(tput setaf 12)
reset=$(tput sgr0)
cols=$(tput cols)
# Associative array of branches and upstreams. The keys are the local branches
# and the values are their upstreams (if any)
list=( ${(f)"$(<vimgor.txt)"} )
for v in $list; do
echo $v
echo "irc.freenode.vimgor *$v" >> ~/.weechat/weechat_fifo_27744
sleep 30
done
e1: Show invisibles
e2: Tabs and Spaces
e3: Whitespace preferences and filetypes
e4: Tidying whitespace
e5: Indentation commands
e6: Working with buffers
e7: Working with windows
e8: Working with tabs
e9: How to use tabs
e10: Creating the Vimcasts logo as ASCII art
@Osse
Osse / gist:debdb53074b377bf784c
Created September 29, 2014 09:13
qmake variables
message("QMAKE: $$QMAKE")
message("QMAKESPEC: $$QMAKESPEC")
message("QMAKE_AR_CMD: $$QMAKE_AR_CMD")
message("QMAKE_BUNDLE_DATA: $$QMAKE_BUNDLE_DATA")
message("QMAKE_BUNDLE_EXTENSION: $$QMAKE_BUNDLE_EXTENSION")
message("QMAKE_CC: $$QMAKE_CC")
message("QMAKE_CFLAGS_DEBUG: $$QMAKE_CFLAGS_DEBUG")
message("QMAKE_CFLAGS_RELEASE: $$QMAKE_CFLAGS_RELEASE")
message("QMAKE_CFLAGS_SHLIB: $$QMAKE_CFLAGS_SHLIB")
message("QMAKE_CFLAGS_THREAD: $$QMAKE_CFLAGS_THREAD")
relpath() {
local -a components cur_components rel_path
local i
components=( ${(s:/:)1:a} )
cur_components=( ${(s:/:)PWD:a} )
while [[ $components[1] = $cur_components[1] ]]; do
shift components cur_components
done
#!/bin/bash
url= 'http://peppes.notch.no/news/draw'
common_opts=(
--silent # Silent or quiet mode. Do not show progress meter or error messages.
--request POST # Specifies a custom request method to use when communicating with the HTTP server
--header 'Content-Type: application/x-www-form-urlencoded' # Extra header to include in the request when sending HTTP to a server.
--header 'Origin: herro'
)