Discover gists
This file contains 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
\documentclass[12pt]{article} | |
\usepackage[utf8]{inputenc} | |
\usepackage[T1]{fontenc} | |
\usepackage[german]{babel} | |
\usepackage{amsmath,amsfonts,amssymb} | |
\usepackage{graphicx} | |
\usepackage{geometry} | |
\usepackage{multicol} | |
\usepackage{tikz} | |
\usepackage{pgfplots} |
This file contains 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
#range-container { | |
border: solid transparent; | |
position: relative; | |
width: 600px; | |
height: 48px; | |
input[type='range'] { | |
position: absolute; | |
top: 0; | |
bottom: 0; |
This file contains 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
Pipeline still running ... | |
PipelineRun is still running: Tasks Completed: 25 (Failed: 0, Cancelled 0), Incomplete: 2, Skipped: 5 | |
[set-github-started-label : post-comment] + EXTRA_ARGS= | |
[set-github-started-label : post-comment] + [[ ! -z operator-release-pipeline/started ]] | |
[set-github-started-label : post-comment] Editing GitHub labels to PR https://github.com/redhat-openshift-ecosystem/certified-operators/pull/5144 | |
[set-github-started-label : post-comment] + EXTRA_ARGS+=' --add-labels operator-release-pipeline/started' | |
[set-github-started-label : post-comment] + [[ ! -z pipeline/trigger-release ]] | |
[set-github-started-label : post-comment] + EXTRA_ARGS+=' --remove-labels pipeline/trigger-release' | |
[set-github-started-label : post-comment] + [[ true == \t\r\u\e ]] | |
[set-github-started-label : post-comment] + EXTRA_ARGS+=' --remove-matching-namespace-labels' |
This file contains 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
Redirect to /build/tmp.0OcRUpSNYZ and /build/tmp.rvvwmJWPlk | |
Tree base: | |
6b46e067bcd0 ("Adding CI files") | |
Building the whole tree with the patch | |
error: | |
real 12m56.867s | |
user 500m46.017s |
This file contains 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
(ns circle.core | |
(:gen-class) | |
(:import (javax.swing JFrame JLabel))) | |
(defn draw-circle [g x y r] | |
(let [d (* r 2)] | |
(.setColor g java.awt.Color/BLACK) | |
(.fillOval g (- x r) (- y r) d d))) | |
(defn swing-demo |
This file contains 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
median_blurred = cv2.medianBlur(image, 5) |
This file contains 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> | |
int main() { | |
double grade; | |
std::cout << "Let's Measure if you have a Fever in US Unit\n"; | |
std::cout << "How Bad is it (°F)?:"; | |
std::cin >> grade; | |
if (grade > 100) { |
This file contains 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
# pip install vedastro | |
# pip install pandas | |
# pip install geopy | |
# pip install pytz | |
# pip install timezonefinder | |
# pip install pprint | |
from pprint import pprint | |
import pandas as pd |
This file contains 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="happy-valentines"> | |
<div class="valentines-day-card"> | |
<div class="clouds"></div> | |
<div class="hearts"> | |
<div class="heartOne"> | |
<div class="left-side"></div> | |
<div class="right-side"></div> | |
</div> | |
<div class="heartTwo"> | |
<div class="left-side"></div> |