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
async function handleRequest(request) { | |
let url = new URL(request.url) | |
// make sure you set B2_BUCKET_NAME as an environment variable | |
let filename = url.pathname.substring(url.pathname.lastIndexOf('/')+1); | |
let escaped_name = encodeURIComponent(filename) | |
let escaped_path = url.pathname.replace(filename, escaped_name) |
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
myApp.factory('cache', function(){ | |
return{}; | |
}); | |
--- | |
controller('benefitVerification', ['$scope', 'cache', '$location', function($scope, cache, $location) { | |
cache.patient = { | |
firstName: '', | |
lastName: '', | |
middleInitial: '', | |
SSN: '', |
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
### Keybase proof | |
I hereby claim: | |
* I am ajoy39 on github. | |
* I am ajoy39 (https://keybase.io/ajoy39) on keybase. | |
* I have a public key whose fingerprint is DA17 BFAE 318A 2502 D4E0 64EE 5EC6 F91D 683E A86B | |
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
Ingredients | |
1 Chicken Breast or your choice of protien | |
1 Can black beans | |
1 Green Pepper | |
1/2 an Onion, finely chopped | |
Lettuce or Spinach | |
Salsa | |
Salt | |
Pepper | |
Garlic |
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
#Give a random number for the computer to guess. | |
num_input=int(input("Please enter a number for the computer to guess: ")) | |
while num_input < 1 or num_input > 100: | |
if num_input > 100: | |
print("Please enter a number less than or equal to 100.") | |
if num_input < 1: |