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
| # WSL Configuration | |
| ## Update Ubuntu components: | |
| Update and upgrade system | |
| sudo apt-get update && sudo apt-get upgrade | |
| Install LAMP stack (note the caret) |
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
| function baseGrad() { | |
| let g = new LinearGradient() | |
| g.locations = [0, 1] | |
| return g | |
| } | |
| function gradBaseBlackTop(clr) { | |
| let g = baseGrad() | |
| g.colors = [ | |
| new Color("141414"), |
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
| { | |
| "personal_info": { | |
| "name": "first last", | |
| "age": 0, | |
| "phone": "000-000-0000", | |
| "email": "email@domain.com", | |
| "address": "address", | |
| "website": "https://dev.to" | |
| }, | |
| "cv": { |
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
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>canopy test results</title> | |
| <script src="https://code.jquery.com/jquery-1.9.1.min.js"></script> | |
| <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script> | |
| <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous"> | |
| <style> | |
| .masthead ul, |
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
| function shortcode_custom_date($fmt) { | |
| extract(shortcode_atts(array( | |
| 'format' => 'Ymd' | |
| ), $fmt)); | |
| return date($format); | |
| } | |
| add_shortcode('custom_date', 'shortcode_custom_date'); | |
| // usage: [custom_date format="r"] // Thu, 29 Jun 2023 14:49:05 +0000 |
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
| // ==UserScript== | |
| // @name Transparent Columns in Jira Sprint Boards | |
| // @namespace http://tampermonkey.net/ | |
| // @version 2026-02-23 | |
| // @description Transparency effect on sprint boards. | |
| // @author fischgeek | |
| // @match https://*.atlassian.net/jira/software/c/projects/* | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=atlassian.net | |
| // @run-at document-start | |
| // @grant GM_addStyle |
OlderNewer