- Make a 5 page power point presentation convincing my parents that we should go to Madrid on our vacation. I am a 16 y.o. boy. I like design and interior design. They like art, nature and good food. Please include photos.
- Claude produced a nice presentation, but without photos.
- Why can’t you add photos for me?
- Great question! Unfortunately, I'm not able to insert photos from the internet into your slides. Here's why:
- As a PowerPoint add-in, I don't have the ability to:
- Browse or download images from the web
- Access stock photo libraries or Wikimedia Commons
- As a PowerPoint add-in, I don't have the ability to:
- Great question! Unfortunately, I'm not able to insert photos from the internet into your slides. Here's why:
- Fetch image files from URLs and embed them
- www.llnl.gov; democracygps.org
- in/chris-krenn
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 script saves all open and modified Excel, Word, and PowerPoint documents | |
| // It can be run manually with "osascript -l JavaScript /path/to/your/saved/script.js" | |
| // or scheduled to run periodically using a tool like cron. | |
| // type `crontab -e` to edit the cron jobs | |
| // crontab: */5 * * * * /usr/bin/osascript -l JavaScript /path/to/your/saved/script.js | |
| function run() { | |
| try { | |
| console.log("Script started"); |
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
| Using Webpack to bundle shared components in a monorepo setup with multiple React applications involves creating a separate package or directory for these components, configuring Webpack to build this package, and then integrating the bundled output into your individual applications. Here's a step-by-step guide to achieve this: | |
| ### Step 1: Organize Your Repository Structure | |
| First, set up your monorepo structure to separate shared components from individual applications. Here’s a basic layout: | |
| ``` | |
| /my-monorepo | |
| |-- /packages | |
| | |-- /shared-components |
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
| # update history after every command | |
| cat << 'EOF' >> ~/.bashrc | |
| # If PROMPT_COMMAND already has commands | |
| if [[ ! -z "$PROMPT_COMMAND" ]]; then | |
| PROMPT_COMMAND="$PROMPT_COMMAND; history -a" | |
| else | |
| PROMPT_COMMAND="history -a" | |
| fi | |
| EOF |
Notes from Jared Friedman's video https://www.youtube.com/watch?v=Th8JoIan4dg&t=1460s
Note: please watch and "like" the video. I've transcribed these notes to make it easy to use Jared's advice to evaluate your own startup ideas.
- Are you solving a real problem, or are you a "solution in search of a problem" (SISP)?
- Are you working on a "tar pit" idea? (Widespread problem, plausible solution, but with a tricky structural problem. Example: app for making weekend plans.) Suggestion: first google the idea to understand how other people have failed before.
- Have you evaluated your idea thoroughly?
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
| #Procedure | |
| export SUDO="" | |
| # export SUDO="sudo" | |
| #Stop the container(s) using the following command: | |
| ${SUDO} docker-compose down | |
| #Delete all containers using the following command: | |
| ${SUDO} docker rm -f $(${SUDO} docker ps -a -q) | |
| #Delete all volumes using the following command: | |
| ${SUDO} docker volume rm $(${SUDO} docker volume ls -q) | |
| #Restart the containers using the following command: |
This script enables you stop and start Symantec Endpoint Protection on OS X. For information on starting and stopping SEP on OS 10.15 (Catalina), please see below.
sudo curl https://gist.githubusercontent.com/steve-jansen/61a189b6ab961a517f68/raw/sep -o /usr/local/bin/sep
sudo chmod 755 /usr/local/bin/sep
sudo chown root:staff /usr/local/bin/sep
NewerOlder