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
{ 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 |
This file has been truncated, but you can view the full file.
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
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: |
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
USE PVFC | |
CREATE LOGIN student WITH PASSWORD = '@Password'; | |
CREATE USER student FROM LOGIN student; | |
ALTER ROLE db_datareader ADD MEMBER student; | |
GO |
This file has been truncated, but you can view the full file.
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
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]( |
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
{ | |
"$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": "[email protected]", | |
"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.
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
// Connor Azzarello | |
// COEN 11 - Lab 5 | |
// Wednesday Lab | |
#include <stdio.h> | |
#include <string.h> | |
void insert(); | |
void search(); | |
void show(); |