I hereby claim:
- I am usrrname on github.
- I am jenc (https://keybase.io/jenc) on keybase.
- I have a public key ASAK7sMRMw1jcb09j8bHzMnwyXToNAobumcjX9mAP8qJIwo
To claim this, I am signing this object:
{ | |
"basics": { | |
"name": "Thomas Edison", | |
"label": "Inventor and Businessman", | |
"picture": "https://example.com/photo.jpg", | |
"email": "[email protected]", | |
"phone": "(123) 456-7890", | |
"website": "https://thomasedison.com", | |
"summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
"location": { |
I hereby claim:
To claim this, I am signing this object:
trigger: | |
- main | |
- feature/R20-22-azure-piplines | |
variables: | |
- group: radius-angular | |
- name: projectName | |
value: $[variables.PROJECT_NAME] | |
- name: feedName | |
value: $[variables.FEED_NAME] |
#!/usr/bin/env bash | |
echo "registry=https://pkgs.dev.azure.com/${ORG_NAME}/_packaging/${PACKAGE_NAME}/npm/registry/ | |
always-auth=true" >> .npmrc |
const reverseWords1 = (string) => { | |
let newString = ' '; | |
let items = string.split(' '); | |
let results = ''; | |
for (let i=items.length; i>=0; i--) { | |
results += items[i] + newString; | |
String(results) | |
} | |
return results; |
<!doctype html> | |
<html> | |
<head> | |
<style> | |
*{ | |
font-family:'Open Sans', Arial, Sans-serif; | |
} | |
body{ | |
padding:1em; | |
} |