Skip to content

Instantly share code, notes, and snippets.

View BR0kEN-'s full-sized avatar
⌨️
Coding... A lot.

Sergii Bondarenko BR0kEN-

⌨️
Coding... A lot.
View GitHub Profile
if (!document.querySelectorAll) {
document.querySelectorAll = function (selectors) {
var style = document.createElement('style'), elements = [], element;
document.documentElement.firstChild.appendChild(style);
document._qsa = [];
style.styleSheet.cssText = selectors + '{x-qsa:expression(document._qsa && document._qsa.push(this))}';
window.scrollBy(0, 0);
style.parentNode.removeChild(style);
@BR0kEN-
BR0kEN- / js_filename.js
Created January 25, 2014 17:53
PHP __FILE__ magic constant in JavaScript
/**
* __defineGetter__ - IE9+
* new Error - IE10+
*/
window.__defineGetter__('__FILE__', function() {
return (new Error).stack.split('/').slice(-1).join().split('.')[0];
});
console.log(__FILE__); // js_filename
#!/usr/bin/env bash
# Move contents from this subdirectory into root directory of a repository.
# - Any relative directory could be as a value.
# - Pass "--default" to keep this value and affect on the next.
DIRECTORY="docroot"
# Commit moved content in this branch.
# - Any name can be specified. Branch will be created.
# - Pass "--default" to keep this value and affect on the next.
BRANCH="sources"
@BR0kEN-
BR0kEN- / MODULE.module
Last active November 25, 2016 15:57
Drupal 8: validate entity field if value changed (PHP 7).
<?php
/**
* Implements hook_entity_type_alter().
*/
function MODULE_entity_type_alter(array &$entity_types) {
/* @var \Drupal\Core\Entity\ContentEntityType $entity_user */
$entity_user = $entity_types['user'];
$entity_user->setFormClass('default', \Drupal\MODULE\Entity\User\Form\ProfileForm::class);
}
@BR0kEN-
BR0kEN- / vagrant.log
Created May 23, 2017 15:11
[Windows] "Vagrant::Util::Platform.windows_admin" hangs forever
INFO global: Vagrant version: 1.9.5
INFO global: Ruby version: 2.2.5
INFO global: RubyGems version: 2.4.5.1
INFO global: VAGRANT_EXECUTABLE="C:\\HashiCorp\\Vagrant\\embedded\\gems\\gems\\vagrant-1.9.5\\bin\\vagrant"
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="C:\\HashiCorp\\Vagrant\\embedded"
INFO global: VAGRANT_INSTALLER_ENV="1"
INFO global: VAGRANT_INSTALLER_VERSION="2"
INFO global: VAGRANT_LOG="debug"
INFO global: VAGRANT_OLD_ENV_="C:=C:\\cygwin64\\bin"
INFO global: VAGRANT_OLD_ENV_ALLUSERSPROFILE="C:\\ProgramData"
@BR0kEN-
BR0kEN- / memcache.sh
Last active July 14, 2017 09:39
Flush Memcache or only prefixed entries from a command line
#!/usr/bin/env bash
MEMCACHE_PID=$(\pgrep -f memcache)
MEMCACHE_HOST="127.0.0.1"
MEMCACHE_PORT="11211"
if [ -n "${MEMCACHE_PID}" ]; then
# @todo Do we have an ability to use passwordless "sudo"?
DATA=$(\sudo \netstat -plunt | \grep "${MEMCACHE_PID}" | \awk '{print $4}' | \head -n1)
@BR0kEN-
BR0kEN- / Vagrantfile
Created April 7, 2017 23:48
Check VM state in Vagrantfile
VagrantEnv = Vagrant::Environment.new()
if "running" == (VagrantEnv.machine_index.find{|machine| machine.vagrantfile_path == VagrantEnv.cwd}).state
puts "Machine is running!"
end
@BR0kEN-
BR0kEN- / repostat
Last active August 11, 2019 22:37
Per-user repository statistic (commits, additions and deletions counter)
#!/usr/bin/env bash
set -e
BRANCH="$1"
IFS="|"
# Show help.
if [ "help" == "$BRANCH" ]; then
echo "$0 BRANCH"
### Keybase proof
I hereby claim:
* I am br0ken- on github.
* I am br0ken (https://keybase.io/br0ken) on keybase.
* I have a public key ASDVn9CNGI5gGbGUT2Xd1-FYZX4xR3HlGPYOTWjLPsdOQAo
To claim this, I am signing this object:
@BR0kEN-
BR0kEN- / guzzle_gzip_unpack.php
Created March 3, 2021 12:13
Guzzle unarchive Gzip on the fly (without storing an archive on disk)
<?php
// Requirements:
// - ext-zlib
// - guzzlehttp/guzzle
declare(strict_types=1);
use GuzzleHttp\Client;
use GuzzleHttp\RequestOptions;