just the bare necessities of state management.
Hotlink it from https://unpkg.com/valoo.
just the bare necessities of state management.
Hotlink it from https://unpkg.com/valoo.
Gain adb root.
$ adb shell am start -n com.android.engineeringmode/.qualcomm.DiagEnabled --es "code" "angela"
Download Magisk-v14.0 and extract it somewhere. Download MagiskManager.
| // what if this was something browsers just gave us? | |
| const { vdom } = document; | |
| // this is same idea as React.createElement | |
| // or any of the other similar appraoches | |
| const newVirtualDom = vdom('div', {className: 'some-class'}, [ | |
| vdom('p', null, 'hi') | |
| ]) | |
| // if preferred, someone could easily use JSX and precompile it |
| /* | |
| Flexbox CSS helpers from the Polymer team. Extracted from https://github.com/PolymerElements/iron-flex-layout for use as just CSS. | |
| Docs: https://elements.polymer-project.org/guides/flex-layout | |
| @license | |
| Copyright (c) 2017 The Polymer Project Authors. All rights reserved. | |
| This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt | |
| The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt | |
| The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt |
| fastlane_version "1.94.0" | |
| default_platform :ios | |
| platform :ios do | |
| desc "Run Unity Editor tests" | |
| lane :test_unit do | |
| unity( | |
| run_editor_tests: true | |
| ) |
List of incompetent jackasses who can't check a source if their lives depended on it:
| # Get a random line from the Zen of Python without a print (preferably for a colorful cow to chant!) | |
| # Replace stdout by an anonymous class that returns nothing on write() | |
| import sys | |
| stdout = sys.stdout | |
| sys.stdout = type('BlackHole', (), {'write': (lambda self, string: '')})() | |
| # This import's output has now been supressed | |
| import this |
| import android.view.View; | |
| import android.view.ViewGroup; | |
| /** | |
| * A {@link ViewGroup.OnHierarchyChangeListener hierarchy change listener} which recursively | |
| * monitors an entire tree of views. | |
| */ | |
| public final class HierarchyTreeChangeListener implements ViewGroup.OnHierarchyChangeListener { | |
| /** | |
| * Wrap a regular {@link ViewGroup.OnHierarchyChangeListener hierarchy change listener} with one |
| # This is a standard python config file | |
| # Valid values can be True, False, integer numbers, strings | |
| # By default bpython will look for ~/.config/bpython/config or you | |
| # can specify a file with the --config option on the command line | |
| # General section tag | |
| [general] | |
| # Display the autocomplete list as you type (default: True). | |
| # When this is off, you can hit tab to see the suggestions. |
[**Please, don't use `mysql_*` functions in new code**](http://bit.ly/phpmsql). They are no longer maintained [and are officially deprecated](http://j.mp/XqV7Lp). See the [**red box**](http://j.mp/Te9zIL)? Learn about [*prepared statements*](http://j.mp/T9hLWi) instead, and use [PDO](http://php.net/pdo) or [MySQLi](http://php.net/mysqli) - [this article](http://j.mp/QEx8IB) will help you decide which. If you choose PDO, [here is a good tutorial](http://j.mp/PoWehJ).
Please, don't use mysql_* functions in new code. They are no longer maintained and are officially deprecated. See the red box? Learn about prepared statements instead, and use PDO or MySQLi - this article will help you decide which. If you choose PDO, here is a good tutorial.