This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* @param Integer[] $nums | |
* @param Integer $target | |
* @return Integer | |
*/ | |
function search(array $nums, int $target): int { | |
$left = 0; | |
$right = count($nums) - 1; | |
while ($left <= $right) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
declare(strict_types=1); | |
class Converter | |
{ | |
/** | |
* @param array $array | |
* @param $object | |
* @return object | |
* @throws \RuntimeException |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
^([01]?\d\d?|2[0-4]\d|25[0-5])(?:\.(?:[01]?\d\d?|2[0-4]\d|25[0-5])){3}(?:\/[0-2]\d|\/3[0-2])?(?:\-([01]?\d\d?|2[0-4]\d|25[0-5]))?$ | |
# true | |
255.255.255.255/30 | |
255.255.255.0 | |
255.255.255.100-200 | |
# false | |
255.255.255.255/33 | |
255.255.255.256 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Credits: https://stackoverflow.com/a/45727769/2679982 | |
# | |
TextView textView = view.findViewById(R.id.textview); | |
textView.setText("Dynamically created link"); | |
List<Pair<String, View.OnClickListener>> links = new ArrayList<>(); | |
links.add(new Pair<>(getString(R.string.auth_passport_confirm_agreement_link_label), new View.OnClickListener() { | |
@Override |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-keepclassmembers,allowobfuscation class * { | |
@com.google.gson.annotations.SerializedName <fields>; | |
} | |
-keep,allowobfuscation @interface com.google.gson.annotations.SerializedName |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openssl s_client -servername example.com -connect example.com:443 | openssl x509 -pubkey -noout | openssl rsa -pubin -outform der | openssl dgst -sha256 -binary | openssl enc -base64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import javax.crypto.*; | |
import javax.crypto.spec.*; | |
import java.util.*; | |
public class main { | |
public static void main(String[] args) throws Exception { | |
String keyRaw = "fLVjUa1Sw2Auca6R9VSvLmI0T4OnmgvV"; | |
SecretKeySpec skeySpec = new SecretKeySpec(keyRaw.getBytes(), "AES"); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Все номера РТ: | |
\+{0,1}(992)?(\d{9}$) | |
Мегафон Таджикистан | |
(\+)?(992)?((90|88|55|00)\d{7})$ | |
90* ** **** | |
88* ** **** | |
55* ** **** | |
00* ** **** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Вывод категорий с исключением по id | |
* @param string $exclude - Список категорий разделенные с запятой | |
* | |
* Usage: | |
* exclude_post_categories("1,2,3") | |
*/ | |
function exclude_post_categories($exclude = '') { | |
$categories = get_the_category($post->ID); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Notepad++ regex to remove everything, but leave numbers | |
[^\d] | |
Notepad++ regex to remove everything, but leave numbers and line breaks | |
[^\d\r\n] |
NewerOlder