We need to create a virtual env for our app to run in: More Here Run this command in whatever folder you want to create your venv folder
python -m venv ./venv
We need to create a virtual env for our app to run in: More Here Run this command in whatever folder you want to create your venv folder
python -m venv ./venv
/* | |
<?php | |
// THE FOLLOWING IMPLEMENTATION CAN BE USED FOR VARIOUS APIs. THIS WAS TESTED SUCCESSFULLY ON THE pingdom.com API | |
$email = "[email protected]"; | |
$passwd = 'password'; | |
$api_key = "API_KEY"; | |
$curl = curl_init(); |
<q-page padding class="row justify-center">
<div class="row justify-center full-height full-width text-center">
<q-scroll-area style="width: 100%; height: 500px; margin-bottom: 80px; padding:20px;">
<q-chat-message
label='Sunday, 19th'
/>
<q-chat-message
name="me"
/* | |
This example shows how you can use your data structure as a basis for | |
your Firebase security rules to implement role-based security. We store | |
each user by their Twitter uid, and use the following simplistic approach | |
for user roles: | |
0 - GUEST | |
10 - USER | |
20 - MODERATOR |
Lifecycle Method () {
this.increment()
}
methods: {
increment () {
this.count += 1
}
},
Lifecycle Method: () => {
this.increment()
}
#add 'node_modules' to .gitignore file | |
git rm -r --cached node_modules | |
git commit -m 'Remove the now ignored directory node_modules' | |
git push origin master |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width"> | |
<title>JS Bin</title> | |
<script src="https://wzrd.in/standalone/expect@latest"></script> | |
</head> | |
<body> |
If you haven't already set your NPM author info, now you should:
npm set init.author.name "Your Name"
npm set init.author.email "[email protected]"
npm set init.author.url "http://yourblog.com"
npm adduser
//SavingsAccount.java - Jimmy Kurian | |
public class SavingsAccount | |
{ | |
private double balance; | |
private double interest; | |
public SavingsAccount() | |
{ | |
balance = 0; |