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
| pm uninstall --user 0 android.autoinstalls.config.samsung | |
| pm uninstall --user 0 com.LogiaGroup.LogiaDeck | |
| pm uninstall --user 0 com.android.carrierdefaultapp | |
| pm uninstall --user 0 com.android.chrome | |
| pm uninstall --user 0 com.android.dreams.basic | |
| pm uninstall --user 0 com.android.dreams.phototable | |
| pm uninstall --user 0 com.android.hotwordenrollment.okgoogle | |
| pm uninstall --user 0 com.android.hotwordenrollment.xgoogle | |
| pm uninstall --user 0 com.android.settings.intelligence | |
| pm uninstall --user 0 com.android.stk |
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
| find ./ -maxdepth 2 -type d -exec rsync --progress --remove-source-files -a '{}' ./ ';' |
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
| sudo killall nsurlsessiond && sudo killall cloudd && sudo killall bird | |
| brctl log -w |
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 Foundation | |
| // Copy and paste the bookmarks bit from your Safari Bookmarks.html file (between <DL><p> and </DL><p>) | |
| // Replace all the titles with THE_TITLE | |
| var bookmarksList = | |
| """ | |
| <DT><A HREF="https://apps.apple.com/jp/app/id966142320">THE_TITLE</A> | |
| """ | |
| var newString = "" |
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 <iostream> | |
| #include <string> | |
| // CAUTION: This code is provided AS-IS and should be considered an archive for reference purposes only. | |
| // The code may contain errors or bugs that may not be fixed. | |
| // Implementation of bubble sort to sort array | |
| void sortArray(int* arrayToBeSorted, int arraySize) { | |
| int currentIndex = 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
| #include <iostream> | |
| // CAUTION: This code is provided AS-IS and should be considered an archive for reference purposes only. | |
| // The code may contain errors or bugs that may not be fixed. | |
| void heapify(int* arrayToHeap, int heapUpperBound, int rootElementIndex) { | |
| int largestElementIndex = rootElementIndex; | |
| int leftNodeIndex = 2 * rootElementIndex + 1; | |
| int rightNodeIndex = 2 * rootElementIndex + 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
| import java.util.Scanner; | |
| // CAUTION: This code is provided AS-IS and should be considered an archive for reference purposes only. | |
| // The code may contain errors or bugs that may not be fixed. | |
| class LDES { | |
| public static void main(String[] args) { | |
| do { |
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 java.util.Arrays; | |
| import java.util.Base64; | |
| import java.util.Scanner; | |
| // CAUTION: This code is provided AS-IS and should be considered an archive for reference purposes only. | |
| // The code may contain errors or bugs that may not be fixed. | |
| class LDES8 { | |
| public static void main(String[] args) { |
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 java.math.BigInteger; | |
| // CAUTION: This code is provided AS-IS and should be considered an archive for reference purposes only. | |
| // The code may contain errors or bugs that may not be fixed. | |
| class TEA6TS { | |
| private static final long v = 0x0062891E; | |
| private static final int[] k = {0x42264529, 0x48404D63, 0x51655468, 0x576D5A71}; | |
| private static long iv = 0x7FFFFFFFFFFFFFFFL; |
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 java.math.BigInteger; | |
| // CAUTION: This code is provided AS-IS and should be considered an archive for reference purposes only. | |
| // The code may contain errors or bugs that may not be fixed. | |
| class TEA7TS { | |
| private static final long v = 0x0062891E; | |
| private static final int[] k = {0x42264529, 0x48404D63, 0x51655468, 0x576D5A71}; | |
| private static long iv = 0x7FFFFFFFFFFFFFFFL; |
OlderNewer