Ansible SSSD playbook
Recipes for http://autopkg.github.io/autopkg/
AutoPKG Recipes
cogcomp python library, including curator
Outputs a list of unique links for downloading from getcomics.info
A Django webapp to escrow filevault keys sent by the Crypt client app.
Elegant and powerful Apple services for education and business.
🥑 Language focused docker images, minus the operating system.
push eventautopkg/n8felton-recipes
commit sha 59a8721d0b873781375350b1a47d65f64e8dfd41
Create pull_request_template.md
push time in 24 days
issue openedautopkg/n8felton-recipes
Edge recipe failing due to pkg rename
https://github.com/autopkg/n8felton-recipes/blob/91ad09397cc2eb63677bd6b8a5a5093c7205d344/Microsoft/MicrosoftEdge.munki.recipe#L76
$ ls /Volumes/Data/AutoPkg/Cache/local.munki.MicrosoftEdge/unpack/
Distribution MicrosoftEdgeBeta-92.0.902.30.pkg Microsoft_AutoUpdate_Updater.pkg Resources
What do you think? MicrosoftEdge*.pkg or MicrosoftEdge%CHANNEL%*.pkg?
created time in 24 days
issue commentytmdesktop/ytmdesktop
Javascript Error occured in the main process. Failed to serialize arguments
The notifications appear to only happen when the app is in the background. maybe that's why you only see it occasionally?
comment created time in a month
pull request commentytmdesktop/ytmdesktop
@mkotb any chance of getting those changes in so this can get merged? 🙏
comment created time in a month
issue commentytmdesktop/ytmdesktop
Javascript Error occured in the main process. Failed to serialize arguments
do you have notifications enabled? it looks to be related to that. I get the same message when I enable notifications on the mac client
comment created time in a month
startedthomseddon/traefik-forward-auth
started time in 2 months
PR opened linuxserver/docker-mylar3
<!--- Provide a general summary of your changes in the Title above -->
<!--- Before submitting a pull request please check the following -->
<!--- If this is a fix for a typo in code or documentation in the README please file an issue and let us sort it out we do not need a PR --> <!--- Ask yourself if this modification is something the whole userbase will benefit from, if this is a specific change for corner case functionality or plugins please look at making a Docker Mod or local script https://blog.linuxserver.io/2019/09/14/customizing-our-containers/ --> <!--- That if the PR is addressing an existing issue include, closes #<issue number> , in the body of the PR commit message --> <!--- You have included links to any files / patches etc your PR may be using in the body of the PR commit message --> <!--- We maintain a changelog of major revisions to the container at the end of readme-vars.yml in the root of this repository, please add your changes there if appropriate -->
<!--- Coding guidelines: --> <!--- 1. Installed packages in the Dockerfiles should be in alphabetical order --> <!--- 2. Changes to Dockerfile should be replicated in Dockerfile.armhf and Dockerfile.aarch64 if applicable --> <!--- 3. Indentation style (tabs vs 4 spaces vs 1 space) should match the rest of the document --> <!--- 4. Readme is auto generated from readme-vars.yml, make your changes there -->
- [x] I have read the contributing guideline and understand that I have made the correct modifications
<!--- We welcome all PR’s though this doesn’t guarantee it will be accepted. -->
Description:
<!--- Describe your changes in detail -->
Without webp, any webp comics inside of Mylar fail to load when you hit the info button. Running the following python code will return False because webp wasn't on the system when pillow was installed via pip.
from PIL import features
print(features.check_module('webp'))
Inside of Mylar, you'll see a warning similar to the following:
WARNING [WARNING] Unable to resize existing image: cannot identify image file <_io.BytesIO object at 0x7f2fd9bfaf40>
This PR adds libwebp-dev to the build phase and libwebp-tools to the runtime phase so the libcwebp libraries are available during when PIP installs Pillow (used for displaying images inside of Mylar), thus enabling webp as a Pillow feature, and so cwebp is available in the container for ComicTagger.
Benefits of this PR and context:
<!--- Please explain why we should accept this PR. If this fixes an outstanding bug, please reference the issue # --> Allows Mylar to properly display covers for webp comics.
How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->
I modified and built the container, docker exec -it mylar bash > python3 and ran
from PIL import features
print(features.check_module('webp'))
and verified that it returned true. I then loaded the front-end UI and checked that the info button would work on a comic that contained webp images.
Source / References:
<!--- Please include any forum posts/github links relevant to the PR --> Worked with evilhero over on the Mylar discord to figure out this was related to Pillow being installed without the webp libraries.
pr created time in 2 months
push eventcwhits/docker-mylar3
commit sha a3380a3d3fd5f150ee9f9a5a59d8238d4b80465e
Add libwebp so pillow builds with webp support
push time in 2 months
pull request commentlinuxserver/docker-mylar3
Add libwebp so pillow builds with webp support
woof lemme try this over
comment created time in 2 months
PR closed linuxserver/docker-mylar3
<!--- Provide a general summary of your changes in the Title above -->
<!--- Before submitting a pull request please check the following -->
<!--- If this is a fix for a typo in code or documentation in the README please file an issue and let us sort it out we do not need a PR --> <!--- Ask yourself if this modification is something the whole userbase will benefit from, if this is a specific change for corner case functionality or plugins please look at making a Docker Mod or local script https://blog.linuxserver.io/2019/09/14/customizing-our-containers/ --> <!--- That if the PR is addressing an existing issue include, closes #<issue number> , in the body of the PR commit message --> <!--- You have included links to any files / patches etc your PR may be using in the body of the PR commit message --> <!--- We maintain a changelog of major revisions to the container at the end of readme-vars.yml in the root of this repository, please add your changes there if appropriate -->
<!--- Coding guidelines: --> <!--- 1. Installed packages in the Dockerfiles should be in alphabetical order --> <!--- 2. Changes to Dockerfile should be replicated in Dockerfile.armhf and Dockerfile.aarch64 if applicable --> <!--- 3. Indentation style (tabs vs 4 spaces vs 1 space) should match the rest of the document --> <!--- 4. Readme is auto generated from readme-vars.yml, make your changes there -->
- [x] I have read the contributing guideline and understand that I have made the correct modifications
<!--- We welcome all PR’s though this doesn’t guarantee it will be accepted. -->
Description:
<!--- Describe your changes in detail -->
Without webp, any webp comics inside of Mylar fail to load when you hit the info button. Running the following python code will return False because webp wasn't on the system when pillow was installed via pip.
from PIL import features
print(features.check_module('webp'))
Inside of Mylar, you'll see a warning similar to the following:
WARNING [WARNING] Unable to resize existing image: cannot identify image file <_io.BytesIO object at 0x7f2fd9bfaf40>
This PR adds libwebp-dev to the build phase and libwebp-tools to the runtime phase so the libcwebp libraries are available during when PIP installs Pillow (used for displaying images inside of Mylar), thus enabling webp as a Pillow feature, and so cwebp is available in the container for ComicTagger.
Benefits of this PR and context:
<!--- Please explain why we should accept this PR. If this fixes an outstanding bug, please reference the issue # --> Allows Mylar to properly display covers for webp comics.
How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->
I modified and built the container, docker exec -it mylar bash > python3 and ran
from PIL import features
print(features.check_module('webp'))
and verified that it returned true. I then loaded the front-end UI and checked that the info button would work on a comic that contained webp images.
Source / References:
<!--- Please include any forum posts/github links relevant to the PR --> Worked with evilhero over on the Mylar discord to figure out this was related to Pillow being installed without the webp libraries.
pr closed time in 2 months
PR opened linuxserver/docker-mylar3
<!--- Provide a general summary of your changes in the Title above -->
<!--- Before submitting a pull request please check the following -->
<!--- If this is a fix for a typo in code or documentation in the README please file an issue and let us sort it out we do not need a PR --> <!--- Ask yourself if this modification is something the whole userbase will benefit from, if this is a specific change for corner case functionality or plugins please look at making a Docker Mod or local script https://blog.linuxserver.io/2019/09/14/customizing-our-containers/ --> <!--- That if the PR is addressing an existing issue include, closes #<issue number> , in the body of the PR commit message --> <!--- You have included links to any files / patches etc your PR may be using in the body of the PR commit message --> <!--- We maintain a changelog of major revisions to the container at the end of readme-vars.yml in the root of this repository, please add your changes there if appropriate -->
<!--- Coding guidelines: --> <!--- 1. Installed packages in the Dockerfiles should be in alphabetical order --> <!--- 2. Changes to Dockerfile should be replicated in Dockerfile.armhf and Dockerfile.aarch64 if applicable --> <!--- 3. Indentation style (tabs vs 4 spaces vs 1 space) should match the rest of the document --> <!--- 4. Readme is auto generated from readme-vars.yml, make your changes there -->
- [x] I have read the contributing guideline and understand that I have made the correct modifications
<!--- We welcome all PR’s though this doesn’t guarantee it will be accepted. -->
Description:
<!--- Describe your changes in detail -->
Without webp, any webp comics inside of Mylar fail to load when you hit the info button. Running the following python code will return False because webp wasn't on the system when pillow was installed via pip.
from PIL import features
print(features.check_module('webp'))
Inside of Mylar, you'll see a warning similar to the following:
WARNING [WARNING] Unable to resize existing image: cannot identify image file <_io.BytesIO object at 0x7f2fd9bfaf40>
This PR adds libwebp-dev to the build phase and libwebp-tools to the runtime phase so the libcwebp libraries are available during when PIP installs Pillow (used for displaying images inside of Mylar), thus enabling webp as a Pillow feature, and so cwebp is available in the container for ComicTagger.
Benefits of this PR and context:
<!--- Please explain why we should accept this PR. If this fixes an outstanding bug, please reference the issue # --> Allows Mylar to properly display covers for webp comics.
How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->
I modified and built the container, docker exec -it mylar bash > python3 and ran
from PIL import features
print(features.check_module('webp'))
and verified that it returned true. I then loaded the front-end UI and checked that the info button would work on a comic that contained webp images.
Source / References:
<!--- Please include any forum posts/github links relevant to the PR --> Worked with evilhero over on the Mylar discord to figure out this was related to Pillow being installed without the webp libraries.
pr created time in 2 months
push eventcwhits/docker-mylar3
commit sha af0d4470092f006aa49dbc580a6581d82a17c90d
Adding version info into readme-vars.yml
push time in 2 months
pull request commentlinuxserver/docker-mylar3
Add libwebp so pillow builds with webp support
@aptalca sorry, forgive my ignorance, but to verify:
- add the readme-vars.yml changes to this PR
- dupe the whole thing (including readme-vars.yml) against the nightly branch? or am I re-submitting the whole thing against the nightly branch?
comment created time in 2 months
PR opened linuxserver/docker-mylar3
<!--- Provide a general summary of your changes in the Title above -->
<!--- Before submitting a pull request please check the following -->
<!--- If this is a fix for a typo in code or documentation in the README please file an issue and let us sort it out we do not need a PR --> <!--- Ask yourself if this modification is something the whole userbase will benefit from, if this is a specific change for corner case functionality or plugins please look at making a Docker Mod or local script https://blog.linuxserver.io/2019/09/14/customizing-our-containers/ --> <!--- That if the PR is addressing an existing issue include, closes #<issue number> , in the body of the PR commit message --> <!--- You have included links to any files / patches etc your PR may be using in the body of the PR commit message --> <!--- We maintain a changelog of major revisions to the container at the end of readme-vars.yml in the root of this repository, please add your changes there if appropriate -->
<!--- Coding guidelines: --> <!--- 1. Installed packages in the Dockerfiles should be in alphabetical order --> <!--- 2. Changes to Dockerfile should be replicated in Dockerfile.armhf and Dockerfile.aarch64 if applicable --> <!--- 3. Indentation style (tabs vs 4 spaces vs 1 space) should match the rest of the document --> <!--- 4. Readme is auto generated from readme-vars.yml, make your changes there -->
- [ ] I have read the contributing guideline and understand that I have made the correct modifications
<!--- We welcome all PR’s though this doesn’t guarantee it will be accepted. -->
Description:
<!--- Describe your changes in detail -->
Without webp, any webp comics inside of Mylar fail to load when you hit the info button. Running the following python code will return False because webp wasn't on the system when pillow was installed via pip.
from PIL import features
print(features.check_module('webp'))
Inside of Mylar, you'll see a warning similar to the following:
WARNING [WARNING] Unable to resize existing image: cannot identify image file <_io.BytesIO object at 0x7f2fd9bfaf40>
This PR adds libwebp-dev to the build phase and libwebp-tools to the runtime phase so the libcwebp libraries are available during when PIP installs Pillow (used for displaying images inside of Mylar), thus enabling webp as a Pillow feature, and so cwebp is available in the container for ComicTagger.
Benefits of this PR and context:
<!--- Please explain why we should accept this PR. If this fixes an outstanding bug, please reference the issue # --> Allows Mylar to properly display covers for webp comics.
How Has This Been Tested?
<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->
I modified and built the container, docker exec -it mylar bash > python3 and ran ```python
from PIL import features
print(features.check_module('webp'))
## Source / References:
<!--- Please include any forum posts/github links relevant to the PR -->
Worked with evilhero over on the Mylar discord to figure out this was related to Pillow being installed without the webp libraries.
pr created time in 2 months
PR opened blakeblackshear/frigate
Record was missing from the configuration docs. Added it in based on the other options show and the info under 24/7 recordings in the cameras docs.
pr created time in 2 months
push eventcwhits/frigate
commit sha efbc3f5ad075a1a76b1195f2731ed828e4443dd8
Add `record` to configuration docs Record was missing from the configuration docs. Added it in based on the other options show and the info under 24/7 recordings in the cameras docs.
push time in 2 months
issue commenthome-assistant/home-assistant.io
Potentially add `Stream` to default_config docs
SSDP looks like it might be another?
comment created time in 2 months
issue openedhome-assistant/home-assistant.io
https://www.home-assistant.io/integrations/default_config/
Feedback
Based on the docs, I think Stream should be listed on that page too. I'm not totally sure on how to check whether it's loaded through there for sure or not.
URL
https://www.home-assistant.io/integrations/default_config/
Version
2021.5.4
Additional information
No response
created time in 2 months
PR opened blakeblackshear/frigate-hass-integration
Adding note that you need media_source for the media player to work
pr created time in 2 months
push eventcwhits/frigate-hass-integration
commit sha 57defff772975c71cd49f1ad47332346c243b276
Update README.md Adding note that you need media_source for the media player to work
push time in 2 months
PR opened blakeblackshear/frigate
Type was stuck on the comment line. Added a line break to move it onto its own line so it's visible.
pr created time in 2 months
push eventcwhits/frigate
commit sha 2f2c21ead7a0157cf9b2d017eac2a80fd20b1e26
Update advanced.md to move `type:` to its own line Type was stuck on the comment line. Added a line break to move it onto its own line so it's visible.
push time in 2 months
issue commentjneale/Xplore
Enhancement - Push/Pull script from URL parameter to allow for sharing
Thank you! me and my co-workers are going to love this 🙌
comment created time in 3 months
startedthenickdude/wacom-driver-fix
started time in 3 months
issue openedjneale/Xplore
Enhancement - Push/Pull script from URL parameter to allow for sharing
It'd be really neat if there was an easy way to share a script with a co-worker that would open up right in xplore rather than them copy/pasting the code.
Something like https://myinstance.service-now.com/snd_xplore.do&sysparm_script=message%20%3D%20 gs.getMessage('hey%20there%20{0}'%20gs.getUser().firstName)\nreturn%20message
obviously there'd need to be some url-encoding in there and some URLs might get obscenely long but have you seen Slack's block kit builder URLs? 😱
https://app.slack.com/block-kit-builder/T0E2AD6AY#%7B%22blocks%22:%5B%7B%22type%22:%22section%22,%22text%22:%7B%22type%22:%22mrkdwn%22,%22text%22:%22Hello,%20Assistant%20to%20the%20Regional%20Manager%20Dwight!%20*Michael%20Scott*%20wants%20to%20know%20where%20you'd%20like%20to%20take%20the%20Paper%20Company%20investors%20to%20dinner%20tonight.%5Cn%5Cn%20*Please%20select%20a%20restaurant:*%22%7D%7D,%7B%22type%22:%22divider%22%7D,%7B%22type%22:%22section%22,%22text%22:%7B%22type%22:%22mrkdwn%22,%22text%22:%22*Farmhouse%20Thai%20Cuisine*%5Cn:star::star::star::star:%201528%20reviews%5Cn%20They%20do%20have%20some%20vegan%20options,%20like%20the%20roti%20and%20curry,%20plus%20they%20have%20a%20ton%20of%20salad%20stuff%20and%20noodles%20can%20be%20ordered%20without%20meat!!%20They%20have%20something%20for%20everyone%20here%22%7D,%22accessory%22:%7B%22type%22:%22image%22,%22image_url%22:%22https://s3-media3.fl.yelpcdn.com/bphoto/c7ed05m9lC2EmA3Aruue7A/o.jpg%22,%22alt_text%22:%22alt%20text%20for%20image%22%7D%7D,%7B%22type%22:%22section%22,%22text%22:%7B%22type%22:%22mrkdwn%22,%22text%22:%22*Kin%20Khao*%5Cn:star::star::star::star:%201638%20reviews%5Cn%20The%20sticky%20rice%20also%20goes%20wonderfully%20with%20the%20caramelized%20pork%20belly,%20which%20is%20absolutely%20melt-in-your-mouth%20and%20so%20soft.%22%7D,%22accessory%22:%7B%22type%22:%22image%22,%22image_url%22:%22https://s3-media2.fl.yelpcdn.com/bphoto/korel-1YjNtFtJlMTaC26A/o.jpg%22,%22alt_text%22:%22alt%20text%20for%20image%22%7D%7D,%7B%22type%22:%22section%22,%22text%22:%7B%22type%22:%22mrkdwn%22,%22text%22:%22*Ler%20Ros*%5Cn:star::star::star::star:%202082%20reviews%5Cn%20I%20would%20really%20recommend%20the%20%20Yum%20Koh%20Moo%20Yang%20-%20Spicy%20lime%20dressing%20and%20roasted%20quick%20marinated%20pork%20shoulder,%20basil%20leaves,%20chili%20&%20rice%20powder.%22%7D,%22accessory%22:%7B%22type%22:%22image%22,%22image_url%22:%22https://s3-media2.fl.yelpcdn.com/bphoto/DawwNigKJ2ckPeDeDM7jAg/o.jpg%22,%22alt_text%22:%22alt%20text%20for%20image%22%7D%7D,%7B%22type%22:%22divider%22%7D,%7B%22type%22:%22actions%22,%22elements%22:%5B%7B%22type%22:%22button%22,%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22Farmhouse%22,%22emoji%22:true%7D,%22value%22:%22click_me_123%22%7D,%7B%22type%22:%22button%22,%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22Kin%20Khao%22,%22emoji%22:true%7D,%22value%22:%22click_me_123%22,%22url%22:%22https://google.com%22%7D,%7B%22type%22:%22button%22,%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22Ler%20Ros%22,%22emoji%22:true%7D,%22value%22:%22click_me_123%22,%22url%22:%22https://google.com%22%7D%5D%7D,%7B%22type%22:%22actions%22,%22elements%22:%5B%7B%22type%22:%22conversations_select%22,%22placeholder%22:%7B%22type%22:%22plain_text%22,%22text%22:%22Select%20a%20conversation%22,%22emoji%22:true%7D,%22action_id%22:%22actionId-0%22%7D,%7B%22type%22:%22channels_select%22,%22placeholder%22:%7B%22type%22:%22plain_text%22,%22text%22:%22Select%20a%20channel%22,%22emoji%22:true%7D,%22action_id%22:%22actionId-1%22%7D,%7B%22type%22:%22users_select%22,%22placeholder%22:%7B%22type%22:%22plain_text%22,%22text%22:%22Select%20a%20user%22,%22emoji%22:true%7D,%22action_id%22:%22actionId-2%22%7D,%7B%22type%22:%22static_select%22,%22placeholder%22:%7B%22type%22:%22plain_text%22,%22text%22:%22Select%20an%20item%22,%22emoji%22:true%7D,%22options%22:%5B%7B%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%22value%22:%22value-0%22%7D,%7B%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%22value%22:%22value-1%22%7D,%7B%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%22value%22:%22value-2%22%7D%5D,%22action_id%22:%22actionId-3%22%7D%5D%7D,%7B%22type%22:%22section%22,%22text%22:%7B%22type%22:%22mrkdwn%22,%22text%22:%22This%20is%20a%20section%20block%20with%20an%20overflow%20menu.%22%7D,%22accessory%22:%7B%22type%22:%22overflow%22,%22options%22:%5B%7B%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%22value%22:%22value-0%22%7D,%7B%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%22value%22:%22value-1%22%7D,%7B%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%22value%22:%22value-2%22%7D,%7B%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%22value%22:%22value-3%22%7D,%7B%22text%22:%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%22value%22:%22value-4%22%7D%5D,%22action_id%22:%22overflow-action%22%7D%7D,%7B%22type%22:%22section%22,%22text%22:%7B%22type%22:%22mrkdwn%22,%22text%22:%22This%20is%20a%20section%20block%20with%20an%20accessory%20image.%22%7D,%22accessory%22:%7B%22type%22:%22image%22,%22image_url%22:%22https://pbs.twimg.com/profile_images/625633822235693056/lNGUneLX_400x400.jpg%22,%22alt_text%22:%22cute%20cat%22%7D%7D,%7B%22type%22:%22section%22,%22text%22:%7B%22type%22:%22mrkdwn%22,%22text%22:%22Test%20block%20with%20multi%20conversations%20select%22%7D,%22accessory%22:%7B%22type%22:%22multi_conversations_select%22,%22placeholder%22:%7B%22type%22:%22plain_text%22,%22text%22:%22Select%20conversations%22,%22emoji%22:true%7D,%22action_id%22:%22multi_conversations_select-action%22%7D%7D,%7B%22type%22:%22section%22,%22fields%22:%5B%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D,%7B%22type%22:%22plain_text%22,%22text%22:%22*this%20is%20plain_text%20text*%22,%22emoji%22:true%7D%5D%7D%5D%7D
created time in 3 months
