A Pen by David Jenner on CodePen.
This file contains 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
If you have an idea for how you want your site to look but no coding skills or money than this guide is for you! | |
You can learn how to use Docker | |
https://docs.docker.com/get-started/ | |
- Once you learn you can load app templates fast! | |
- these are easy to run locally | |
- I'll leave you to work out the rest. | |
If you want to start from scratch though, keep reading... |
This file contains 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
Setting up Vagrantup as a beginner on an M1 MacBook Air with Virtual Box - Notes as I learn, make stakes and fix errors as I go along to help myself and others if they encounter the same errors. Also, I like having notes to reference what I learned earlier! | |
---------------------- | |
What I'm learning | |
---------------------- | |
https://developer.hashicorp.com/vagrant/tutorials/get-started/development-environment | |
---------------------- | |
---------------------- | |
Notes |
This file contains 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
--------------------------- | |
I had this error | |
--------------------------- | |
david@Davids-MacBook-Air / % brew tap hashicorp/tap | |
zsh: command not found: brew | |
david@Davids-MacBook-Air / % sudo brew tap hashicorp/tap | |
Password: | |
sudo: brew: command not found | |
--------------------------- |
This file contains 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
---------------------------------------------- | |
General Business Help | |
---------------------------------------------- | |
Get a name for your Business name or/and App | |
- https://refined.so/tools/free-domain-name-generator?ref=opensourceboilerplates.com | |
- https://www.ionos.com/ai-domain-name-generator | |
- https://www.wix.com/tools/business-name-generator | |
Get a waitinglist landing page - https://www.framer.com/marketplace/templates/waitliz/ |
This file contains 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
Troubleshooting and Fixes encountered on my journey installing the OpenSaaS template on my M1 MacBook Air | |
Started 17/2/25 | |
Remember to have 'Docker' open! | |
Tips and findings | |
- Install Homebrew and node.js - https://brew.sh/ & https://nodejs.org/en | |
- Make sure you don't miss any steps out in the guide and keep Docker running | |
- Where to find your OpenAi API Key - https://platform.openai.com/settings/ |
This file contains 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
Free Open Source Options | |
---------------------------------------------- | |
General Business Help | |
---------------------------------------------- | |
Get a name for your Business name or/and App | |
- https://refined.so/tools/free-domain-name-generator?ref=opensourceboilerplates.com | |
- https://www.ionos.com/ai-domain-name-generator | |
- https://www.wix.com/tools/business-name-generator |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Logo Converter</title> | |
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap" rel="stylesheet"> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> | |
<style> | |
body { |
This file contains 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Outlook Simulator</title> | |
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet"> | |
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css"> | |
<style> | |
.email-client-container { |
This file contains 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
Ideas on automating a PC Refresh | |
Write a powershell script to automate at job on the network every monday at midnight | |
# Define the action to be performed (replace with your own command) | |
$scriptPath = "C:\Path\To\Your\Script.ps1" | |
# Define the task name | |
$taskName = "MyScheduledTask" |
NewerOlder