Skip to content

Instantly share code, notes, and snippets.

View henryvoorburg's full-sized avatar

henryvoorburg

View GitHub Profile
@karlhillx
karlhillx / macos_big_sur_homebrew_apache_php_mariadb_2020.md
Last active May 10, 2024 03:16
macOS Big Sur 11.0 Setup: Homebrew + Apache + PHP + MariaDB (Regularly updated)

macOS Big Sur 11.0 Setup: Homebrew + Apache + PHP + MariaDB

This document helps get your macOS development environment up and running with the latest versions of Homebrew, Apache, PHP, and MariaDB.

@sundowndev
sundowndev / GoogleDorking.md
Last active July 29, 2024 12:48
Google dork cheatsheet

Google dork cheatsheet

Search filters

Filter Description Example
allintext Searches for occurrences of all the keywords given. allintext:"keyword"
intext Searches for the occurrences of keywords all at once or one at a time. intext:"keyword"
inurl Searches for a URL matching one of the keywords. inurl:"keyword"
allinurl Searches for a URL matching all the keywords in the query. allinurl:"keyword"
intitle Searches for occurrences of keywords in title all or one. intitle:"keyword"
@lukas-h
lukas-h / getip.c
Last active July 13, 2020 08:49
Resolve IP as hostname (unix console tool)
/*
* `getip.c'
*
* Copyright (C) 2015, 2016 Lukas Himsel <lukas.himsel@web.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
@lukas-h
lukas-h / backup.sh
Created May 1, 2019 15:15
Backup your linux system harddrive
#!/bin/sh
# Written by Lukas Himsel <lukas.himsel@web.de>
#
# -> backup your complete linux system <-
#
# Variables:
# BACKUP_DEVICE is the *mounted* harddrive for the backup
# BACKUP_DATE is the actual date and it's used to create a folder
# with the actual date
#
@FrancesCoronel
FrancesCoronel / grant-application.md
Last active July 19, 2020 15:42
Sentry Open Source Grant Application 2019

1. Link to the project (it should already exist)

https://www.techqueria.org

https://github.com/techqueria/website

2. Project details: What is the project’s goal? Why is it important or interesting? Who uses it?

Techqueria is one of the largest communities of Latinx professionals in the tech industry. We build Latinx-centered spaces that revolve around career advice, technical talks, mentorship, open jobs, upcoming events/conferences, speaking opportunities, and open-source. We come from all walks of life and believe that the diversity of our community is the most reliable asset we have.

@lukas-h
lukas-h / license-badges.md
Last active May 10, 2024 01:14
Lizenz-Buttons für dein Projekt

Markdown Lizenz-Buttons

Sammlung von Lizenz-Schildern (Badges) für die README-Datei deines Projekts. Diese Liste enthält die meist verbreiteten Open Source und Open Data Lizenzen. Kopieren und fügen Sie den Code unter den Badges einfach in Ihre Markdown-Dateien ein.

Notes

@yahyaerturan
yahyaerturan / .history
Last active April 5, 2021 05:58
composer.lock file - for - security.firewall.map has a dependency on a non-existent service security.request_matcher.zfHj2lW
1. composer require server --dev
symfony/process (v4.1.6)
symfony/web-server-bundle (v4.1.6)
Symfony operations: 1 recipe (418553c035c1340534830260d374a8d2)
- Configuring symfony/web-server-bundle (>=3.3):
2. composer require make --dev
Using version ^1.8 for symfony/maker-bundle
@squarism
squarism / system_replacements.md
Last active August 15, 2023 02:37
Modern system utility replacements (Go / Rust or even just something new)

Interesting and Modern CLI Tools

The absolute requirement is that these must be binaries that could go into /usr/bin one day. No python, ruby or js stuff. Not that dynamic languages are bad/evil, but I think system utilities should be binaries. I also think it's interesting that people are writing replacements in Go/Rust/Other that rethink some unix legacy. Replacement doesn't mean better in all cases. I just think it's an interesting time but also a good measure of what these compiled languages can handle/tackle/address. Will we see larger and more impressive CLIs? Or will the feature sets be about the same but the quality/stability/safety be better?

It's going to be reductive to explain some of these tools in one line.

  • exa - ls replacement
  • caddy - HTTP server (better than python -m SimpleHTTPServer)
@lukas-h
lukas-h / head.html
Last active July 13, 2020 08:54
AMP jekyll include head
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0">
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<link rel="canonical" href="{{ site.url }}{{ site.baseurl }}{{ page.url }}" />
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
@lukas-h
lukas-h / footer.html
Created March 26, 2017 09:28
Footer for jekyll sites, that iterates all pages (here with css classes for materializecss)