Skip to content

Instantly share code, notes, and snippets.

// More information: https://danielupshaw.com/openscad-rounded-corners/
module roundedcube_simple(size = [1, 1, 1], center = false, radius = 0.5) {
// If single value, convert to [x, y, z] vector
size = (size[0] == undef) ? [size, size, size] : size;
translate = (center == false) ?
[radius, radius, radius] :
[
radius - (size[0] / 2),
@groovenectar
groovenectar / roundedcube.scad
Last active April 6, 2024 04:40
roundedcube.scad - Fork me and make me better!
// More information: https://danielupshaw.com/openscad-rounded-corners/
// Set to 0.01 for higher definition curves (renders slower)
$fs = 0.15;
module roundedcube(size = [1, 1, 1], center = false, radius = 0.5, apply_to = "all") {
// If single value, convert to [x, y, z] vector
size = (size[0] == undef) ? [size, size, size] : size;
translate_min = radius;
@groovenectar
groovenectar / SassMeister-input.scss
Created June 19, 2015 02:47
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
$steel: #666666;
footer {
.disclaimers,
.copyright {
color: $steel;
@groovenectar
groovenectar / example.html
Last active August 29, 2015 14:21
jquery.searchify.js
<!doctype html>
<html>
<title>jquery.searchify.js</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="jquery.searchify.js"></script>
<style type="text/css">
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
@groovenectar
groovenectar / jquery-pagify-example.html
Last active January 2, 2022 04:19
jquery.pagify.js
<!doctype html>
<html>
<title>jquery.pagify.js</title>
<link rel="stylesheet" href="style.css">
<script type="text/javascript" src="https://code.jquery.com/jquery-1.11.3.min.js"></script>
<script type="text/javascript" src="jquery.pagify.js"></script>
<style type="text/css">
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#!/bin/sh
#
# Example showing use of getopt detection and use of GNU enhanced getopt
# to handle arguments containing whitespace.
#
# Written in 2004 by Hoylen Sue <hoylen@hoylen.com>
#
# To the extent possible under law, the author(s) have dedicated all copyright and
# related and neighboring rights to this software to the public domain worldwide.
# This software is distributed without any warranty.
sudo update-rc.d -f apache2 remove
sudo update-rc.d -f mysql remove
<?php
/*
* Formats an array so that it can be copied and pasted directly as a PHP variable
*
* $arr => The input array
* $varname => Optional. Example, '$foo' will prefix return with '$foo = '
* $output => 'pre' (default) outputs with a <pre> tag. true outputs, false returns a string
* $recursing => Used internally for recursion
*/
@groovenectar
groovenectar / How Do I Like?
Last active December 22, 2015 04:58
Bookmarklet, removes Like buttons on a Facebook page
<a href="javascript:
(function() {
var elems = document.getElementsByClassName( 'UFILikeLink' );
for ( var i = 0; i < elems.length; i++ ) {
if ( elems[i].style.display == 'none' ) {
elems[i].style.display = 'inline-block';
} else {
elems[i].style.display = 'none'
}