Skip to content

Instantly share code, notes, and snippets.

View projectoperations's full-sized avatar
💭
building learning and connections

projectoperations projectoperations

💭
building learning and connections
View GitHub Profile
@projectoperations
projectoperations / seoreport.php
Created October 5, 2023 07:46 — forked from neo22s/seoreport.php
seo report php
<?php
/**
*
* SEO report for different metrics
*
* @category SEO
* @author Chema <chema@garridodiaz.com>
* @copyright (c) 2009-2012 Open Classifieds Team
* @license GPL v3
* Based on seo report script http://www.phpeasycode.com && PHP class SEOstats
Usage: dockerd COMMAND
A self-sufficient runtime for containers.
Options:
--add-runtime runtime Register an additional OCI compatible runtime (default [])
--allow-nondistributable-artifacts list Push nondistributable artifacts to specified registries (default [])
--api-cors-header string Set CORS headers in the Engine API
--authorization-plugin list Authorization plugins to load (default [])
--bip string Specify network bridge IP
@projectoperations
projectoperations / daemon.json
Created October 13, 2023 17:25 — forked from dogukancagatay/daemon.json
Sample Docker daemon.json
{
"data-root": "/mnt/disk1/docker",
"storage-driver": "overlay2",
"insecure-registries" : [
"192.168.1.200:5000"
],
"dns": [
"192.168.1.1"
],
"registry-mirrors" : [
@projectoperations
projectoperations / git-ssh-auth-win-setup.md
Created October 14, 2023 23:45 — forked from bsara/git-ssh-auth-win-setup.md
Setup SSH Authentication for Git Bash on Windows

Setup SSH Authentication for Git Bash on Windows

Prepararation

  1. Create a folder at the root of your user home folder (Example: C:/Users/uname/) called .ssh.
  2. Create the following files if they do not already exist (paths begin from the root of your user home folder):
  • .ssh/config
@projectoperations
projectoperations / settings.json
Last active March 7, 2024 05:41 — forked from hl2guide/settings.json
example settings.json
{
"workbench.editor.showIcons": true,
"workbench.startupEditor": "none",
"editor.fontSize": 12,
"editor.minimap.enabled": false,
"editor.mouseWheelZoom": true,
"editor.tabSize": 4,
"editor.renderWhitespace": "all",
"editor.insertSpaces": true,
"editor.rulers": [
{
"action": "renamed",
"changes": {
"login": {
"from": "codeapprove-test-org"
}
},
"organization": {
"login": "codeapprove-test",
"id": 85906801,
@projectoperations
projectoperations / The Ultimate Windows Development Environment.md
Created October 16, 2023 01:11
How to set up the ultimate Windows development environment
@projectoperations
projectoperations / README.md
Created October 16, 2023 16:54 — forked from mrkpatchaa/README.md
Bulk delete github repos

Use this trick to bulk delete your old repos or old forks

(Inspired by https://medium.com/@icanhazedit/clean-up-unused-github-rpositories-c2549294ee45#.3hwv4nxv5)

  1. Open in a new tab all to-be-deleted github repositores (Use the mouse’s middle click or Ctrl + Click) https://github.com/username?tab=repositories

  2. Use one tab https://chrome.google.com/webstore/detail/onetab/chphlpgkkbolifaimnlloiipkdnihall to shorten them to a list.

  3. Save that list to some path

  4. The list should be in the form of “ur_username\repo_name” per line. Use regex search (Sublime text could help). Search for ' |.*' and replace by empty.

@projectoperations
projectoperations / _webserver.md
Created October 17, 2023 18:34 — forked from jgravois/_webserver.md
a simple guide for getting a local web server set up

Do I have a web server running?


having a web server turned on doesn't necessarily mean you are serving pages on the world wide web. its what allows you to load your own static files (.html, .js etc.) in a browser via http://.

if you're not sure whether or not you have a web server running, no problem! its easy to confirm.

what happens when you visit http://localhost/?