Skip to content

Instantly share code, notes, and snippets.

View koleksiuk's full-sized avatar
🦀
Ship!

Konrad Oleksiuk koleksiuk

🦀
Ship!
View GitHub Profile
{
"basics": {
"name": "Konrad Oleksiuk",
"label": "Software Engineer",
"picture": "https://media.licdn.com/mpr/mpr/shrinknp_200_200/AAEAAQAAAAAAAAbpAAAAJDQwYzM3M2ZjLTMzZDMtNDk5My1iODQ3LWNjYzI1OWFiY2FjNQ.jpg",
"email": "konole@gmail.com",
"phone": "(+48) 798-072-888",
"website": "https://pl.linkedin.com/in/konole",
"summary": "Software Engineer with passion. I love working in a team using cutting-edge technologies and learn new things. Startup lover. I like to share my knowledge and to acquire it from others.",
"location": {
#!/usr/bin/perl -w
# recover rsyslog disk queue index (.qi) from queue files (.nnnnnnnn).
#
# See:
# runtime/queue.c: qqueuePersist()
# runtime/queue.c: qqueueTryLoadPersistedInfo()
#
# kaiwang.chen@gmail.com 2012-03-14
#
use strict;
set nocompatible " be iMproved, required
filetype off " required
filetype plugin indent on " required
filetype indent on " load filetype-specific indent files
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
set-option -g default-shell $SHELL
# copy and paster
# set-option -g default-command "reattach-to-user-namespace -l zsh"
# set-option -g default-command "reattach-to-user-namespace mvim"
# look good
set -g default-terminal "screen-256color"
# act like GNU screen
This file has been truncated, but you can view the full file.
SC5601 Rightfc:94:e3:11:bd:7f 2437 -88 [WPA-PSK-TKIP+CCMP][WPA2-PSK-TKIP+CCMP][ESS] UPC0045244
01-13 20:24:35.460 342-447/? E/WifiStateMachine﹕ KSC5601 Right00:14:bf:e5:fe:0b 2412 -93 [WPA-PSK-CCMP][ESS] dom
01-13 20:24:35.460 342-447/? E/WifiStateMachine﹕ KSC5601 Right70:71:bc:e4:83:28 2427 -91 [WPA-PSK-TKIP+CCMP][WPA2-PSK-TKIP+CCMP][WPS][ESS] Aster-632043
01-13 20:24:35.460 342-447/? E/WifiStateMachine﹕ KSC5601 Rightfc:94:e3:0b:58:52 2412 -91 [WPA-PSK-TKIP+CCMP][WPA2-PSK-TKIP+CCMP][ESS] UPC0055255
01-13 20:24:35.460 342-447/? E/WifiStateMachine﹕ KSC5601 Rightfc:94:e3:02:05:3e 2412 -93 [WPA-PSK-TKIP+CCMP][WPA2-PSK-TKIP+CCMP][ESS] UPC0049399
01-13 20:24:35.460 342-447/? E/WifiStateMachine﹕ KSC5601 Rightfc:94:e3:31:70:07 2437 -91 [WPA-PSK-TKIP+CCMP][WPA2-PSK-TKIP+CCMP][ESS] UPC0051682
01-13 20:24:35.460 342-447/? E/WifiStateMachine﹕ KSC5601 Right94:44:52:30:3b:bd 2437 -87 [WPA-PSK-TKIP+CCMP][WPA2-PSK-TKIP+CCMP][WPS][ESS] murozpirog
01-13 20:24:35.470 342-447/? E/WifiStateMach
package com.ocelotty.memestream.Services;
import android.app.Activity;
import android.content.Context;
import com.android.volley.Response;
import com.android.volley.VolleyError;
import com.android.volley.VolleyLog;
import com.android.volley.toolbox.JsonObjectRequest;
import com.ocelotty.memestream.MainActivity;
/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bin/java -Didea.launcher.port=7533 "-Didea.launcher.bin.path=/Applications/IntelliJ IDEA 12 CE.app/bin" -Dfile.encoding=UTF-8 -classpath "/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/deploy.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/javaws.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jconsole.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management-agent.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/plugin.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/sa-jdi.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/charsets.jar:/System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/classes.jar:/System/Library
Ignore bundler config.
/.bundle
# Ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal
# Ignore all logfiles and tempfiles.
/log/*.log
/tmp
@koleksiuk
koleksiuk / ArrayFilter.scala
Last active December 15, 2015 14:09
Scala: Run & Startup with SBT + Intellij IDEA 12
package scala.euler
/*
* Task: http://projecteuler.net/problem=1
* Description: Find the sum of all the multiples of 3 or 5 below 1000.
*/
class ArrayFilter(n: Int) {
val preparedArray = Array.range(1, n)
class Array
def selection_sort
(0...length).each do |i|
min = i
(i+1...length).each do |j|
min = j if self[j] < self[i]
end
self[i], self[min] = self[min], self[i]
end