I hereby claim:
- I am frozendroid on github.
- I am frozendroid (https://keybase.io/frozendroid) on keybase.
- I have a public key whose fingerprint is 7196 8557 4CC7 FA93 1345 6BE7 BEE0 6316 556D 9571
To claim this, I am signing this object:
;Hidden area mesh fix for G2, may work on other headsets | |
enableHiddenMeshFix=enabled | |
;Use OpenXR layers to handle GUI overlays and HUDs, if set to false will render internally directly onto swap chain before submitting | |
enableLayers=true | |
admitUnknownProps=true |
{ | |
"name": "CVW-69 skin repository", | |
"aircraft": [ | |
{ | |
"name": "F-16C", | |
"skins": [ | |
{ | |
"path": "CoreMods/aircraft/F-16C/Liveries/F-16C_50/327th FrozenDroid", | |
"title": "FrozenDroid" | |
}, |
use core::str::FromStr; | |
use nom::bytes::streaming::{take, take_until, take_while_m_n}; | |
use nom::character::complete::alpha0; | |
use nom::character::streaming::digit1; | |
use nom::character::{is_digit, is_hex_digit}; | |
use nom::combinator::map; | |
use nom::number::streaming::float; | |
use nom::{ | |
alt, branch::alt, bytes::streaming::tag, named, number::streaming::double, tag, IResult, | |
}; |
function sync() { | |
var id="[email protected]"; // CHANGE - id of the secondary calendar to pull events from | |
var secondaryCal=CalendarApp.getCalendarById(id); | |
var today=new Date(); | |
var enddate=new Date(); | |
enddate.setDate(today.getDate()+30); // how many days in advance to monitor and block off time | |
var secondaryEvents=secondaryCal.getEvents(today,enddate); |
I hereby claim:
To claim this, I am signing this object:
#![feature(try_trait)] | |
// Fibonacci sequence takes last 2 numbers and sums them, but you can change as you like :) | |
const TAKE_COUNT: usize = 2; | |
fn main() { | |
let mut vec: Vec<i64> = Vec::with_capacity(100); | |
loop { | |
let last = vec.iter().rev().take(TAKE_COUNT).collect::<Vec<_>>(); |
buildscript { | |
ext { | |
kotlinVersion = '1.2.50' | |
} | |
repositories { | |
mavenCentral() | |
} | |
dependencies { | |
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}") | |
classpath("org.jetbrains.kotlin:kotlin-allopen:${kotlinVersion}") |
#!/bin/sh | |
MONITOR_LIST=$(xrandr --listmonitors | sed '1 d' | awk 'NF>1{print $NF}') | |
killall polybar 2> /dev/null | |
for mon in $MONITOR_LIST; do | |
echo "Launching on monitor $mon" | |
env MONITOR=$mon polybar main & | |
done |
debug = false | |
InsecureSkipVerify = true | |
logLevel = "INFO" | |
defaultEntryPoints = ["https","http"] | |
[entryPoints] | |
[entryPoints.http] | |
address = ":80" | |
[entryPoints.http.redirect] |
version: '2' | |
services: | |
proxy: | |
image: traefik | |
ports: | |
- "80:80" | |
- "443:443" | |
- "8080:8080" | |
volumes: |