One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Expected Behaviour
Actual Behaviour
Screenshot(s)
Device Type:
I hereby claim:
To claim this, I am signing this object:
-- code for https://youtu.be/tp_5c6jaNQE | |
create table users ( | |
-- a table can only have 1 primary key | |
id serial primary key, | |
first_name varchar(255) not null, | |
last_name text, | |
age int, | |
email text unique not null | |
); |
MediaExpr { | |
// Syntax Grammar | |
Main = Expression | |
Expression = LogicOr | |
LogicOr = LogicAnd ("or" LogicAnd)* | |
LogicAnd = Equality ("and" Equality)* | |
Equality = Comparison (("!=" | "==") Comparison)* | |
Comparison = Term ((">" | ">=" | "<" | "<=") Term)* | |
------------------------------------- | |
Translated Report (Full Report Below) | |
------------------------------------- | |
Process: zed [30785] | |
Path: /Applications/Zed.app/Contents/MacOS/zed | |
Identifier: dev.zed.Zed | |
Version: 0.147.2 (20240807.152727) | |
Code Type: ARM-64 (Native) | |
Parent Process: launchd [1] |
#!/usr/bin/env node | |
const fs = require("fs"); | |
const path = require("path"); | |
function readLines(absolutePath) { | |
const contents = fs.readFileSync(absolutePath, "utf8"); | |
return contents.split("\n"); | |
} |
#! /bin/bash | |
if [[ "$1" == "on" ]]; then | |
networksetup -setwebproxy "Wi-Fi" 127.0.0.1 8080 | |
networksetup -setsecurewebproxy "Wi-Fi" 127.0.0.1 8080 | |
elif [[ "$1" == "off" ]]; then | |
networksetup -setwebproxystate "Wi-Fi" off | |
networksetup -setsecurewebproxystate "Wi-Fi" off |