Skip to content

Instantly share code, notes, and snippets.

View Sonique's full-sized avatar

Vitaly Larchenkov Sonique

View GitHub Profile
@Sonique
Sonique / utils.py
Created August 10, 2018 10:49 — forked from jossef/utils.py
python different ways to import external modules (from cdn / memory string / file path / plugin directory)
import imp
import importlib
import inspect
import glob
import requests
import os
def import_from_string(content, module_name, file_name=None):
if not file_name:
file_name = '{0}.py'.format(module_name)
@Sonique
Sonique / swap_files.sh
Last active July 23, 2018 13:10
Bash: swap files
function swap() { mv $1 $1._tmp; mv $2 $1; mv $1._tmp $2; }
@Sonique
Sonique / hosts.ini
Created July 23, 2018 12:25
Ansible: use any python version for ansible_python_interpreter
[nodes:vars]
ansible_python_interpreter = ls /usr/bin/ | grep -E "^python([2-3](.[0-9])?)?$" | head -n 1
@Sonique
Sonique / executor-shutdown.java
Created April 24, 2017 10:02
Java Executor proper shutdown
try {
System.out.println("attempt to shutdown executor");
executor.shutdown();
executor.awaitTermination(5, TimeUnit.SECONDS);
}
catch (InterruptedException e) {
System.err.println("tasks interrupted");
}
finally {
if (!executor.isTerminated()) {
@Sonique
Sonique / gist:7e65abcae021027beabf
Created June 22, 2014 03:20
Laravel .gitignore extended
# System
.DS_Store
Thumbs.db
.Trashes
._*
Icon
.AppleDouble
.LSOverride
# Editors
@Sonique
Sonique / Download via scp
Last active December 22, 2015 05:49
Download via SCP
scp server:~/remote/somefile.txt .
@Sonique
Sonique / find_string_in_files.bash
Last active December 21, 2015 16:28
Find string in files
find . -name "*.txt" -exec grep -il "Word" {} \;
// #linux #bash
@Sonique
Sonique / Laravel Resource.xml
Last active December 21, 2015 14:08 — forked from JeffreyWay/snippet.xml
Laravel Resource - Sublime Text 2 Snippet
<snippet>
<content><![CDATA[
// ${1/(.)/\u\1/}s Resource
Route::get('${1}s', array('as' => '${1}s', 'uses' => '${1}s@index'));
Route::get('${1}s/(:any)', array('as' => '${1}', 'uses' => '${1}s@show'));
Route::get('${1}s/new', array('as' => 'new_${1}', 'uses' => '${1}s@new'));
Route::get('${1}s/(:any)/edit', array('as' => 'edit_${1}', 'uses' => '${1}s@edit'));
Route::post('${1}s', '${1}s@create');
Route::put('${1}s/(:any)', '${1}s@update');
Route::delete('${1}s/(:any)', '${1}s@destroy');
@Sonique
Sonique / mysqldump.bash
Last active December 21, 2015 06:58
MySQL backup from command line
mysqldump -u mysqluser -p mysqldatabase | gzip > db_backup.sql.gz
// #mysql #bash #terminal
@Sonique
Sonique / shri.js
Last active August 29, 2015 14:26 — forked from verkholantsev/shri.js
/**
* Реализация API, не изменяйте ее
* @param {string} url
* @param {function} callback
*/
function getData(url, callback) {
var RESPONSES = {
'/countries': [
{name: 'Cameroon', continent: 'Africa'},
{name :'Fiji Islands', continent: 'Oceania'},