Skip to content

Instantly share code, notes, and snippets.

View blvkoblsk's full-sized avatar

blvkoblsk

  • @blvk.art
  • 4,05・10-21Hz
View GitHub Profile
@blvkoblsk
blvkoblsk / bbs.js
Created June 20, 2018 22:17 — forked from TooTallNate/bbs.js
Running a node.js REPL over `curl`
/**
* Requires node v0.7.7 or greater.
*
* To connect: $ curl -sSNT. localhost:8000
*/
var http = require('http')
, repl = require('repl')
, buf0 = new Buffer([0])
@blvkoblsk
blvkoblsk / blvkGradientBG.css
Created August 18, 2017 00:55 — forked from anonymous/my.css
Black & Blue Gradient CSS Variation
background: linear-gradient(320deg, #000000, #000000, #5785b8, #374a5f, #0e2b4d, #5785b8, #000000);
background-size: 1400% 1400%;
-webkit-animation: blvkGradientBG 45s ease infinite;
-moz-animation: blvkGradientBG 45s ease infinite;
-o-animation: blvkGradientBG 45s ease infinite;
animation: blvkGradientBG 45s ease infinite;
@-webkit-keyframes blvkGradientBG {
    0%{background-position:11% 0%}
    50%{background-position:90% 100%}
    100%{background-position:11% 0%}
@blvkoblsk
blvkoblsk / byobuCommands
Created August 16, 2017 04:05 — forked from jshaw/byobuCommands
Byobu Commands
Byobu Commands
==============
byobu Screen manager
Level 0 Commands (Quick Start)
------------------------------
<F2> Create a new window
@blvkoblsk
blvkoblsk / .bash_profile
Created August 8, 2017 03:17 — forked from natelandau/.bash_profile
Mac OSX Bash Profile
# ---------------------------------------------------------------------------
#
# Description: This file holds all my BASH configurations and aliases
#
# Sections:
# 1. Environment Configuration
# 2. Make Terminal Better (remapping defaults and adding functionality)
# 3. File and Folder Management
# 4. Searching
# 5. Process Management
@blvkoblsk
blvkoblsk / _verify-repair-permissions-disk.md
Created August 7, 2017 17:17 — forked from bzerangue/_verify-repair-permissions-disk.md
Mac OS X Utilities via Terminal: (Verify and Repair: Disk Permissions AND Disk / Software Update / TimeMachine)

Verify and Repair Disk Permissions via Terminal (Mac OS X)

Verify Permissions

diskutil verifyPermissions /

Repair Permissions

diskutil repairPermissions /

@blvkoblsk
blvkoblsk / fix-homebrew-npm.md
Created August 6, 2017 21:03 — forked from DanHerbert/fix-homebrew-npm.md
Instructions on how to fix npm if you've installed Node through Homebrew on Mac OS X or Linuxbrew

Fixing npm On Mac OS X for Homebrew Users

Installing node through Homebrew can cause problems with npm for globally installed packages. To fix it quickly, use the solution below. An explanation is also included at the end of this document.

Solution

This solution fixes the error caused by trying to run npm update npm -g. Once you're finished, you also won't need to use sudo to install npm modules globally.

Before you start, make a note of any globally installed npm packages. These instructions will have you remove all of those packages. After you're finished you'll need to re-install them.

Glitchin' Image

Applying noise to any image for a glitch effect.
Auto-glitches at delayed intervals && on mouseover.

A Pen by Tiffany Rayside on CodePen.

License.

@blvkoblsk
blvkoblsk / css-red-gradient.css
Created August 3, 2017 19:38 — forked from anonymous/my.css
CSS Gradient Animation
background: linear-gradient(67deg, #000000, #000000, #430909);
background-size: 600% 600%;
-webkit-animation: AnimationName 52s ease infinite;
-moz-animation: AnimationName 52s ease infinite;
-o-animation: AnimationName 52s ease infinite;
animation: AnimationName 52s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:0% 24%}
    50%{background-position:100% 77%}
    100%{background-position:0% 24%}
@blvkoblsk
blvkoblsk / css-blue-gradient.css
Last active August 3, 2017 19:38 — forked from anonymous/my.css
CSS Gradient Animation
background: linear-gradient(235deg, #141d36, #000000, #1c2c54, #073b5f);
background-size: 800% 800%;
-webkit-animation: AnimationName 55s ease infinite;
-moz-animation: AnimationName 55s ease infinite;
-o-animation: AnimationName 55s ease infinite;
animation: AnimationName 55s ease infinite;
@-webkit-keyframes AnimationName {
    0%{background-position:68% 0%}
    50%{background-position:33% 100%}
    100%{background-position:68% 0%}
@blvkoblsk
blvkoblsk / orbit-css.markdown
Last active August 2, 2017 19:49 — forked from anonymous/orbit.markdown
Orbit CSS

Orbit CSS

The latest version of my blackhole thing, but this time with far more stars than I care to count. (it can now smootly animate over 100,000 stars orbiting, more than 100x more stars than I've ever been able to get before)

Forked from Darryl Huffman on CodePen.

License.