Skip to content

Instantly share code, notes, and snippets.

View pmartinez8241's full-sized avatar
🇨🇦
WORKING FOR UNICAL AVIATION

PETE MARTINEZ pmartinez8241

🇨🇦
WORKING FOR UNICAL AVIATION
  • Cal Poly Pomona JAVA TUTOR
  • Walnut CA 91789
View GitHub Profile
@pmartinez8241
pmartinez8241 / fallout_new_vegas_02092025_02_21.csv
Last active February 23, 2025 23:52
Presentmon Data From Fallout New vegas 02/09/2025 2:23am
We can't make this file beautiful and searchable because it's too large.
Application,ProcessID,SwapChainAddress,PresentRuntime,SyncInterval,PresentFlags,AllowsTearing,PresentMode,FrameType,CPUStartTime,FrameTime,CPUBusy,CPUWait,GPULatency,GPUTime,GPUBusy,GPUWait,DisplayLatency,DisplayedTime,AnimationError,AnimationTime,AllInputToPhotonLatency,ClickToPhotonLatency,InstrumentedLatency,GPUPower,GPUVoltage,GPUFrequency,GPUTemperature,GPUUtilization,3D/ComputeUtilization,MediaUtilization,GPUMemoryPower,GPUMemoryVoltage,GPUMemoryFrequency,GPUMemoryEffectiveFrequency,GPUMemoryTemperature,GPUMemorySize,GPUMemorySizeUsed,GPUMemoryMaxBandwidth,GPUMemoryReadBandwidth,GPUMemoryWriteBandwidth,GPUFanSpeed[0],GPUFanSpeed[1],GPUFanSpeed[2],GPUFanSpeed[3],GPUPowerLimited,GPUTemperatureLimited,GPUCurrentLimited,GPUVoltageLimited,GPUUtilizationLimited,GPUMemoryPowerLimited,GPUMemoryTemperatureLimited,GPUMemoryCurrentLimited,GPUMemoryVoltageLimited,GPUMemoryUtilizationLimited,CPUUtilization,CPUPower,CPUTemperature,CPUFrequency
FalloutNV.exe,1420,0xFDCB580,Direct3D 9,0,0,1,Hardware: Independent Flip,A
---
title: "google_analytics_cyclistic_case_study"
author: "Pete Martinez"
date: "2024-08-07"
output:
html_document:
toc: true
theme: united
---
library(tidyverse)
library(dplyr)
library(tibble)
library(janitor)
library("lubridate")
library(here)
library(skimr)
library(ggplot2)
#READ CSV FILES
local_tv_location <- "T:\\Media\\TV Shows"
network_tv_location <- r"{Z:\Entertainment\Media\TV Shows/}"
#************* ROOT COUNT ******************
root_local = list()
root_network = list()
root_local_dir = list.dirs(local_tv_location)
for(x in root_local_dir)
{
use gtk::{prelude::*, Orientation};
use gtk::{glib, Application, ApplicationWindow, Widget};
use std::fs;
const APP_ID: &str = "org.gtk_rs.HelloWorld2";
fn main() -> glib::ExitCode {
// Create a new application
let app = Application::builder().application_id(APP_ID).build();
// Connect to "activate" signal of `app`
@pmartinez8241
pmartinez8241 / episode_includes.sql
Created September 14, 2023 05:20
episodes_insert_list
INSERT INTO tv.episodes (name) values (E'Band of Brothers - s01e01 - Currahee.mkv');
INSERT INTO tv.episodes (name) values (E'Band of Brothers - s01e01 - Currahee.srt');
INSERT INTO tv.episodes (name) values (E'Band of Brothers - s01e02 - Day of Days.mkv');
INSERT INTO tv.episodes (name) values (E'Band of Brothers - s01e02 - Day of Days.srt');
INSERT INTO tv.episodes (name) values (E'Band of Brothers - s01e03 - Carentan.mkv');
INSERT INTO tv.episodes (name) values (E'Band of Brothers - s01e03 - Carentan.srt');
INSERT INTO tv.episodes (name) values (E'Band of Brothers - s01e04 - Replacements.mkv');
INSERT INTO tv.episodes (name) values (E'Band of Brothers - s01e04 - Replacements.srt');
INSERT INTO tv.episodes (name) values (E'Band of Brothers - s01e05 - Crossroads.mkv');
INSERT INTO tv.episodes (name) values (E'Band of Brothers - s01e05 - Crossroads.srt');
@pmartinez8241
pmartinez8241 / POSTGRESQL_REFCURSOR_EXAMPLE.py
Last active May 20, 2023 00:02
How to create, then use, a postgres REFCURSOR in postgres
import psycopg2
import json
def get_drives_and_media_type():
results = []
with psycopg2.connect("host=# dbname=entertainment_database user=# password=#") as conn:
with conn.cursor() as db_cursor: