Skip to content

Instantly share code, notes, and snippets.

View coltenkrauter's full-sized avatar
🔥
Fire

Colten Krauter coltenkrauter

🔥
Fire
  • Stevensville, MT
View GitHub Profile
@coltenkrauter
coltenkrauter / creating-individual-movie-folders-plex.md
Last active September 11, 2023 21:01
This guide illustrates how to meticulously organize movie files into individual directories within your Plex Media Library, either recursively or non-recursively, to streamline metadata management and enhance user experience.
@coltenkrauter
coltenkrauter / web-media-download-guide.md
Last active September 7, 2023 18:56
A comprehensive guide for developers on utilizing wget to download media from "Index of" websites and other web platforms, along with alternative tools and interesting facts about the origin and utility of "Index of" websites.

Simple Media Download Guide

Step-by-step Instructions on Using wget to Download Media Content

  1. Install wget: Before you begin, ensure that wget is installed on your system. On Linux, you can install it using the command sudo apt install wget. For Windows and Mac, visit the official website to download and install.

  2. Locate the Media URL: Identify the URL of the website that hosts the media files you intend to download. Remember, downloading copyrighted material without permission is illegal and unethical.

  3. Using wget to Download Single Media File:

@coltenkrauter
coltenkrauter / 5-popular-regex-patterns-guide.md
Last active September 7, 2023 03:20
Explore this straightforward guide to quickly understand and use 5 popular regex patterns across Python, JavaScript, TypeScript, and Java. Packed with examples, tips, and fun facts, it's your go-to resource for enhancing your coding projects with regex expertise.
@coltenkrauter
coltenkrauter / crafting-effective-gists.md
Last active September 5, 2023 17:27
This handbook serves as a comprehensive guide for developers, elucidating the process of crafting insightful Gists. Learn how to encapsulate challenges, solutions, and experiences, fostering a vibrant and collaborative knowledge-sharing community.
@coltenkrauter
coltenkrauter / 35-free-apis-curated-by-chatgpt.md
Last active March 15, 2024 16:37
A compilation of 35 APIs spanning various categories including general utility, advanced features, and including niche ones. Curated with the help of ChatGPT.

35 Free APIs Curated by ChatGPT-4

Hey, tech enthusiasts! Ever been in the middle of a project and thought, "I wish there was an API for that?" Well, you're in luck! I've sifted through the digital realm to bring you a compilation of 35 APIs, each offering unique functionalities that can be the missing piece in your tech puzzle. Whether you're just starting your coding journey or are a seasoned developer, this list promises something for everyone. And here's a fun twist: this isn't just my brainchild. I had a little help from ChatGPT by OpenAI. Yep, AI-driven insights went into this, giving it that extra touch of tech awesomeness. Ready to dive in? Let's explore!

General Utility APIs

  1. JSONPlaceholder
    Fake online REST API perfect for testing and prototyping. Developers can use it for mockup data without setting up a backend.

  2. Dog API

@coltenkrauter
coltenkrauter / gpt-4-recommended-thriller-movies.md
Last active September 5, 2023 18:39
A collection of 25 thriller movie recommendations, curated with the insights of GPT-4.
@coltenkrauter
coltenkrauter / react-app-with-nextui-setup-guide.md
Last active September 5, 2023 18:40
A step-by-step guide to setting up a React app with create-react-app and integrating the NextUI component library.

Get Started with React & NextUI

Setting up a React application integrated with a component library can be a game-changer for rapid development. This guide provides a step-by-step process to establish a React application using the Create React App tool and seamlessly integrate it with NextUI components. Following this will ensure a robust foundation and a visually appealing user interface without the hassle of crafting everything from scratch.

A reliable guide to establishing a foundational React application with seamless integration of NextUI components, aligned with AWS best practices.

Resources

@coltenkrauter
coltenkrauter / ultimate-coding-interview-prep.md
Last active August 26, 2023 23:25
A compilation of interview insights and coding know-how. Level up your skills to face technical challenges head-on and ace those interviews.
@coltenkrauter
coltenkrauter / project-naming-guidelines.md
Last active September 5, 2023 18:40
Your guide to mastering the art of project code naming conventions, filled with examples and best practices for clear and efficient development.

Project Naming Guidelines

Introduction

This document outlines the principles and guidelines for naming projects and provides essential tenets to follow. Adopting consistent naming conventions and adhering to these tenets will enhance organization, maintainability, and collaboration within your development team.

Tenets

  1. Durability: Names should withstand the test of time. Choose names that remain relevant and meaningful as the project evolves. Avoid using technology-specific terms that might become outdated.
@coltenkrauter
coltenkrauter / regex-match-prime-numbers.md
Created July 11, 2023 19:20
Function to match Prime numbers Java/JavaScript/Python

TypeScript

// Using ECMAScript 6 repeat function
const isPrime = (n: number): boolean => {
    let re = /^.?$|^(..+?)\1+$/;
    return !re.test('1'.repeat(n));
}