This is an incomplete list of resources including courses and individuals who publish content that has helped me grow as a web developer and designer. Many of these resources are WordPress-specific as that is my current area of specialization. This list will grow over time. If you've got something to add, send me a link @kevinwhoffman and I'll check it out!
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
| // Vue component for loading minimal fonts with webfontloader | |
| <template> | |
| </template> | |
| <script> | |
| //https://github.com/typekit/webfontloader | |
| import WebFontLoader from 'webfontloader'; | |
| export default { |
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 2018 M.Mueller-Spaeth <fms1961+github@gmail.com> | |
| Permission is hereby granted, free of charge, to any person obtaining a copy | |
| of this software and associated documentation files (the "Software"), to deal | |
| in the Software without restriction, including without limitation the rights | |
| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| copies of the Software, and to permit persons to whom the Software is | |
| furnished to do so, subject to the following conditions: | |
| The above copyright notice and this permission notice shall be included in 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
| bool mgos_draw_dif_zipped(uint16_t x, uint16_t y, const char * difName) { | |
| struct mbuf *picRead = NULL; | |
| struct mbuf *picCache = NULL; | |
| char *bmpBuf = NULL; | |
| char *dif_hdr = NULL; | |
| char *dif_start = NULL; | |
| size_t bufLen = 0; | |
| size_t picLen = 0; | |
| size_t difhLen = 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
| static void print_mgos_ro_vars(struct json_out *out, va_list *ap) { | |
| struct mgos_ro_vars *p = va_arg(*ap, struct mgos_ro_vars *); | |
| json_printf(out, | |
| "{mac_address: %Q, arch: %Q, fw_version: %Q, fw_timestamp: %Q, " | |
| "fw_id: %Q}", | |
| p->mac_address, p->arch, p->fw_version, p->fw_timestamp, | |
| p->fw_id); | |
| } | |
| static void main_timer_cb(void *arg) { |
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
| <?php | |
| /** | |
| * Plugin Name: Cache Aggressive License Checks | |
| * Description: Cache the license checks for plugins that are lame and check on every request. | |
| * Author: Doug Cone | |
| * Author URI: http://dougcone.com | |
| * Version: 0.0.1 | |
| * | |
| */ |
- In general, binaries built just for x86 architecture will automatically be run in x86 mode
- You can force apps in Rosetta 2 / x86 mode by right-clicking app, click Get Info, check "Open using Rosetta"
- You can force command-line apps by prefixing with
arch -x86_64, for examplearch -x86_64 go - Running a shell in this mode means you don't have to prefix commands:
arch -x86_64 zshthengoor whatever - Don't just immediately install Homebrew as usual. It should most likely be installed in x86 mode.
Not all toolchains and libraries properly support M1 arm64 chips just yet. Although
OlderNewer