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
| { | |
| "plugins": ["stylelint-scss"], | |
| "customSyntax": "postcss-scss", | |
| "extends": [ | |
| "@roots/bud-sass/stylelint-config", | |
| "@roots/sage/stylelint-config" | |
| ], | |
| "rules": { | |
| "no-descending-specificity": null, | |
| "selector-class-pattern": null, |
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
| ``` | |
| Configure arguments: | |
| Use `make CONFIGUREARGS="..." ...' to change them. | |
| They will be retained in the build directory. | |
| Making all in build/darwin-22.6.0-x86_64 | |
| #### Making static: modules/CommonLog | |
| #### Making static: modules/DVB | |
| #### Making static: modules/FSEvents | |
| #### Making static: modules/Fuse |
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
| This file contains any messages produced by compilers while | |
| running configure, to aid debugging if configure makes a mistake. | |
| It was created by configure, which was | |
| generated by GNU Autoconf 2.72. Invocation command line was | |
| $ /Users/mikekilmer/pike/src/modules/Gmp/configure --disable-option-checking --prefix=/usr/local 'LDFLAGS=-L/usr/local/opt/postgresql@15/lib -L/usr/local/opt/icu4c/lib -L/usr/local/lib -L/usr/local/Cellar/gmp/6.3.0/lib' 'CPPFLAGS=-I/usr/local/opt/ruby/include -I/usr/local/opt/postgresql@15/include -I/usr/local/opt/icu4c/include -I/usr/local/include -I/usr/local/opt/ruby/include' --cache-file=/dev/null --srcdir=/Users/mikekilmer/pike/src/modules/Gmp | |
| ## --------- ## | |
| ## Platform. ## |
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
| import {Loader} from '@googlemaps/js-api-loader'; | |
| class Map { | |
| constructor() { | |
| this.$el = document.querySelectorAll('.acf-map'); | |
| this.map = null; | |
| this.loader = new Loader({ | |
| apiKey: 'my_key', |
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
| from datetime import date, timedelta | |
| sdate = date(2024, 9, 3) # start date | |
| edate = date(2025, 5, 31) # end date | |
| while sdate < edate: | |
| if (sdate.weekday() != 1) and (sdate.weekday() != 3): # not tuesday or thursday | |
| sdate += timedelta(days=1) | |
| continue | |
| # It is tuesday or thursday | |
| print(sdate.strftime("%a %b %d %Y")) | |
| if sdate.weekday() == 1: |
OlderNewer