Credits to @TheOnlyAnil-@Firelord[^stackoverflow]
-
Requirements: a) stock recovery + rooted phone b) custom recovery
-
Files changed:
#pragma once | |
#ifndef CRITICAL_SECTION_GUARD_H_ | |
#define CRITICAL_SECTION_GUARD_H_ | |
#include <windows.h> | |
// (c) 2019 <[email protected]> | |
// Released under BSD-3 clause. | |
class CriticalSectionGuard { |
docker run --rm --publish=10022:22 \ | |
--env ROOT_PASSWORD=simple_password \ | |
-v $PWD:/data \ | |
hermsi/alpine-sshd |
""" | |
From Python 3.3, functional programing on top of generators has been reached a new state-level. | |
Infinite loop without memory footprint with just a `list()` over the magic. | |
https://stackoverflow.com/questions/13243766/python-empty-generator-function | |
A new ofuscated way to hide traditional server-loops is here, muajajaja. | |
""" | |
def classical_yield(): |
[Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS | |
## https://bugs.launchpad.net/fwts/+bug/1249978 | |
# **https://ubuntuforums.org/showthread.php?t=1613132** | |
i915 | |
### ??? | |
realtek: No valid SSID, checking pincfg | |
### FIXED (overriding) | |
## https://bugzilla.redhat.com/show_bug.cgi?id=785417 |
_pwd=$PWD | |
find . -name '.git' -type d | while read repo | |
do | |
repo_dir=$(dirname $repo) | |
cd $repo_dir | |
echo "$(git rev-parse --short HEAD) $(git rev-parse --show-toplevel)" | |
#echo -e "$(git rev-parse --show-toplevel) \t $(git rev-parse HEAD)" | |
cd $_ |
Inside a msu file (a file with the extension msu) there can be Windows updates (security updates, critical updates, updates, update rollups or hotfixes) or downloadable setup packages. msu stands for Microsoft Update Standalone Package.
To install an .msu update package, you can either double click it, or run Wusa.exe together with the full path of the file:
wusa.exe \
#!/bin/sh | |
# | |
# -*- varribas archive -*- | |
# | |
## Converting video to WebM with ffmpeg/avconv | |
# https://superuser.com/questions/556463/converting-video-to-webm-with-ffmpeg-avconv | |
# | |
# The following information is taken from the FFmpeg vpx (WebM) Encoding Guide | |
# and gives a basic overview of WebM encoding. As the libvpx encoder for FFmpeg | |
# hasn't really been documented before, any suggestions for improvement are |
#!/bin/sh | |
# | |
# Copyright (c) 2016 | |
# Author: Victor Arribas <[email protected]> | |
# License: GPLv3 <http://www.gnu.org/licenses/gpl-3.0.html> | |
if pgrep gzserver || pgrep gzclient | |
then | |
killall gzserver |