How to make an application icon for macOS using
iconset
&iconutil
Discover gists
[ | |
{ | |
"name": "ETC Eos keyboard layout", | |
"background": { | |
"name": "Steel brushed horizontal", | |
"style": "background-image: url('/bg/metal/iron_texture66.jpg');" | |
}, | |
"switchMount": "cherry", | |
"switchBrand": "cherry", | |
"switchType": "MX1A-11xx", |
This page has been updated a lot in the past 3 years. Older revisions you might like more than this one:
- June 2021 - list of endpoints for other sports/leagues (i.e. basketball, baseball, lacrosse, rugby)
- August 2021 - get historical fantasy league data
- September 2021 - list of endpoints in plain text
- May 2023 - collapsed endpoint response examples
Additional Resources
Note
Hi, everyone. I've been putting in a lot of work on this over the last few weeks months (sob) and i'm currently underemployed! If you'd like to hire me to do CMS-based work (i focus on Craft and ExpressionEngine but i do some WordPress work as well), please reach out! Alternatively, if you'd like to chip in toward bills & groceries, that's a big help right now!
Updates (Most Recent First)
- 2010: "Universities push to turn out cyber guards as demand explodes" https://triblive.com/x/pittsburghtrib/news/education/s_698162.html
- 2011: "Will There Be A Shortage of Cyber Security Professionals in 2011?" https://www.csoonline.com/article/2228141/cisco-subnet/will-there-be-a-shortage-of-cyber-security-professionals-in-2011-.html
- 2012: "CEO Warns of Security Pro Shortage" https://www.securitymagazine.com/articles/83198-ceo-warns-of-security-pro-shortage
- 2013: "RSA 2013: Cyber security skills shortage needs urgent attention, says DoHS" https://www.computerweekly.com*/news/2240178584/RSA-2013-Cyber-security-skills-shortage-needs-urgent-attention-says-DoHS
- 2014: "Shortage of cybersecurity workers is a problem that will solve itself, study says" https://www.washingtonpost.com/business/capitalbusiness/an-argument-that-the-shortage-of-cyber-workers-is-a-problem-that-will-solve-itself/2014/06/27/dbab364a-fe00-11e3-8176-f2c941cf35f1_story.html?noredirect=on&utm_term=.649a29ac61aa < WTF?!?!?
- 2014: "Sh
Ideas for profitable investigations and an index of experimental results. Free to a good home; will post results as they come in.
MQTT reroute - MQTT_Reroute.md
Very fruitful - finally understood how the mySunPower app's SunVault mode changes are communicated to the PVS6, which performs the system control described by the modes, and found a potential method of changing the command and data acquisition server from one in the cloud to one that is locally controlled.
Local EDP MQTT Server - Local_EDP_Server.md
#!/usr/bin/python3 | |
# == BLKENVFLASH == written by Rene K. Mueller <[email protected]> | |
# | |
# Description: | |
# Writes an image (.img) or to the SD card direct from existing .env.txt for LuckFox Pico Pro/Max | |
# | |
# % ./blkenvflash disk.img | |
# -- inquery with `lsblk` which device is your SD card resides -- | |
# % sudo dd if=disk.img of=/dev/sdX bs=1M; sync |
object Test { | |
/** Simple definition of Heterogeneous Lists | |
*/ | |
sealed abstract class HList { | |
def :::[H](head: H): H ::: this.type = Test.:::(head, this) | |
} | |
/** The empty list |
#!/bin/sh | |
# author: Timo Stankowitz <[email protected]> | |
# create date: 2016-07-10 | |
# last change: 2016-07-10 | |
# with this script you can change the led color of your ubiquiti unifi AP | |
# usage: ./script.sh colorValue | |
# e.g.: ./script.sh 2 |