repo_id stringclasses 208
values | file_path stringlengths 31 190 | content stringlengths 1 2.65M | __index_level_0__ int64 0 0 |
|---|---|---|---|
qxf2_public_repos/qxf2-survey | qxf2_public_repos/qxf2-survey/awareness_score/awareness_score.py | """
This is a script to analyze how aware employees are about taking and giving help
There are two behaviors:
a) taking help
b) giving help
Intuition:
If your awareness score for a behavior is
a) more than 100, you think you are doing more of that than other people report
b) less than 100, you are doing more ... | 0 |
qxf2_public_repos/qxf2-survey | qxf2_public_repos/qxf2-survey/virtualized_employees_graphql_server/mock-graphql-server.js | const { ApolloServer } = require('@apollo/server');
const { startStandaloneServer } = require('@apollo/server/standalone');
const { addMocksToSchema } = require ('@graphql-tools/mock');
const { makeExecutableSchema } = require('@graphql-tools/schema');
const { GraphQLError } = require('graphql');
const fs = require('f... | 0 |
qxf2_public_repos/qxf2-survey | qxf2_public_repos/qxf2-survey/virtualized_employees_graphql_server/package-lock.json | {
"name": "virtualize_graphql",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "virtualize_graphql",
"version": "1.0.0",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.3.3",
"@graphql-tools/mock": "^8.7.18",
... | 0 |
qxf2_public_repos/qxf2-survey | qxf2_public_repos/qxf2-survey/virtualized_employees_graphql_server/package.json | {
"name": "virtualize_graphql",
"version": "1.0.0",
"description": "",
"main": "apollo_mock.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@apollo/server": "^4.3.3",
"@graphql-tools/mock": "^8.... | 0 |
qxf2_public_repos/qxf2-survey | qxf2_public_repos/qxf2-survey/virtualized_employees_graphql_server/employee-data.json | [
{
"email": "generoustaker@qxf2.com",
"employeeId": "2",
"dateJoined": "01-Apr-1970",
"isActive": "Y",
"blogAuthorName": "user1",
"firstname": "Generous",
"lastname": "Taker"
},
{
"email": "inactive_user@qxf2.com",
"employeeId": "3",
... | 0 |
qxf2_public_repos | qxf2_public_repos/rust-selenium-beginners/Cargo.toml | [package]
name = "rust-beginners"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1", features = ["full"] }
thirtyfour = { version = "0.31.0", features = ["component"] }
scraper = "0.15.0"
[[test]... | 0 |
qxf2_public_repos | qxf2_public_repos/rust-selenium-beginners/Cargo.lock | # This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "aho-corasick"
version = "0.7.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
dependencies = [
"m... | 0 |
qxf2_public_repos | qxf2_public_repos/rust-selenium-beginners/README.md | # Learn Selenium using examples for beginners
Selenium lets you control the browser through a script. Selenium lets you interact with browsers in a manner similar to real users interacting with browsers. We present small code samples that help you learn Selenium from scratch using Rust with https://qxf2.com/Selenium-tu... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/tests/01_url_navigation.rs | /*
Learn to navigate to a URL using Selenium in Rust
DISCLAIMER: This code is aimed at Rust BEGINNERS. This is not how Qxf2 engineers write rust code at clients.
AUTHOR: Ajitava Deb
SCOPE:
1) Launch Chrome Driver
2) Navigate to Qxf2 Tutorial page
3) Check the page title
4) Close the browser
*/
use thirtyfour::prelud... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/tests/10_table_text.rs | /*
Learn to parse the text within each cell of a table in Rust
DISCLAIMER: This code is aimed at Rust BEGINNERS. This is not how Qxf2 engineers write rust code at clients.
AUTHOR: Ajitava Deb
SCOPE:
1) Launch Chrome driver
2) Navigate to Qxf2 Tutorial page
3) Get all the fields from the table
4) Close the browser
*/
... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/tests/03_set_dropdown.rs | /*
Learn to set dropdowns with Selenium in Rust
DISCLAIMER: This code is aimed at Rust BEGINNERS. This is not how Qxf2 engineers write rust code at clients.
AUTHOR: Ajitava Deb
SCOPE:
1) Launch Chrome Driver
2) Navigate to Qxf2 Tutorial page
3) Set Gender to Male in the Example Form
4) Close the browser
*/
use thirt... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/tests/11_consolidated_test.rs | /*
Selenium script that performs several common actions like:
click button, select dropdown, enable checkbox, set text, get text from table
DISCLAIMER: This code is aimed at Rust BEGINNERS. This is not how Qxf2 engineers write rust code at clients.
AUTHOR: Ajitava Deb
SCOPE:
1) Launch Chrome driver
2) Navigate to Qx... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/tests/07_form_submit_success.rs | /*
Learn to fill and submit a form with Selenium in Rust
DISCLAIMER: This code is aimed at Rust BEGINNERS. This is not how Qxf2 engineers write rust code at clients.
AUTHOR: Ajitava Deb
SCOPE:
1) Launch Chrome driver
2) Navigate to Qxf2 Tutorial page
3) Fill all the text field in Example form
4) Click on Click me! bu... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/tests/09_count_rows.rs | /*
Learn to count the rows in a table using Selenium in Rust
DISCLAIMER: This code is aimed at Rust BEGINNERS. This is not how Qxf2 engineers write rust code at clients.
AUTHOR: Ajitava Deb
SCOPE:
1) Launch Chrome driver
2) Navigate to Qxf2 Tutorial page
3) Find the no of rows in the Example tabel
4) Close the browse... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/tests/08_hover.rs | /*
Learn to hover over elements using Selenium in Rust
DISCLAIMER: This code is aimed at Rust BEGINNERS. This is not how Qxf2 engineers write rust code at clients.
AUTHOR: Ajitava Deb
SCOPE:
1) Launch Chrome driver
2) Navigate to Qxf2 Tutorial page
3) Click on Menu icon
4) Hover over Resource and GUI automation and c... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/tests/05_click_button.rs | /*
Learn to click a button with Selenium in Rust
DISCLAIMER: This code is aimed at Rust BEGINNERS. This is not how Qxf2 engineers write rust code at clients.
AUTHOR: Ajitava Deb
SCOPE:
1) Launch Chrome driver
2) Navigate to Qxf2 Tutorial page
3) Find the Click me! button and click on it
4) Close the driver
*/
use th... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/tests/02_fill_text.rs | /*
Learn to fill text fields with Selenium in Rust
DISCLAIMER: This code is aimed at Rust BEGINNERS. This is not how Qxf2 engineers write rust code at clients.
AUTHOR: Ajitava Deb
SCOPE:
1) Launch Firefox Driver
2) Navigate to Qxf2 Tutorial page
3) Find elements using id, xpath, xpath without id
4) Fill name, email a... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/tests/04_enable_checkbox.rs | /*
Learn to select a checkbox using Selenium in Rust
DISCLAIMER: This code is aimed at Rust BEGINNERS. This is not how Qxf2 engineers write rust code at clients.
AUTHOR: Ajitava Deb
SCOPE:
1) Launch Chrome Driver
2) Navigate to Qxf2 Tutorial page
3) Find the Checkbox element in the Example form and enable it
4) Close... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/tests/06_form_validation.rs | /*
Check for the presence of absence of page elements
DISCLAIMER: This code is aimed at Rust BEGINNERS. This is not how Qxf2 engineers write rust code at clients.
AUTHOR: Ajitava Deb
SCOPE:
1) Launch Chrome driver
2) Navigate to Qxf2 Tutorial page
3) Find the Click me! button and click on it
4) Check for the validati... | 0 |
qxf2_public_repos/rust-selenium-beginners | qxf2_public_repos/rust-selenium-beginners/src/main.rs | fn main() {
println!("The application code resides here");
}
| 0 |
qxf2_public_repos | qxf2_public_repos/flask-ses-form/LICENSE | MIT License
Copyright (c) 2020 qxf2
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, ... | 0 |
qxf2_public_repos | qxf2_public_repos/scratchpad/LICENSE | MIT License
Copyright (c) 2019 qxf2
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, ... | 0 |
qxf2_public_repos | qxf2_public_repos/scratchpad/README.md | # scratchpad
This is a collection of group code exercises that Qxf2 does every two weeks. We do not expect this repo to be useful to anyone outside of Qxf2
## How to use this repo (for Qxf2 employees)
a. If you are leading the Tuesday 14:00 meeting:
1. Fork this repo
2. Create a directory for yourself in the roo... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/new-hire-onboariding/README.md | 1. How did you know you were on the right track?
2. How did you know you were on the wrong track?
3. What did feel through the onboarding?
Rohini:
1. Comments on Jira tickets. Discussions on Skype based on doubts.
2. Discussion on Skype.
3. Was not hands on previous company. Felt like I was not techie. It went off w... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/new-hire-rules/new_hire_rules.md | This document has notes on our group discussion about how to change rules for new employees. Specifically, this document outlines ideas about:
1. What rules/conditions should we add for our next new hire?
> E.g.: Work on alternate Saturdays for the first 2 years
2. What should we do with the extra bandwidth?
> E.g.: ... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/improve-code-standards/README.md | This document contains notes on an exercise we did. It helped in training folks to:
a) produce better first versions of Python code
b) Understand how to code review files submitted
### Background
Our coding standards have taken a hit. I am noticing that people do a good job when contributing to our open source ini... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/jul-2019-internship-review/feedback.md | ### Feedback:
* RohanD
- [Mixed] Pairing work, GD was good ... keeping us busy
- [Change] Cancel internal pairing when internship
- [Good] Interacted more with interns compared with the previous internships
- [Bad] MakeMeWork people are jumping on things
* Indira
- [Good] Batch is good
- [Goo... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/asyncio-tutorial/README.md | This directory contains some notes from a group discussion session on asyncio. This is not meant to be readable to anyone who did not attend the session.
## Goals for the session include:
a) Ability to scan (heading + code + diagrams) in a document
b) Active design of experiments to test methods
c) Work based on di... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/asyncio-tutorial/sample_asyncio.py | """
This script will be used to show examples of using asyncio as part of a group discussion
Goals for the session include:
a) Ability to scan (heading + code + diagrams) in a document
b) Active design of experiments to test methods
c) Work based on differences
d) Look to code as primary way of understanding concepts
... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/junior-training-website/junior_training.txt | Website
Qxf2 Training
* Landing page
> Headlines:
- Fed up with classroom training?
- [SELECTED] No more classroom training!
Hands on training with real applications. Learn to test software, get familiar with modern tools and work with emerging technologies.
... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/20-aug-rd-contribution/README.md | # How can you continue contributing to R&D at Qxf2 when you are on a client?
Today is going to be a simple group disussion. I want to collect ideas from all of you on how you can contribute to R&D even when you are on a client.
The problem I want to solve is twofold:
a. People see R&D and client work as different w... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/employee-chooser/README.md | This is a scratch script to choose employees in random order and then delete the employee from the list
## Notes
1. To run, simply do `python choose_employee.py`
2. To stop a timer and go to the next employee, press Ctrl+C
3. Before you start the session, make sure to update the `EMPLOYEES` and `TIME_PER_PERSON` vari... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/employee-chooser/choose_employee.py | """
This is a scratch script to choose employees in random order and then delete the employee from the list
To run, simply do `python choose_employee.py`
To stop a timer and go to the next employee, press Ctrl+C
"""
import random
import sys
import time
TIME_PER_PERSON = 120 #in seconds
EMPLOYEES = ['arun',\
'ra... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/github-search/readme.md | This session was to show the following:
a) how to approach a problem that needs new tooling
b) how to use PyGithub to find the stars in a project
### SETUP
1. `pip install PyGithub`
2. Create a Github token with only read access at https://github.com/settings/tokens
3. Create a github_token.py and set a variable ... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/github-search/sample_github_search.py | """
This is a sample script to connect to GitHub search API and get details about repositories
"""
from github import Github
import github_token as access
def get_repo_stars(repository):
"Return the number of stars a repo contains"
github_obj = Github(access.TOKEN)
repo = github_obj.get_repo(repository)
... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/internship-feedback-nov-2019/readme.md | # Feedback about the Nov-2019 internship.
This document contains feedback about the Nov-2019 internship.
----
## Feedback
### Raji:
a) N/A
b) N/A
c) Collect more data about jobs from interns
No survey system for interns. During and after internship. Are they placed? Are they applying? This will help us across and... | 0 |
qxf2_public_repos/scratchpad | qxf2_public_repos/scratchpad/error-reading/readme.md | ### Goal
Let's help people read errors quicker!
### Background
Many good engineers are able to process error logs and error messages at speeds much faster than beginners. It's almost as though they have trained their eye to do two things:
a) focus on what is important
b) ignore what is not important
### Your task:
... | 0 |
qxf2_public_repos | qxf2_public_repos/training-senior-qa/LICENSE | MIT License
Copyright (c) 2018
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, subl... | 0 |
qxf2_public_repos | qxf2_public_repos/training-senior-qa/requirements.txt | django>=2.2.13
| 0 |
qxf2_public_repos | qxf2_public_repos/training-senior-qa/README.md | # training-senior-qa
Qxf2 hackathon project. Develop the necessary application, exercises, infrastructure, slide shows, write-ups, etc. for retraining senior QA engineers
| 0 |
qxf2_public_repos/training-senior-qa | qxf2_public_repos/training-senior-qa/qxf2trainer/manage.py | #!/usr/bin/env python
import os
import sys
if __name__ == '__main__':
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'qxf2trainer.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. ... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/qxf2trainer/settings.py | """
Django settings for qxf2trainer project.
Generated by 'django-admin startproject' using Django 2.1.1.
For more information on this file, see
https://docs.djangoproject.com/en/2.1/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/2.1/ref/settings/
"""
import o... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/qxf2trainer/urls.py | """qxf2trainer URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/2.1/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-b... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/qxf2trainer/views.py | from django.shortcuts import render
from django.http import HttpResponse
from django.http import HttpResponseRedirect
# Create your views here.
def index(request):
if request.user.is_authenticated:
return HttpResponseRedirect("tutorials")
else:
return HttpResponseRedirect("accounts/login") | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/qxf2trainer/wsgi.py | """
WSGI config for qxf2trainer project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
https://docs.djangoproject.com/en/2.1/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_S... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/python_setup/models.py | from django.db import models
# Create your models here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/python_setup/apps.py | from django.apps import AppConfig
class PythonSetupConfig(AppConfig):
name = 'python_setup'
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/python_setup/admin.py | from django.contrib import admin
# Register your models here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/python_setup/tests.py | from django.test import TestCase
# Create your tests here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/python_setup/urls.py | #URLs configuration file for python setup
from django.urls import path
from . import views
urlpatterns = [
path('before-you-begin', views.beforeyoubegin, name='beforeyoubegin'),
path('what-to-expect', views.whattoexpect, name='whattoexpect'),
path('tutorial', views.install_python, name='tutorial'),
pat... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/python_setup/views.py | from django.shortcuts import render
from django.http import HttpResponse
from django.contrib.auth.decorators import login_required
from django.template import loader
# Create your views here.
@login_required
def beforeyoubegin(request):
template = loader.get_template('python_setup/before-you-begin.html')
retur... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/vscode_setup/models.py | from django.db import models
# Create your models here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/vscode_setup/apps.py | from django.apps import AppConfig
class VscodeSetupConfig(AppConfig):
name = 'vscode_setup'
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/vscode_setup/admin.py | from django.contrib import admin
# Register your models here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/vscode_setup/tests.py | from django.test import TestCase
# Create your tests here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/vscode_setup/urls.py | from django.urls import path
from . import views
urlpatterns = [
path('before-you-begin', views.beforeyoubegin, name='beforeyoubegin'),
path('what-to-expect', views.whattoexpect, name='whattoexpect'),
path('tutorial', views.install_python, name='tutorial'),
path('did-you-complete', views.didyoucomplete... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/vscode_setup/views.py | from django.shortcuts import render
from django.http import HttpResponse
from django.contrib.auth.decorators import login_required
from django.template import loader
# Create your views here.
@login_required
def beforeyoubegin(request):
template = loader.get_template('vscode_setup/before-you-begin.html')
retur... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/home.html | <!-- templates/home.html -->
{% extends 'base.html' %} {% block title %}Qxf2 Trainer{% endblock %} {% block content %} {% if user.is_authenticated %} Hi {{ user.username }}!
<p><a href="{% url 'logout' %}">logout</a></p>
{% else %}
<p>You are not logged in</p>
<a href="{% url 'login' %}">login</a> {% endif %} {% endblo... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/base.html | <!-- templates/base.html -->
<!DOCTYPE html>
<html>
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-75BKR2NTBY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', ... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/registration/login.html | <!-- templates/registration/login.html -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>{% block title %}Qxf2 Trainer{% endblock %}</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet">
<link href="//netdna.bootstrapcdn.com/font-awesome/4.... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/python_setup/before-you-begin.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Before you begin{% endblock %}
{% block content %}
<p class="text-justify">Python is going to be our language of choice through this training journey. We chose it because we like it and it is easy to pick up compared to a lot of other languages. Given how m... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/python_setup/tutorial.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Tutorial{% endblock %}
{% block content %}
<p class="text-justify">We expect this exercise to take you somewhere between 15-minutes to 2 hours. If you take more
than two hours, please post what you tried along wtih error messages to our skype channel.</p>
... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/python_setup/once-you-complete.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Once you complete{% endblock %}
{% block content %}
<p class="top-space text-justify">Anytime you score a win, take a moment to reflect on what happened. Think about what you did, the problems you faced and challenge yourself to try and verbalize what you did ... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/python_setup/what-to-expect.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: What to expect{% endblock %}
{% block content %}
<h3 class="thin-text top-space">
<img src="https://qxf2.com/assets/img/what_to_expect.png" width="60" height="60">
What to expect
</h3>
<p>At the end of this mini-tutorial, you can expect to have setup ... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/python_setup/did-you-complete.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Did you finish?{% endblock %}
{% block content %}
<h3 class="thin-text">
<img src="https://qxf2.com/assets/img/did_you_finish.png" width="60" height="60">
Did you finish?
</h3>
<div class="radio top-space">
<label><input type="radio" name="optradi... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/vscode_setup/before-you-begin.html | {% extends 'base.html' %} {% block title %}Qxf2 Trainer: Before you begin{% endblock %} {% block content %}
<p class="text-justify">We will use Visual Studio Code for writing our code. Think of it as your favorite notepad .... except optimized to write code. It makes it easy to read code, search for code, has auto-comp... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/vscode_setup/tutorial.html | {% extends 'base.html' %} {% block title %}Qxf2 Trainer: Tutorial{% endblock %} {% block content %}
<p class="text-justify">We expect this exercise to take you somewhere between 15-minutes to 2 hours. If you take more
than two hours, please post what you tried along wtih error messages to our skpye channel.</p>
<... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/vscode_setup/once-you-complete.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Once you complete{% endblock %}
{% block content %}
<p class="top-space text-justify">Anytime you score a win, take a moment to reflect on what happened. Think about what you did, the problems you faced and challenge yourself to try and verbalize what you did ... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/vscode_setup/what-to-expect.html | {% extends 'base.html' %} {% block title %}Qxf2 Trainer: What to expect{% endblock %} {% block content %}
<h3 class="thin-text top-space">
<img src="https://qxf2.com/assets/img/what_to_expect.png" width="60" height="60"> What to expect
</h3>
<p>At the end of this mini-tutorial, you can expect to have Visual Studi... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/vscode_setup/did-you-complete.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Did you finish?{% endblock %}
{% block content %}
<h3 class="thin-text">
<img src="https://qxf2.com/assets/img/did_you_finish.png" width="60" height="60">
Did you finish?
</h3>
<div class="radio top-space">
<label><input type="radio" name="optradi... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/tutorials/index.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Tutorial page{% endblock %}
{% block content %}
<p class="text-justify">Welcome to Qxf2 Trainer - this screen is the start of your journey towards becoming a more
technical tester. This training program has been created by testers for other testers. We have... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/git_bash_setup/before-you-begin.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Before you begin{% endblock %}
{% block content %}
<p class="text-justify">Git is a version control tool. You will be using it quite a lot at Qxf2. Please install git on
your local machine.</p>
<h3 class="thin-text top-space">
<img src="https://qxf2.com... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/git_bash_setup/tutorial.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Tutorial{% endblock %}
{% block content %}
<p class="text-justify">We expect this exercise to take you somewhere between 15-minutes to 1 hours. If you take more
than one hour, please post what you tried along wtih error messages to our skype channel.</p>
... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/git_bash_setup/once-you-complete.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Once you complete{% endblock %}
{% block content %}
<p class="top-space text-justify">Anytime you score a win, take a moment to reflect on what happened. Think about what
you did, the problems you faced and challenge yourself to try and verbalize what you ... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/git_bash_setup/what-to-expect.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: What to expect{% endblock %}
{% block content %}
<h3 class="thin-text top-space">
<img src="https://qxf2.com/assets/img/what_to_expect.png" width="60" height="60">
What to expect
</h3>
<p>At the end of this mini-tutorial, you can expect to have setup ... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/git_bash_setup/did-you-complete.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Did you finish?{% endblock %}
{% block content %}
<h3 class="thin-text">
<img src="https://qxf2.com/assets/img/did_you_finish.png" width="60" height="60">
Did you finish?
</h3>
<div class="radio top-space">
<label><input type="radio" name="optradi... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/chrome_driver_setup/before-you-begin.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Before you begin{% endblock %}
{% block content %}
<p class="text-justify">Chrome is going to be our Driver of choice through this training journey. We choose it because
we like it and it would be default with many systems/users. Given how much we will use ... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/chrome_driver_setup/tutorial.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Tutorial{% endblock %}
{% block content %}
<p class="text-justify">We expect this exercise to take you somewhere between 15-minutes to 2 hours. If you take more
than two hours, please post what you tried along wtih error messages to our Skpye Channel.</p>
... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/chrome_driver_setup/once-you-complete.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Once you complete{% endblock %}
{% block content %}
<form action="/tutorials">
<p class="top-space text-justify">Anytime you score a win, take a moment to reflect on what happened. Think about
what
you did, the problems you faced and challen... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/chrome_driver_setup/what-to-expect.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: What to expect{% endblock %}
{% block content %}
<h3 class="thin-text top-space">
<img src="https://qxf2.com/assets/img/what_to_expect.png" width="60" height="60">
What to expect
</h3>
<p>At the end of this mini-tutorial, you can expect to have setup ... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/templates | qxf2_public_repos/training-senior-qa/qxf2trainer/templates/chrome_driver_setup/did-you-complete.html | {% extends 'base.html' %}
{% block title %}Qxf2 Trainer: Did you finish?{% endblock %}
{% block content %}
<form action="once-you-complete">
<h3 class="thin-text">
<img src="https://qxf2.com/assets/img/did_you_finish.png" width="60" height="60">
Did you finish?
</h3>
<div class="radio top... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/tutorials/models.py | from django.db import models
# Create your models here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/tutorials/apps.py | from django.apps import AppConfig
class TutorialsConfig(AppConfig):
name = 'tutorials'
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/tutorials/admin.py | from django.contrib import admin
# Register your models here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/tutorials/tests.py | from django.test import TestCase
# Create your tests here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/tutorials/urls.py | #URLs configuration file for tutorials
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='tutorialshome'),
]
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/tutorials/views.py | from django.shortcuts import render
from django.http import HttpResponse
from django.contrib.auth.decorators import login_required
from django.template import loader
# Create your views here.
@login_required
def index(request):
template = loader.get_template('tutorials/index.html')
return HttpResponse(template... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/git_bash_setup/models.py | from django.db import models
# Create your models here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/git_bash_setup/apps.py | from django.apps import AppConfig
class GitBashSetupConfig(AppConfig):
name = 'git_bash_setup'
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/git_bash_setup/admin.py | from django.contrib import admin
# Register your models here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/git_bash_setup/tests.py | from django.test import TestCase
# Create your tests here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/git_bash_setup/urls.py | # URLs configuration file for python setup
from django.urls import path
from . import views
urlpatterns = [
path('before-you-begin', views.beforeyoubegin, name='beforeyoubegin'),
path('what-to-expect', views.whattoexpect, name='whattoexpect'),
path('tutorial', views.install_gitbash, name='tutorial'),
p... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/git_bash_setup/views.py |
from django.shortcuts import render
from django.http import HttpResponse
from django.contrib.auth.decorators import login_required
from django.template import loader
# Create your views here.
@login_required
def beforeyoubegin(request):
template = loader.get_template('git_bash_setup/before-you-begin.html')
... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/chrome_driver_setup/models.py | from django.db import models
from django.utils import timezone
# Create your models here.
class feedback(models.Model):
user = models.CharField(max_length=200)
submit_date = models.DateTimeField
vote = models.CharField(max_length=200)
class comment(models.Model):
user = models.ForeignKey(feedback, o... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/chrome_driver_setup/apps.py | from django.apps import AppConfig
class PythonSetupConfig(AppConfig):
name = 'chrome_driver_setup'
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/chrome_driver_setup/admin.py | from django.contrib import admin
# Register your models here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/chrome_driver_setup/tests.py | from django.test import TestCase
# Create your tests here.
| 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/chrome_driver_setup/urls.py | # URLs configuration file for python setup
from django.urls import path
from . import views
urlpatterns = [
path('before-you-begin', views.beforeyoubegin, name='beforeyoubegin'),
path('what-to-expect', views.whattoexpect, name='whattoexpect'),
path('tutorial', views.install_chrome_driver, name='tutorial'),... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer | qxf2_public_repos/training-senior-qa/qxf2trainer/chrome_driver_setup/views.py | from django.shortcuts import render
from django.http import HttpResponse
from django.contrib.auth.decorators import login_required
from django.template import loader
# Create your views here.
@login_required
def beforeyoubegin(request):
template = loader.get_template('chrome_driver_setup/before-you-begin.html')
... | 0 |
qxf2_public_repos/training-senior-qa/qxf2trainer/chrome_driver_setup | qxf2_public_repos/training-senior-qa/qxf2trainer/chrome_driver_setup/migrations/0001_initial.py | # Generated by Django 2.1.1 on 2020-07-02 12:20
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='comment',
fields=[
('id', models.AutoField(... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.