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
Options +ExecCGI | |
AddHandler cgi-script .py | |
DirectoryIndex code.py/ | |
<IfModule mod_rewrite.c> | |
RewriteEngine on | |
RewriteBase / | |
RewriteCond %{REQUEST_URI} !^/static/favicon.ico$ | |
RewriteCond %{REQUEST_URI} !^/static/(.*)$ | |
RewriteCond %{REQUEST_URI} !^(/.*)+code.py/ | |
RewriteRule ^(.*)$ code.py/$1 [PT] |
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
Show hidden characters
[ | |
{ "keys": ["ctrl+q"], "command": "close_file" }, | |
{ "keys": ["ctrl+k", "ctrl+0"], "command": "fold_all" }, | |
] |
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 "vectordoublevalidator.h" | |
// VectorDoubleValidator Constructor | |
VectorDoubleValidator::VectorDoubleValidator ( double bottom, double top, int decimals, | |
QObject* parent = 0 ) | |
: QDoubleValidator ( bottom, top, decimals, parent ) { | |
} | |
// Custom validate function to allow comma seperated values |
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
" Try to determine type of file from name and contents | |
filetype plugin indent on | |
" Enable syntax highligting | |
syntax on | |
" Show partial commands on last line | |
set showcmd | |
" Highlight searches |
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
package main | |
func InspectSlice(slice []string) { | |
// Capture the address to the slice structure | |
address := unsafe.Pointer(&slice) | |
// Capture the address where the length and cap size is stored | |
lenAddr := uintptr(address) + uintptr(8) | |
capAddr := uintptr(address) + uintptr(16) |
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
extern crate ui; | |
use ui::{Area, AreaDrawParams, AreaHandler}; | |
use ui::draw::{Brush, FillMode, Path, SolidBrush, StrokeParams, LineCap, LineJoin}; | |
use ui::draw::text::{Layout, Font, FontDescriptor, Weight, Italic, Stretch}; | |
pub struct LineChart { | |
pub title: String, | |
pub x_axis_label: String, | |
pub y_axis_label: String, |
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 urllib.request as request | |
import json | |
import matplotlib.pyplot as plt | |
import matplotlib.colors as colors | |
import matplotlib.cm as cm | |
import numpy as np | |
class BuoySpectraPlotter: | |
def __init__(self, buoy_station): |
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
#!/usr/bin/python | |
with open('/sys/class/power_supply/BAT0/status') as f: | |
if 'Charging' in f.read(): | |
print('The battery is currently charging') | |
exit(0) | |
scale = 1000000000000.000 | |
voltage = 0 | |
current = 0 |
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
// Copyright 2014 The Chromium Authors. All rights reserved. | |
// Redistribution and use in source and binary forms, with or without | |
// modification, are permitted provided that the following conditions are | |
// met: | |
// * Redistributions of source code must retain the above copyright | |
// notice, this list of conditions and the following disclaimer. | |
// * Redistributions in binary form must reproduce the above | |
// copyright notice, this list of conditions and the following |
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 SwiftUI | |
import MapKit | |
import PlaygroundSupport | |
class SwellDataOverlay : NSObject, MKOverlay { | |
let coordinate: CLLocationCoordinate2D | |
let boundingMapRect: MKMapRect | |
let magnitude: Double | |
let angle: Double |
OlderNewer