This file contains hidden or 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
| Option Explicit | |
| Public Sub AutoGenLinks() | |
| With ActiveWorkbook | |
| With ActiveSheet | |
| Dim IsHyperLink As Boolean | |
| Dim Cell As Range | |
| For Each Cell In .UsedRange | |
| IsHyperLink = False | |
| If Cell.Text Like "https://*" Then |
This file contains hidden or 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
| ; Save this code to inf file and install it | |
| ; | |
| ; "Sublime Text Context Menu" | |
| ; | |
| ; Copyright 1996 Microsoft Corporation | |
| ; | |
| [version] | |
| signature="$Windows NT$" | |
| [SublimeTextInstall] |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| declare -a SEARCH_PATHS | |
| SEARCH_PATHS[1]=/proc/* | |
| PROC_INDEX=1 | |
| while [[ $# -gt 1 ]]; do | |
| case "${1}" in | |
| -p | --pid) SEARCH_PATHS[$PROC_INDEX]="/proc/${2}"; PROC_INDEX=$((PROC_INDEX + 1)); shift 2 ;; | |
| *) ;; |
This file contains hidden or 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
| ; Save this code to inf file and install it | |
| ; | |
| ; "Sublime Text Context Menu" | |
| ; | |
| ; Copyright 1996 Microsoft Corporation | |
| ; | |
| [version] | |
| signature="$Windows NT$" | |
| [VsCodeInstall] |
This file contains hidden or 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 android.app.ActivityManager; | |
| import android.content.ComponentName; | |
| import android.content.Context; | |
| import android.os.Handler; | |
| import java.util.ArrayList; | |
| import java.util.List; | |
| import java.util.Objects; | |
| public class TopActivityWatcher { |
This file contains hidden or 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 android.util.SparseArray; | |
| import java.io.FileNotFoundException; | |
| import java.io.FileOutputStream; | |
| import java.io.PrintWriter; | |
| import java.io.Writer; | |
| import java.text.SimpleDateFormat; | |
| import java.util.Date; | |
| import static android.util.Log.ASSERT; |
This file contains hidden or 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
| #!/usr/bin/env python | |
| import requests | |
| import base64 | |
| import hashlib | |
| import sys | |
| import json | |
| import os | |
This file contains hidden or 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 android.os.IBinder; | |
| import android.os.RemoteException; | |
| import android.util.Log; | |
| import java.lang.reflect.InvocationTargetException; | |
| import java.lang.reflect.Method; | |
| public class ServiceManager { | |
| static final String TAG = ServiceManager.class.getSimpleName(); | |
| static Class sClass = null; |
This file contains hidden or 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
| #include <conio.h> | |
| #include <tchar.h> | |
| #include <strsafe.h> | |
| #include <string> | |
| #include <vector> | |
| #include <Windows.h> | |
| #define TCHAR_SPACE TEXT(' ') |
This file contains hidden or 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
| #!/usr/bin/env bash | |
| SHELL_SCRIPT=' | |
| applets=(ar | |
| arp | |
| ash | |
| awk | |
| base64 | |
| basename | |
| blkid |