Skip to content

Instantly share code, notes, and snippets.

View EndlessTrax's full-sized avatar
🤜
Kung Fu Fighting

Ricky White EndlessTrax

🤜
Kung Fu Fighting
View GitHub Profile
@amigus
amigus / profile.ps1
Last active November 21, 2023 06:32
My PowerShell Profile
<# My $PROFILE; https://gist.github.com/amigus/26cfb6cc8578ef783668c0b9346bd26c #>
$ConfigDirectory = Get-Item $PROFILE | Select-Object -ExpandProperty DirectoryName
#region $env:Path
<#
The PSPaths.ps1 file is a list of expressions that evaluate to folder names e.g.
$env:USERPROFILE + '\.local\bin'
#>
foreach ($DirectoryExpression in Get-Content "${ConfigDirectory}\PSPaths.ps1") {
@tonybaloney
tonybaloney / image2ansi.py
Last active January 22, 2022 10:23
Display an image in ASCII with ANSI colors
"""
image2ansi.py
usage: image2ansi.py [-h] [--no-color] [--width WIDTH] path
Display an image in ASCII with ANSI colors
positional arguments:
path the path to the image file
optional arguments:
-h, --help show this help message and exit
--no-color no ANSI colors
--width WIDTH output width in characters (Default 120)
@tonybaloney
tonybaloney / Django-security.md
Last active September 29, 2024 02:06
A page of ideas on how I would look to compromise Django applications..

Ways to hack django apps...

A page of ideas on how I would look to compromise Django applications..

XSS (Cross-Site-Scripting)

Django comes with a automatic HTML escaping filter, so most XSS is stopped by the automatic escaping in views

@IanColdwater
IanColdwater / twittermute.txt
Last active April 14, 2025 16:31
Here are some terms to mute on Twitter to clean your timeline up a bit.
Mute these words in your settings here: https://twitter.com/settings/muted_keywords
ActivityTweet
generic_activity_highlights
generic_activity_momentsbreaking
RankedOrganicTweet
suggest_activity
suggest_activity_feed
suggest_activity_highlights
suggest_activity_tweet
@bradtraversy
bradtraversy / pipenv_cheat_sheet.md
Last active April 27, 2025 02:31
Pipenv cheat sheet for common commands

Pipenv Cheat Sheet

Install pipenv

pip3 install pipenv

Activate

pipenv shell
@bradtraversy
bradtraversy / webdev_online_resources.md
Last active May 6, 2025 14:17
Online Resources For Web Developers (No Downloading)
@davidfowl
davidfowl / dotnetlayout.md
Last active May 9, 2025 16:45
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/