Skip to content

Instantly share code, notes, and snippets.

View XTechnology-TR's full-sized avatar
:shipit:
Focusing

xtechnology XTechnology-TR

:shipit:
Focusing
View GitHub Profile
@XTechnology-TR
XTechnology-TR / Responsive-ekran-boyutlari.css
Created February 27, 2024 19:13 — forked from serhanozcan/Responsive-ekran-boyutlari.css
Responsive ekran boyutları ve css media listesi
/*
##Cihaz = Masaüstü
##Ekran = 1281px 'den yüksek çözünürlükler için
*/
@media (min-width: 1281px) {
//CSS
}
@XTechnology-TR
XTechnology-TR / tor-proxy-as-podman-containder.md
Created October 23, 2023 01:20 — forked from valyakuttan/tor-proxy-as-podman-containder.md
Configue tor as a podman container in Fedora Silverblue

Configue tor as a podman container in Fedora Silverblue

Installation

  1. Pull image from dockerhub

         $ podman pull docker.io/osminogin/tor-simple
@XTechnology-TR
XTechnology-TR / privacy_policy.markdown
Created October 21, 2023 11:31 — forked from shinzui/privacy_policy.markdown
Devver Open Source Privacy Policy

Privacy Policy

Last revised on [DATE]

The Gist

[COMPANY] will collect certain non-personally identify information about you as you use our sites. We may use this data to better understand our users. We can also publish this data, but the data will be about a large group of users, not individuals.

We will also ask you to provide personal information, but you'll always be able to opt out. If you give us personal information, we won't do anything evil with it.

@XTechnology-TR
XTechnology-TR / meta-tags.md
Created September 16, 2023 16:01 — forked from whitingx/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
@XTechnology-TR
XTechnology-TR / meta.html
Created September 16, 2023 14:59 — forked from rajavijayach/meta.html
Meta Tags for better SEO
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#0095b6" />
<link href="https://cdn.company.com" rel="dns-prefetch" />
<title>Title of the page</title>
<meta name="keywords" content="company name, company category" />
<meta name="description" content="company description" />
@XTechnology-TR
XTechnology-TR / raffle.php
Created July 8, 2023 14:22 — forked from devalexluna/raffle.php
Raffle Number Generator
<?php
// Generate Random Raffle Number
// Default array reference
$raffle = range(1, 100);
// Fetch used raffle number
$used = "SELECT * FROM $raffletemp";
$query = $mysqli->query($used);
while ($u = mysqli_fetch_array($query)) {
$r[] = $u['used'];
@XTechnology-TR
XTechnology-TR / wp-perf.md
Created June 24, 2023 21:02 — forked from Ruzgfpegk/wp-perf.md
WordPress Performance & Development tips
@XTechnology-TR
XTechnology-TR / update-cdn.sh
Created February 8, 2023 19:15 — forked from rojenzaman/update-cdn.sh
firewalld rules for cloudflare cdn IPs (Red Hat, CentOS, Fedora)
#!/bin/bash
curl https://www.cloudflare.com/ips-v4 > .ips-v4
curl https://www.cloudflare.com/ips-v6 > .ips-v6
firewall-cmd --new-zone=cloudflare --permanent
firewall-cmd --reload
for i in `<.ips-v4`; do firewall-cmd --zone=cloudflare --add-source=$i; done
for i in `<.ips-v6`; do firewall-cmd --zone=cloudflare --add-source=$i; done
@XTechnology-TR
XTechnology-TR / grub.md
Created January 31, 2023 10:03 — forked from jfeilbach/grub.md
Make Linux fast

In /etc/default/grub, modify:

noibrs noibpb nopti nospectre_v2 nospectre_v1 l1tf=off nospec_store_bypass_disable no_stf_barrier mds=off tsx=on tsx_async_abort=off mitigations=off 

Then sudo update-grub

from https://make-linux-fast-again.com/