Skip to content

Instantly share code, notes, and snippets.

View roman0x58's full-sized avatar
πŸ„β€β™‚οΈ

Belikin Roman roman0x58

πŸ„β€β™‚οΈ
View GitHub Profile
byte[] buffer = new byte[1024];
private void extractSources(File tmpDir) throws IOException {
InputStream is = ThemeCompiler.class.getClassLoader().getResourceAsStream("theme.zip");
ZipInputStream zis = new ZipInputStream(is);
ZipEntry entry;
log.debug("------------- Unzip start -----------------");
while ((entry = zis.getNextEntry()) != null) {
log.debug("Unzip : {} ", entry.getName());
@roman0x58
roman0x58 / gist:fad107a17a0b56e51231
Last active August 29, 2015 14:06
ExtJs File Download
# Port of https://github.com/filamentgroup/jQuery-File-Download/blob/master/jQuery.download.js
download = (url, data, method) ->
#url and data options required
if url and data
#data can be string of parameters or array/object
data = (if typeof data is "string" then data else Ext.Object.toQueryString(data))
#split params into form inputs
@roman0x58
roman0x58 / gist:e80e53dbbbcb51662bf3
Last active July 29, 2016 10:16
CSS3 supports (es6)
((supports, exports) => {
supports.forEach(
(support) => {
exports.supports = {};
let el = document.body || document.documentElement;
let style = el.style;
let prefixes = ['Moz', 'Webkit', 'Ms', 'O', support.toLowerCase()];
exports.supports[support] = prefixes.some((p) => typeof style[p + support] !== 'undefined');
}
);
@roman0x58
roman0x58 / Ext.ux.Messages.js
Last active August 29, 2015 14:20
Useful wrapper for Ext.Js messages
Ext.define('Ext.ux.Messages', {
_messages: Ext.MessageBox,
accessDeniedMessage: [
"<span style='font-weight:bold;'>НСдопустимая опСрация.</span><br/>",
"Доступ Π·Π°ΠΊΡ€Ρ‹Ρ‚. Если Π²Ρ‹ считаСтС, Ρ‡Ρ‚ΠΎ это ΠΎΡˆΠΈΠ±ΠΎΡ‡Π½ΠΎ, поТалуйста, ΠΎΠ±Ρ€Π°Ρ‚ΠΈΡ‚Π΅ΡΡŒ Π² слуТбу тСхничСской ΠΏΠΎΠ΄Π΄Π΅Ρ€ΠΆΠΊΠΈ."
].join(''),
eTypes: {
SDS: 'exception.sds',
Ext.define("Ext.ux.Login", {
extend: "Ext.Container",
formWrap: true,
loginButtonLabel: "Log In",
title: "Login form",
baseCls: Ext.baseCSSPrefix + 'wr-login',
headerCls: Ext.baseCSSPrefix + 'wr-login-header-panel',
innerCls: Ext.baseCSSPrefix + 'wr-login-inner-panel',
errorCls: Ext.baseCSSPrefix + 'wr-login-message',
@roman0x58
roman0x58 / mc hotkeys
Last active October 23, 2015 17:14
Midnight Commander OS X hotkeys
----- Esc -----
Quick change directory: Esc + c
Quick change directory history: Esc + c and then Esc + h
Quick change directory previous entry: Esc + c and then Esc + p
Command line history: Esc + h
Command line previous command: Esc + p
View change: Esc + t (each time you do this shortcut a new directory view will appear)
Print current working directory in command line: Esc + a
Print current file name in command line: Esc + Enter
Switch between background command line and MC: Ctrl + o
@roman0x58
roman0x58 / backbone-event-relay.coffee
Last active December 10, 2015 10:45
Backbone event relay
((root, props) ->
relayEvent = ->
a = _.chain(arguments).toArray()
a.unshift(@) if a.size().value() is 2
((from, to, eventName) ->
from.on(eventName, ->
a = _.chain(arguments)
.toArray()
.unshift(eventName)
to.trigger.apply(to, a.value())
@roman0x58
roman0x58 / tmux.hotkeys
Created January 28, 2016 11:44
tmux hotkeys
Control-U β€” pages up
Control-D β€” pages up
^ β€” goes to the beginning of a line
$ β€” goes to the end of a line
g β€” goes to the beginning of scroll history
G β€” goes to the end of scroll history
/ β€” search down
? β€” search up
@roman0x58
roman0x58 / xhr.js
Created May 17, 2017 17:22
simple xhr request
export const request = (url) => {
const xhr = new XMLHttpRequest()
const process = (method, body) => {
xhr.open(method, url, true)
xhr.setRequestHeader('Content-Type', 'application/json;charset=UTF-8')
xhr.send(body)
return new Promise((resolve, reject) => {
xhr.onreadystatechange = xhr.onerror = () => {
if (xhr.readyState === XMLHttpRequest.DONE) xhr.status >= 200 && xhr.status < 300 ?
resolve(JSON.parse(xhr.responseText)) : reject(xhr.responseText)
cat /var/log/logifle | grep -Po 'connection timed out: \K.*\w+(?= to)' | sort | uniq -c