Skip to content

Instantly share code, notes, and snippets.

View azizozbek's full-sized avatar

Aziz Ozbek azizozbek

View GitHub Profile
@azizozbek
azizozbek / functions.php
Last active September 13, 2023 20:18
Get wordpress Tag Cloud by Shortcode
<?php
function get_tag_cloud() {
$args = array(
'smallest' => 15,
'largest' => 15,
'unit' => 'px',
'number' => 15,
'format' => 'flat',
'separator' => "\n #",
@azizozbek
azizozbek / index.html
Created May 11, 2020 18:48
SLİDER LANDİNG PAGE // Tesla Test Drive
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Home-Page</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.1/css/all.css" integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,300i,500,700,900" rel="stylesheet">
@azizozbek
azizozbek / sources.list
Created November 17, 2019 16:57
Kali Linux - APT Source for Switzerland
# deb cdrom:[Debian GNU/Linux 2017.2 _Kali-rolling_ - Official Snapshot amd64 LIVE/INSTALL Binary 20170917-01:51]/ kali-rolling contrib main non-free
#deb cdrom:[Debian GNU/Linux 2017.2 _Kali-rolling_ - Official Snapshot amd64 LIVE/INSTALL Binary 20170917-01:51]/ kali-rolling contrib main non-free
deb http://http.kali.org/kali kali-rolling main contrib non-free
# For source package access, uncomment the following line
# deb-src http://http.kali.org/kali kali-rolling main contrib non-free
deb http://http.kali.org/kali sana main non-free contrib
deb http://security.kali.org/kali-security sana/updates main contrib non-free
# For source package access, uncomment the following line
@azizozbek
azizozbek / sources.list
Last active November 17, 2019 16:57
Ubuntu deb8 - APT Sources for Switzerland
deb http://mirror.switch.ch/ftp/mirror/ubuntu/ xenial-updates main restricted
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates main restricted
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team. Also, please note that software in universe WILL NOT receive any
## review or updates from the Ubuntu security team.
deb http://mirror.switch.ch/ftp/mirror/ubuntu/ xenial universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial universe
deb http://mirror.switch.ch/ftp/mirror/ubuntu/ xenial-updates universe
# deb-src http://us.archive.ubuntu.com/ubuntu/ xenial-updates universe
@azizozbek
azizozbek / MRTG as Startup Script
Created March 18, 2018 21:10
MRTG as Startup Script
#! /bin/sh
### BEGIN INIT INFO
# Provides: mrtg
# Required-Start:
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6
# Short-Description: mrtg init script
# Description: This file is used to start, stop, restart, and determined status of the mrtg daemon.
# Author: iceflatline.com, azizozbek.ch
@azizozbek
azizozbek / form.php
Last active November 30, 2017 15:58
<script>
function kapat() {
$('#info').fadeOut(500);
}
function gonder() {
$('.e_name').hide();
$('.e_email').hide();
$('.e_sub').hide();
@azizozbek
azizozbek / form.php
Last active November 30, 2017 13:31
<div class="container">
<h1>Php Ajax Contact Form</h1>
<form method="post" class="form-horizontal" action="send.php" id="contactForm" >
<div class="form-group">
<label for="name"> Name </label><br />
<input type="text" id="name" name="name" />
<span class="alert alert-danger e_name">*Name.</span>
</div>
<div class="form-group">
<label for="email">Email</label><br />
<style type='text/css'>
.e_name, .e_email, .e_email-1, .e_sub, .e_mes { display:none;}
</style>