i = 6
while i < = 5 :
print(i)
i++
print(i)
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.Hashtable; | |
| import java.util.Set; | |
| public class Anagram { | |
| static String string1 = "aab"; | |
| static String string2 = "aba"; | |
| static String string3 = "cab"; | |
| static String string4 = "kjfdhskdhfksdhk"; |
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
| package main | |
| import ( | |
| "fmt" | |
| ) | |
| const ( | |
| string1 = "aab" | |
| string2 = "aba" | |
| string3 = "cab" |
I hereby claim:
- I am kristofer on github.
- I am kryounger (https://keybase.io/kryounger) on keybase.
- I have a public key ASCw6hmiJJrNxHlHcEPrwWHyDNRjXYOpw5e9i6V-ZGBIXgo
To claim this, I am signing this object:
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
| // | |
| // KeychainPasscodeRepository.swift | |
| // PasscodeLock | |
| // a simple example of a keychain based repository | |
| // https://github.com/yankodimitrov/SwiftPasscodeLock | |
| // uses this fine work for easy access to Keychain | |
| // https://cocoapods.org/pods/KeychainAccess | |
| // written by https://github.com/kristofer |
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
| Verifying that +kristofer is my blockchain ID. https://onename.com/kristofer |
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
| //After way, way, way too much trial and error, I finally found a way to create the Share Extension for documents that I was seeking. | |
| // It's not obvious what the NSPredicate should be, but then harder was a lack of example of how to actually use the predicate | |
| // within the Info.plist file of an iOS (8.2+) share extension | |
| <key>NSExtension</key> | |
| <dict> | |
| <key>NSExtensionAttributes</key> | |
| <dict> | |
| <key>NSExtensionActivationRule</key> | |
| <string>SUBQUERY ( |
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
| # python math | |
| # at a terminal prompt, type: python pythonmath.py | |
| # on either the Pi or a Mac. | |
| print "Integer: 9 / 5 is", 9 / 5 | |
| print "Float: 9.0 / 5.0 is", 9.0 / 5.0 | |
| print "Integer: 2 / 3 is", 2 / 3 | |
| print "Float: 2.0 / 3.0 is", 2.0 / 3.0 |