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
tests/autoclassify/test_classify_failures.py::TestFailureDetector | |
cannot collect test class 'TestFailureDetector' because it has a __init__ constructor | |
tests/e2e/test_jobs_loaded.py::TestApp | |
cannot collect test class 'TestApp' because it has a __init__ constructor | |
tests/log_parser/test_store_failure_lines.py::TestFailureLine | |
cannot collect test class 'TestFailureLine' because it has a __init__ constructor | |
tests/model/test_cycle_data.py::TestFailureLine |
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
<div class="div-hover"> | |
<!-- | |
href must contain the relative path to the location of the link. | |
if the link is https://atomic-dev-store.myshopify.com/pages/about-the-bombers-atomic-moto | |
the relative path is ./pages/about-the-bombers-atomic-moto | |
--> | |
<a href="./pages/about-the-bombers-atomic-moto" style="font-size: 35px;"> | |
about us | |
<img src="https://cdn.shopify.com/s/files/1/1566/3405/t/3/assets/target-150.png"> | |
</a> |
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
var a = 10; | |
var b = 15; | |
var c = a + b; | |
print(c); |
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
<?php | |
$data = get_data(); | |
$response = array(); | |
$response["invalid_customers"] = validate($data["validations"], $data["customers"]); | |
echo json_encode($response); | |
function validate($rules, $entries){ |
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
#include <iostream> | |
using namespace std; | |
int main () | |
{ | |
int taxrate; | |
double costmeal, tiprate; | |
int totalcost; | |
cout<<"what is the cost of your meal"; | |
cin>> costmeal; | |
cout<<" what is the tax rate"; |
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
process.stdin.resume(); | |
process.stdin.setEncoding('ascii'); | |
var input_stdin = ""; | |
var input_stdin_array = ""; | |
var input_currentline = 0; | |
process.stdin.on('data', function (data) { | |
input_stdin += data; | |
}); |
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
process.stdin.resume(); | |
process.stdin.setEncoding('ascii'); | |
var input_stdin = ""; | |
var input_stdin_array = ""; | |
var input_currentline = 0; | |
process.stdin.on('data', function (data) { | |
input_stdin += data; | |
}); |
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
#include <cstring> | |
#include <iostream> | |
#include <string> | |
using namespace std; | |
char input[80]; | |
int counter = 1; | |
string sInput; |
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
<html> | |
<head> | |
<title>Porsche Parter</title> | |
<link rel="shortcut icon" href="./static/genesis_logo.png"> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/css/materialize.min.css"> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.100.2/js/materialize.min.js"></script> |
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 React from "react"; | |
import Article from "./Article"; | |
import PropTypes from "prop-types"; | |
import Link from "next/link"; | |
import RedirectToLogin from "./RedirectToLogin"; | |
import { FadeInDown } from "./animations"; | |
class ArticleList extends React.Component { | |
static propTypes = { | |
articles: PropTypes.array |