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
| # Samsung Ads & Analytics | |
| echo 'Samsung Push Client' | |
| adb shell pm uninstall --user 0 com.samsung.android.spdclient # Samsung Push Client | |
| echo 'Game Tools' | |
| adb shell pm uninstall --user 0 com.samsung.android.game.gametools # Game Tools | |
| echo 'Game Optimizing Service' | |
| adb shell pm uninstall --user 0 com.samsung.android.game.gos # Game Optimizing Service | |
| echo 'Game Tuner' | |
| adb shell pm uninstall --user 0 com.samsung.android.game.gametuner # Game Tuner | |
| echo 'AR Doodle' |
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=5 | |
| // Strategy Version 0.01 | |
| strategy('Resonance Range Strategy') | |
| IDEAL_TIMEFRAME = 15 | |
| TIME_FRAME_RATIO = timeframe.in_seconds() / 60 / IDEAL_TIMEFRAME | |
| ATR_DIFF_THRESHOLD = 0 // The range in which we decide to take trades or not | |
| // TODO Use this to adjust certain parameters for other timeframes | |
| // *** Settings |
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
| window.location.href = encodeURI(document.location.href) + '&as_sitesearch=reddit.com'; |
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
| /* Hide page breaks in google docs */ | |
| .kix-page-compact::before { | |
| border-top: 0px !important; | |
| } |
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
| window.location.href = encodeURI(document.location.href) + '&as_eq=amazon'; |
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
| var blog = window.location.hostname.match(/^([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9]+)\./)[1]; | |
| var postId = window.location.pathname.match(/\/(\d+)\/?/)[1]; | |
| window.location.href = `https://www.tumblr.com/blog/view/${blog}/${postId}`; |
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
| window.location.href = 'https://wa.me?text=' + encodeURI(document.location.href); |
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
| var metaDescription = document.querySelector('meta[name="description"]') || document.querySelector('meta[property="og:description"]'); | |
| var summary = [ | |
| document.title, | |
| metaDescription ? metaDescription['content'] : '', | |
| document.location.href | |
| ].join('\n\n'); | |
| alert(summary); |
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
| var link = '['+ document.title.replace("[","\\[").replace("]","\\]")+'|'+document.location.href+']'; | |
| if (prompt('Press Enter or Click Ok to copy.', link)) { | |
| var el = document.createElement('textarea'); | |
| el.value = link; | |
| el.setAttribute('readonly', ''); | |
| el.style.position = 'absolute'; | |
| el.style.left = '-9999px'; | |
| document.body.appendChild(el); | |
| document.getSelection().removeAllRanges(); | |
| el.select(); |
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
| var link = '['+ document.title.replace("[","\\[").replace("]","\\]")+'|'+document.location.href+']'; | |
| if (prompt('Press Enter twice to copy', link)) { | |
| var copy = function(e) { | |
| if (e.code == 'Enter') { | |
| var el = document.createElement('textarea'); | |
| el.value = link; | |
| el.setAttribute('readonly', ''); | |
| el.style.position = 'absolute'; | |
| el.style.left = '-9999px'; | |
| document.body.appendChild(el); |
NewerOlder