Skip to content

Instantly share code, notes, and snippets.

View roman0x58's full-sized avatar
🏄‍♂️

Belikin Roman roman0x58

🏄‍♂️
View GitHub Profile
@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
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 / 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',
@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 / 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
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());