Skip to content

Instantly share code, notes, and snippets.

View tavy315's full-sized avatar
🎯
Focusing

Octav tavy315

🎯
Focusing
View GitHub Profile
@tavy315
tavy315 / iptables_rules.sh
Created December 6, 2016 09:55 — forked from virtualstaticvoid/iptables_rules.sh
25 Most Frequently Used Linux IPTables Rules Examples
# Modify this file accordingly for your specific requirement.
# http://www.thegeekstuff.com
# 1. Delete all existing rules
iptables -F
# 2. Set default chain policies
iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP
@tavy315
tavy315 / MugAlertCommand.php
Created December 13, 2020 20:25 — forked from 94noni/MugAlertCommand.php
MugAlertCommand.php
<?php
namespace App\Command;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\DomCrawler\Crawler;
use Symfony\Component\Mailer\MailerInterface;
@tavy315
tavy315 / build-blog.yml
Created February 6, 2022 18:50 — forked from radupotop/build-blog.yml
.github/workflows/build-blog.yml
# .github/workflows/build-blog.yml
#
name: Build & Publish blog
on:
push:
branches: [ master ]
jobs:
build-blog: