Skip to content

Instantly share code, notes, and snippets.

View azzarello's full-sized avatar

Connor Azzarello azzarello

  • Artisight
  • Seattle, WA
View GitHub Profile
@azzarello
azzarello / gist:db04701113e3a70dc02fcc3c81c1bc53
Created February 1, 2023 02:40
Undefined variable: 'config'
{ config, pkgs, lib, ... }:
let
dbus-sway-environment = pkgs.writeTextFile {
name = "dbus-sway-environment";
destination = "/bin/dbus-sway-environment";
executable = true;
text = ''
dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP=sway
@azzarello
azzarello / sway.log
Created January 31, 2023 16:53
Can't update display position with AMD RX 480 (worked with 6950 XT)
This file has been truncated, but you can view the full file.
00:00:00.000 [INFO] [sway/main.c:338] Sway version 1.8
00:00:00.000 [INFO] [sway/main.c:339] wlroots version 0.16.0
00:00:00.003 [INFO] [sway/main.c:120] Linux oven 6.1.8 #1-NixOS SMP PREEMPT_DYNAMIC Tue Jan 24 06:24:44 UTC 2023 x86_64 GNU/Linux
00:00:00.003 [INFO] [sway/main.c:136] Contents of /etc/lsb-release:
00:00:00.003 [INFO] [sway/main.c:120] DISTRIB_CODENAME=stoat
00:00:00.003 [INFO] [sway/main.c:120] DISTRIB_DESCRIPTION="NixOS 23.05 (Stoat)"
00:00:00.003 [INFO] [sway/main.c:120] DISTRIB_ID=nixos
00:00:00.003 [INFO] [sway/main.c:120] DISTRIB_RELEASE="23.05"
00:00:00.003 [INFO] [sway/main.c:120] LSB_VERSION="23.05 (Stoat)"
00:00:00.003 [INFO] [sway/main.c:136] Contents of /etc/os-release:
USE PVFC
CREATE LOGIN student WITH PASSWORD = '@Password';
CREATE USER student FROM LOGIN student;
ALTER ROLE db_datareader ADD MEMBER student;
GO
@azzarello
azzarello / .sql
Last active September 24, 2021 22:03
importPVFC
This file has been truncated, but you can view the full file.
CREATE DATABASE PVFC
GO
USE [PVFC]
GO
/****** Object: Table [dbo].[Customer_T] Script Date: 5/28/2021 3:30:53 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Customer_T](
@azzarello
azzarello / resume.json
Last active May 24, 2021 05:15
resume.json
{
"$schema": "https://json.schemastore.org/resume",
"basics": {
"name": "Connor Azzarello",
"label": "Recent CSE Graduate with a focus in Data Science, Information Systems, and DevOps | Co-Founder @ Gameday Guru | Teaching Assistant @ Santa Clara University Leavey School of Business",
"image": "",
"email": "connor.azzarello@gmail.com",
"phone": "4257614539",
"url": "",
"summary": "I am currently a Senior at Santa Clara University in the School of Engineering. My anticipated graduation date is June 2021 and I am working towards an undergraduate degree in Computer Science & Engineering. I have a passion for generating meaningful insights from the nearly limitless data we have available at our fingertips, in addition to all things Linux, open-source software, and hacking. I am currently involved with research projects at Santa Clara in the domains of IoT research, as well as criminal justice reform.\n\nVisit my portfolio at azzarello.github.io or find my GitHub repositories at git
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@azzarello
azzarello / restaurantLinkedList.c
Created October 18, 2017 20:34
restaurantLinkedList created by thewizardofazz - https://repl.it/Mqxv/1
// Connor Azzarello
// COEN 11 - Lab 5
// Wednesday Lab
#include <stdio.h>
#include <string.h>
void insert();
void search();
void show();