Tutorial: https://xdaforums.com/t/guide-samsung-galaxy-tab-s5e-debloat-without-root-info.3935010/post-80054354
Blog post: https://notes.luxian.ro/node/82
Connect your tablet to your computer and run:
Tutorial: https://xdaforums.com/t/guide-samsung-galaxy-tab-s5e-debloat-without-root-info.3935010/post-80054354
Blog post: https://notes.luxian.ro/node/82
Connect your tablet to your computer and run:
<?php | |
/** | |
* This code demonstrates the performance difference when calling | |
* DOMNode::C14N() on a generated DOMDocument versus on a DOMDocument that was | |
* loaded from a string. | |
* | |
* Calling DOMDocument::normalizeDocument() doesn't make any difference. | |
* | |
* Output example: | |
* Testing with 500 items |
<?php | |
class Shell { | |
public $command; | |
public $output_array; | |
public $output; | |
public $exit_code; | |
public function __construct($command, $exit_code, array $output_array) { |
#!/usr/bin/env bash | |
# Randomize MAC address for the WiFi cards on Macbook Pro | |
# | |
# Most of the code comes from here: | |
# https://apple.stackexchange.com/questions/151986/change-mac-address-in-os-x-yosemite | |
# | |
echo "Randomizing WiFi MAC address..."; | |
echo; |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# Target directory | |
DIRECTORY=~/Desktop/vboxshare | |
# Folder name (from VirtualBox share folders settings) | |
FOLDER_NAME="share"; | |
# Make sure the directory exists | |
if [ ! -d "$DIRECTORY" ]; then |
<?php | |
if (!getenv('AMAZEEIO_SITE_URL')) { | |
/** | |
* These settings are used only outside vagrant | |
*/ | |
/** | |
* The local domain for the website. It might contain port number |
#!/usr/bin/env drush | |
#<?php // trigger phpStorm syntax | |
/** | |
* @revision: 2 | |
* | |
* @file | |
* Drush script to fix Drupal 8 paragraph content translation. | |
* | |
* This script was meant to be run after the following patch was applied to | |
* paragraphs: |
<?php | |
/** | |
* Check what nodequeues are used in views | |
* | |
* Usage: | |
* drush ev "luxian_nodequeue_stats();" | |
*/ | |
function luxian_nodequeue_stats() { | |
if (!drupal_is_cli()) { |
<?php | |
/** | |
* Get redirect information for a given URL | |
* | |
* @param string $url | |
* URL to check | |
* | |
* @return array | |
* In case of success complete cURL info array returned by curl_getinfo() + |