Skip to content

Instantly share code, notes, and snippets.

View abenteuerzeit's full-sized avatar
💭
Open to collaborate

Adrian Mróz abenteuerzeit

💭
Open to collaborate
View GitHub Profile
@rmusser01
rmusser01 / GoogleHackMasterList.txt
Created December 6, 2017 21:57 — forked from cmartinbaughman/GoogleHackMasterList.txt
The definitive super list for "Google Hacking".
admin account info" filetype:log
!Host=*.* intext:enc_UserPassword=* ext:pcf
"# -FrontPage-" ext:pwd inurl:(service | authors | administrators | users) "# -FrontPage-" inurl:service.pwd
"AutoCreate=TRUE password=*"
"http://*:*@www” domainname
"index of/" "ws_ftp.ini" "parent directory"
"liveice configuration file" ext:cfg -site:sourceforge.net
"parent directory" +proftpdpasswd
Duclassified" -site:duware.com "DUware All Rights reserved"
duclassmate" -site:duware.com
@joshbuchea
joshbuchea / semantic-commit-messages.md
Last active June 11, 2024 14:01
Semantic Commit Messages

Semantic Commit Messages

See how a minor change to your commit message style can make you a better programmer.

Format: <type>(<scope>): <subject>

<scope> is optional

Example

@fredbenenson
fredbenenson / kickstarter_sql_style_guide.md
Last active April 2, 2024 15:19
Kickstarter SQL Style Guide
layout title description tags
default
SQL Style Guide
A guide to writing clean, clear, and consistent SQL.
data
process

Purpose

@davidfowl
davidfowl / dotnetlayout.md
Last active June 3, 2024 23:39
.NET project structure
$/
  artifacts/
  build/
  docs/
  lib/
  packages/
  samples/
  src/
 tests/
@sjwhitmore
sjwhitmore / MealPlanner.py
Created May 14, 2014 22:03
This is a small meal planner written in Python.
# This is a meal planner to help me decide what to eat for dinner. I don't like to
# waste a lot of time thinking about what to cook, so this would ideally help me create a
# varied menu without too much deliberation.
import datetime
import random
class Food:
def __init__(self,name,group = None,health = None, price = None, preptime = None):
# name of food
@mrkline
mrkline / c_sharp_for_python.md
Last active May 30, 2024 15:35
An intro to C# for a Python developer. Made for one of my coworkers.

C# For Python Programmers

Syntax and core concepts

Basic Syntax

  • Single-line comments are started with //. Multi-line comments are started with /* and ended with */.

  • C# uses braces ({ and }) instead of indentation to organize code into blocks. If a block is a single line, the braces can be omitted. For example,