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
keytool -genkey -v -keystore ~/.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000 |
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
target/ | |
lib_managed/ | |
src_managed/ | |
project/boot/ | |
project/build/target/ | |
project/plugins/target/ | |
project/plugins/lib_managed/ | |
project/plugins/src_managed/ |
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
10 REM anagrams | |
20 INPUT L$(1),L$(2),L$(3),L$(4) | |
30 PRINT | |
40 FOR I1=1 TO 4 | |
50 FOR I2=1 TO 4 | |
60 IF I2=I1 THEN 130 | |
70 FOR I3=1 TO 4 | |
80 IF I3=I1 THEN 120 | |
90 IF I3=I2 THEN 120 | |
100 LET I4=10-(I1+I2+I3) |
NewerOlder