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
use std::net::{SocketAddr, AddrParseError}; | |
use anyhow::{Context, Result}; | |
use structopt::StructOpt; | |
use http::uri::{PathAndQuery, InvalidUri}; | |
use simplelog::{LevelFilter, TermLogger}; | |
#[derive(StructOpt, Clone, Debug)] | |
#[structopt( | |
name = "site24x7_exporter", | |
author, |
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
https://github.com/svenstaro/dotfiles | |
https://github.com/lurst/setup | |
https://github.com/cutwater/dotfiles | |
https://github.com/brtmr/dotfiles | |
https://github.com/AntoineDupre/dotfiles |
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
#compdef hcloud | |
source <(hcloud completion zsh) |
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
pub fn register(user: Result<UserSerializer, Vec<Value>>, db: DB) -> Result<APIResponse, APIResponse> { | |
if user.is_err() { | |
let error = user.err().unwrap(); | |
return Ok(unprocessable_entity(error)); | |
} | |
let user_data = user.unwrap(); | |
} |
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
impl<'a, 'r> FromRequest<'a, 'r> for DB { | |
type Error = (); | |
fn from_request(request: &'a Request<'r>) -> request::Outcome<DB, ()> { | |
let pool = match <State<r2d2::Pool> as FromRequest>::from_request(request) { | |
Outcome::Success(pool) => pool, | |
Outcome::Failure(e) => return Outcome::Failure(e), | |
Outcome::Forward(_) => return Outcome::Forward(()), | |
}; |
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
*.o | |
*.x |
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 datetime | |
from sqlalchemy.ext.hybrid import hybrid_property | |
from flask import Flask | |
from flask_sqlalchemy import SQLAlchemy | |
app = Flask(__name__) | |
app.config['SQLALCHEMY_DATABASE_URI'] = 'postgresql://localhost' | |
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False | |
db = SQLAlchemy(app) |
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
struct Ray { | |
Ray(const glm::vec3 &origin, const glm::vec3 &direction) | |
: m_origin(origin), m_dir(direction), m_invdir(1.f / direction) { | |
} | |
glm::vec3 m_origin; | |
glm::vec3 m_dir; | |
glm::vec3 m_invdir; | |
}; |
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
inline bool intersect_ray_aabb(const glm::vec3 &origin, const glm::vec3 &dir, const AABB &aabb) { | |
float tmin, tmax, tymin, tymax, tzmin, tzmax; | |
glm::vec3 bounds[2]; | |
bounds[0] = aabb.min(); | |
bounds[1] = aabb.max(); | |
glm::vec3 invdir = 1.f / dir; | |
glm::i8vec3 sign; |
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
#ifndef TIMER_HPP | |
#define TIMER_HPP | |
#include <chrono> | |
class Timer { | |
public: | |
Timer() { | |
m_start = std::chrono::steady_clock::now(); | |
} |
NewerOlder