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
{ | |
"latest_version": { | |
"major": 0, | |
"minor": 0, | |
"patch": 5, | |
"release_type": "beta", | |
"changes": [ | |
"use TradingView chart for candlestick preview" | |
], | |
"download_url_windows": "https://1drv.ms/u/c/a9a4f3aa86e6d8ad/EUlOrEj926xDgxtoowvTiJcBRRX0e8eTBr9M1JIaG7lGsA?e=UQLhyZ", |
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
#@version = 1 | |
# Author: TwizzyIndy | |
# Description: Estimated Buy/Sell Volume Custom Indicator for Binance(Desktop) | |
# 2025/02 | |
study("Est. Buy/Sell Volume", overlay=False) | |
range = high - low | |
buyVolume = range != 0 ? volume * (close - low) / range : 0 |
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
/* Utilities */ | |
var RANDOM = function() {}; | |
function _randomInt(min, max) { | |
return Math.floor(Math.random() * (max - min + 1)) + min; | |
} | |
function _randomHex(len) { | |
var hex = '0123456789abcdef'; |
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
#!/bin/bash | |
# IMPORTANT: Don't forget to logout from your Apple ID in the settings before running it! | |
# IMPORTANT: You will need to run this script from Normal Mode's Terminal. | |
# WARNING: It might disable things that you may not like. Please double check the services in the TODISABLE vars. | |
# Get active services: launchctl list | grep -v "\-\t0" | |
# Find a service: grep -lR [service] /System/Library/Launch* /Library/Launch* ~/Library/LaunchAgents | |
# Agents to disable |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>PayloadContent</key> | |
<array> | |
<dict> | |
<key>Font</key> | |
<data> | |
AAEAAAASAQAABAAgRkZUTTzr2vEAAQK0AAAAHEdERUYBbgEBAADy |
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
#!/system/bin/sh | |
#author : TwizzyIndy | |
#created on : 11/2016 | |
su -c busybox mount -o remount,rw /system | |
cd /system/fonts | |
for font in NotoSansMyanmar* | |
do | |
fontName=`echo $font|cut -f 1 -d '.'` |
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 | |
#encoding:utf8 | |
#=============================================================================== | |
# | |
# FILE: simg2img.py | |
# | |
# USAGE: ./simg2img.py system.img | |
# | |
# DESCRIPTION: | |
# |
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
PRIVACY POLICY | |
MMComplex Keyboard is a custom keyboard for the Apple’s iOS devices. Your privacy is important to us. In this privacy policy, we let you know what information we collect when you use our applications (the “Apps”), why we collect it and how we use it to improve your experience. | |
COLLECTION OF PERSONAL INFORMATION | |
No collection of personal information that you type. The app “MMComplex Keyboard" does not collect any personal information or upload any such information to any server. | |
Crash logs are handled automatically by Apple and are sent to the developer. These crash logs are not personally identifiable and are used solely for maintenance, bug fixing and improvements. | |
DATA STORAGE | |
The data (Keyboard settings and color data) are stored on your device locally. |
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
#!/bin/sh | |
# Written by TwizzyIndy | |
# Jan 2 , 2016 | |
echo "#################" | |
echo "#################" | |
echo "AppsBackup Script" | |
echo "TwizzyIndy" | |
echo "#################" |
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
@TargetApi(Build.VERSION_CODES.LOLLIPOP) | |
public static String getForegroundProcess(Context context) { | |
String topPackageName = null; | |
UsageStatsManager usage = (UsageStatsManager) context.getSystemService(Context.USAGE_STATS_SERVICE); | |
long time = System.currentTimeMillis(); | |
List<UsageStats> stats = usage.queryUsageStats(UsageStatsManager.INTERVAL_DAILY, time - 1000*1000, time); | |
if (stats != null) { | |
SortedMap<Long, UsageStats> runningTask = new TreeMap<Long,UsageStats>(); | |
for (UsageStats usageStats : stats) { | |
runningTask.put(usageStats.getLastTimeUsed(), usageStats); |
NewerOlder