Skip to content

Instantly share code, notes, and snippets.

View RadekDvorak's full-sized avatar

Radek Dvořák RadekDvorak

View GitHub Profile
@gabrielfern
gabrielfern / background.js
Created December 31, 2019 15:51
Google Chrome extension to disable download bar that automatically appears when download is started
chrome.runtime.onInstalled.addListener(() => {
chrome.downloads.setShelfEnabled(false)
})
chrome.runtime.onStartup.addListener(() => {
chrome.downloads.setShelfEnabled(false)
})
@kaja47
kaja47 / IntArray.php
Last active December 18, 2015 01:39
Unboxed int array in PHP
<?php
// advanced bit-twiddling
abstract class AbstractIntArray {
protected $length;
protected $data;
protected $typeSize;
function __construct($length) {
@LeonardoCA
LeonardoCA / AjaxPanels.php
Created July 13, 2012 21:22
AjaxPanelsCompilerExtension
<?php
/**
* This file is part of the AjaxPanels Nette Addon
*
* Copyright (c) 2012 Leonard Odlozilik
*
* For the full copyright and license information, please view
* the file license.txt that was distributed with this source code.
*/