Work-in-pogress
Ref: cloudflare/homebrew-cloudflare#21
# Clean up any old version of curl you may have already tried to install
brew remove -f curl
# Download the curl ruby install script provided by cloudflare
/********************************************************************* | |
* Web AI Agent for Flights designed and coded by Jason Mayes 2025. | |
*-------------------------------------------------------------------- | |
* Connect with me on social if questions or comments: | |
* | |
* LinkedIn: https://www.linkedin.com/in/webai/ | |
* Twitter / X: https://x.com/jason_mayes | |
* Github: https://github.com/jasonmayes | |
* CodePen: https://codepen.io/jasonmayes | |
*********************************************************************/ |
Work-in-pogress
Ref: cloudflare/homebrew-cloudflare#21
# Clean up any old version of curl you may have already tried to install
brew remove -f curl
# Download the curl ruby install script provided by cloudflare
ko
is a little unknown gem, lost in the GitHub maze.
ko
is widely used in knative development but somehow very little advocacy has been done around this tool.
It allows you to:
<html> | |
<head> | |
<link rel="stylesheet" type="text/css" href="styles.css"> | |
<script src="script.js"></script> | |
</head> | |
<body> | |
<div class='hr-table'> | |
<div class='hr-row'> | |
<div class='hr-cell'> | |
<div class='hr-header'>Heart Rate:</div> |
version: '2.1' | |
services: | |
cassandra: | |
image: cassandra:latest | |
networks: | |
- reactive-network | |
volumes: | |
- cassandra_data:/var/lib/cassandra | |
# - ${PWD}/data/cassandra/data:/var/lib/cassandra |
angular.module('ConsoleUIApp', ['ui.router','ui.bootstrap','ngAnimate','angular-growl', 'restangular','http-auth-interceptor']) | |
.config(function ($stateProvider, $urlRouterProvider, growlProvider, RestangularProvider, $httpProvider) { | |
// For any unmatched url, redirect to /state1 | |
$urlRouterProvider.otherwise("/home"); | |
$stateProvider | |
.state('home', { | |
url: "/home", | |
templateUrl: "views/home.html", |
```shell | |
git config --global core.protectNTFS false | |
git config --global core.longpaths true | |
``` |
Diagrams
graph TD;
A-->B;
A-->C;
B-->D;
C-->D;