Skip to content

Instantly share code, notes, and snippets.

@acstrahl
acstrahl / README.md
Last active October 1, 2024 21:32
This is a sample GitHub Gist

This is a description of my project. The goal of this project is to:

  • Demonstrate GitHub Gists
  • Highlight the importance of a README file

Takeaways

Throughout this project I learned that GitHub Gists are awesome.

Next Steps

If I were to continue this project, I'd showcase even more abilities of GitHub and incorporate more Markdown features into my README file to make the file more readable for my audience.

@acstrahl
acstrahl / Project_Euler_1.py
Created October 1, 2024 21:45
Sum of multiples (3 or 5)
sum = 0
for i in range(1000):
if i % 3 == 0 or i % 5 == 0:
sum += i
print(sum)
@acstrahl
acstrahl / project.sql
Created October 2, 2024 20:46
Dataquest Customers and Products Analysis Using SQL Project
-- Customers and Products Analysis Project
-- First, let's look at the count of rows and columns for each table in the database:
SELECT 'Customers' AS table_name,
13 AS number_of_attribute,
COUNT(*) AS number_of_row
FROM Customers
UNION ALL
@acstrahl
acstrahl / Basics.ipynb
Created October 2, 2024 20:48
My Solution for Dataquests Profitable Apps Project (DEMO)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@acstrahl
acstrahl / project.ipynb
Created October 3, 2024 16:44
Profitable Apps Project DEMO
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@acstrahl
acstrahl / profitable_apps_demo.ipynb
Last active December 18, 2024 22:40
Project walkthrough demo
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@acstrahl
acstrahl / profitable_apps_demo.ipynb
Last active December 19, 2024 18:21
test for webinar
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@acstrahl
acstrahl / Basics.ipynb
Created January 16, 2025 18:34
testing123
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@acstrahl
acstrahl / NYC_School_Data_Demo.ipynb
Last active January 31, 2025 19:40
Guided Project Notebook for Dataquest
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@acstrahl
acstrahl / prison_break_project_lab_demo.ipynb
Created February 26, 2025 23:48
My Project Lab Walkthrough file - code along with me!
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.