- run Cygwin setup.exe
- install these packages that are not installed by default: automake, gcc, git and pkg-config
- browse http://libevent.org
- download libevent-2.0.21-stable.tar.gz
| diff --git src/ui/download_list.cc src/ui/download_list.cc | |
| index e3abc9a..4684f0c 100644 | |
| --- src/ui/download_list.cc | |
| +++ src/ui/download_list.cc | |
| @@ -349,11 +349,14 @@ DownloadList::setup_keys() { | |
| m_uiArray[DISPLAY_LOG]->bindings()[KEY_LEFT] = | |
| m_uiArray[DISPLAY_LOG]->bindings()['B' - '@'] = | |
| - m_uiArray[DISPLAY_LOG]->bindings()[' '] = std::tr1::bind(&DownloadList::activate_display, this, DISPLAY_DOWNLOAD_LIST); | |
| + m_uiArray[DISPLAY_LOG]->bindings()[' '] = |
| " CVim settings for auto sync | |
| " Nothing special here, just my key mappings | |
| let hintcharacters = "jfkdhglsautnvyb" | |
| map <C-d> scrollPageDown | |
| map <C-u> scrollPageUp | |
| " The unmaps the default 'k' mapping | |
| " unmap k | |
| unmap d | |
| unmap x |
| #!/usr/bin/perl | |
| use strict; | |
| my ($hex_in, $hex_out) = @ARGV; | |
| print "[PATHCING] : $hex_in => $hex_out \n"; | |
| open (HEX_IN, "$hex_in") or die("open failed for $hex_in : $!"); | |
| open (HEX_OUT, ">$hex_out") or die("open failed for $hex_out : $!"); |
| pkgname=libimobiledevice | |
| pkgver=1.2.0 | |
| pkgrel=3 | |
| pkgdesc="Library that talks the protocols to support iPhone and iPod Touch devices on Linux" | |
| url="https://github.com/libimobiledevice/libimobiledevice.git" | |
| arch=('i686' 'x86_64') | |
| license=('GPL2' 'LGPL2.1') | |
| depends=('libusbmuxd') | |
| makedepends=('python2') |
| [user] | |
| name = Eugene Mihailenco | |
| email = [email protected] | |
| [core] | |
| editor = vim | |
| [alias] | |
| st = status | |
| dc = diff --cached | |
| ci = commit | |
| co = checkout |
| #!/bin/bash | |
| # vim: ft=sh | |
| # Stop on any error | |
| set -e | |
| # Get scripta path | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
| echo "Stopping LionsGate server" |
| mySelection = app.activeDocument.selection; | |
| myDoc = app.activeDocument; | |
| if (mySelection instanceof Array) | |
| { | |
| selSwatches = myDoc.swatches.getSelected(); | |
| if (selSwatches.length < mySelection.length) | |
| alert ("Pleade make sure you have enough swathces you have " + selSwatches.length + " and you need " + mySelection.length) | |
| else | |
| { |
| #!/usr/bin/env bash | |
| gfind ./ -type f -not -path "./.git/*" -iname "*.cs" -exec gsed -i \ | |
| -e '1s/^/\ | |
| \/\/===----------------------------------------------------------------------===\/\/\ | |
| \/\/\ | |
| \/\/ vim: ft=cs tw=80\ | |
| \/\/\ | |
| \/\/ Date: 3\/7\/16 2:33:00\ |
| " Stupid Eugene's plugin that does similar thing to switch.vim | |
| let g:toggle_definitions = | |
| \ [ | |
| \ 's/public/private/', | |
| \ 's/private/pretected/', |