Skip to content

Instantly share code, notes, and snippets.

View mestoness's full-sized avatar
🎯
Focusing

Ahmet Baki Memiş mestoness

🎯
Focusing
  • ********
View GitHub Profile
@mestoness
mestoness / d
Last active December 18, 2023 06:06
d
dsssdddd
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link
href="https://unpkg.com/[email protected]/dist/tailwind.min.css"
rel="stylesheet"
/*!
* gridMest (https://github.com/mestoness/gridMest)
* Author : Ahmet Baki Memiş
* Licensed under MIT (https://github.com/mestoness/gridMest/blob/master/LICENSE)
*/html{box-sizing:border-box;-ms-overflow-style:scrollbar}*,::after,::before{box-sizing:inherit}.ns-container,.ns-container-fluid,.ns-container-lg,.ns-container-md,.ns-container-sm,.ns-container-xl{margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px;width:100%}@media (min-width:576px){.ns-container,.ns-container-sm{max-width:540px}}@media (min-width:768px){.ns-container,.ns-container-md,.ns-container-sm{max-width:720px}}@media (min-width:992px){.ns-container,.ns-container-lg,.ns-container-md,.ns-container-sm{max-width:960px}}@media (min-width:1200px){.ns-container,.ns-container-lg,.ns-container-md,.ns-container-sm,.ns-container-xl{max-width:1140px}}.ns-row{display:flex;flex-wrap:wrap;margin-left:-15px;margin-right:-15px}.ns-row.no-gutters{margin-left:0;margin-right:0}.ns-row.no-gutters>[class*=ns-col-]{padding-left:0;padding
@mestoness
mestoness / README.md
Created March 18, 2021 06:52 — forked from nikcub/README.md
Facebook PHP Source Code from August 2007
{
"date": "2021-02-27 05:52:42.043361",
"proxies": [
{
"google_error": "no",
"google_status": 403,
"google_total_time": 4059,
"ip": "106.104.148.208",
"port": "80",
@mestoness
mestoness / .md
Last active February 23, 2021 17:36
javascript extend function
    var extend = function() {
        var extended = {};
        for (key in arguments) {
            var argument = arguments[key];
            for (prop in argument) {
                if (Object.prototype.hasOwnProperty.call(argument, prop)) {
                    extended[prop] = argument[prop];
                }
            }
@mestoness
mestoness / README.md
Created February 21, 2021 19:30 — forked from joyrexus/README.md
Vanilla JS equivalents of jQuery methods

Sans jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})
/*!
* Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
*/
/*!
* Font Awesome Free 5.15.2 by @fontawesome - https://fontawesome.com
* License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
*/
@font-face {
font-family: FontAwesome;
@mestoness
mestoness / index.html
Created February 10, 2021 14:42
responsive navbar
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>