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 / wordpress-checklist.md
Last active July 4, 2022 04:55 — forked from ramunasnognys/wordpress-checklist.md
Ultimate WordPress Checklist

WordPress Development Checklist

WordPress Setup Checklist

First things first. This first WordPress checklist will help you start out on the right foot when you start to create a WordPress website.

  • Purchase a domain name.
  • Purchase a hosting plan from a reputable hosting company that specializes in WordPress hosting.
  • Install the latest version of the WordPress software on your server.

Basic WordPress Development Checklist

The following developer WordPress checklist is a brief starting point. While there are a number of specific tasks that have to be done, everyone has their own way of doing things. Add to this list as you develop your own workflow.

  • Set up new domain in cPanel
@XTechnology-TR
XTechnology-TR / hero.html
Last active November 21, 2021 18:05
Html Hero Video Section
<!-- Hero Section -->
<div id="hero" class="has-image autoscroll">
<div id="hero-styles">
<div id="hero-caption" class="reverse-parallax-onscroll">
<div class="inner">
<div class="hero-title">
<span>Dance Room</span>
</div>
<div class="hero-subtitle">Video</div>
</div>
@XTechnology-TR
XTechnology-TR / vs_code_extension.json
Created January 28, 2022 09:38
Vs Code extension
code --install-extension QassimFarid.ejs-language-support
code --install-extension SirTori.indenticator
code --install-extension TimonVS.ReactSnippetsStandard
code --install-extension TwentyChung.jsx
code --install-extension abusaidm.html-snippets
code --install-extension asvetliakov.move-imports
code --install-extension aws-scripting-guy.cform
code --install-extension bierner.markdown-preview-github-styles
code --install-extension ccitiriga.TSMethodCreator
code --install-extension christian-kohler.npm-intellisense
@XTechnology-TR
XTechnology-TR / fakemail.py
Created April 4, 2022 20:18
Fake Mail Sender
import os
import sys
import time
from os import system
from time import sleep
## ORIGINAL SCRIPT BY THELINUXCHOICE
try:
import requests
@XTechnology-TR
XTechnology-TR / index.html
Created April 14, 2022 13:59
Overlapping sections only CSS
<section class="section">
<h2 class="title">Winter</h2>
</section>
<section class="section">
<h2 class="title">Spring</h2>
</section>
<section class="section">
<h2 class="title">Summer</h2>
</section>
<section class="section">
@XTechnology-TR
XTechnology-TR / index.html
Created April 14, 2022 14:20
PureCSS fullscreen menu
<header>
<input type='checkbox' id='toggle' style='display:none;' />
<label class='toggle-btn toggle-btn__cross' for='toggle'>
<div class="bar"></div>
<div class="bar"></div>
<div class="bar"></div>
</label>
<nav>
<ul>
<li><a href="#">Home</a></li>
@XTechnology-TR
XTechnology-TR / index.html
Created April 14, 2022 14:55
Scale hero section on scroll
<div class="hero">
<h1>Get scrollin'</h1>
<div class="down">
<svg viewBox="0 0 24 24" width="24" height="24" stroke="currentColor" stroke-width="2" fill="none" stroke-linecap="round" stroke-linejoin="round"><polyline points="7 13 12 18 17 13"></polyline><polyline points="7 6 12 11 17 6"></polyline></svg>
</div>
</div>
<div class="content">💙</div>
@XTechnology-TR
XTechnology-TR / index.html
Created April 14, 2022 16:10
Smooth Scrolling Sticky ScrollSpy Navigation
<main>
<div>
<h1>Smooth Scrolling Sticky ScrollSpy Navigation</h1>
<p><em>Want an explanation of how this works?<br />&rarr; <a href="https://www.bram.us/2020/01/10/smooth-scrolling-sticky-scrollspy-navigation/" target="_top">https://www.bram.us/2020/01/10/smooth-scrolling-sticky-scrollspy-navigation/</a></em></p>
<section id="introduction">
<h2>Introduction</h2>
<p>…</p>
</section>
<section id="request-response">
<h2>Request &amp; Response</h2>