Skip to content

Instantly share code, notes, and snippets.

View AmigoDheena's full-sized avatar
🏠
Working from home

Dheenadhayalan AmigoDheena

🏠
Working from home
View GitHub Profile
@AmigoDheena
AmigoDheena / css-media-queries-cheat-sheet.css
Created June 14, 2021 15:53 — forked from bartholomej/css-media-queries-cheat-sheet.css
CSS Media Query Cheat Sheet (with Foundation)
/*------------------------------------------
Responsive Grid Media Queries - 1280, 1024, 768, 480
1280-1024 - desktop (default grid)
1024-768 - tablet landscape
768-480 - tablet
480-less - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) { }
@media all and (min-width: 768px) and (max-width: 1024px) { }
@AmigoDheena
AmigoDheena / stego.py
Created September 5, 2019 09:25 — forked from SharadKumar97/stego.py
This script will hide any text behind any file.
# This script hide's text behind any media file like jpg file, mp3 file ecetera.
# This script accepts two parameter for hiding text and one parameter for finding text.
# Please install steganography python library by - pip install steganography
# This script is compatible with python 2.7
from __future__ import absolute_import,unicode_literals
import argparse
from steganography.steganography import Steganography
parser=argparse.ArgumentParser()
parser.add_argument("--carrier",help="Give path of carrier file which will contain our text.")
@AmigoDheena
AmigoDheena / async-and-conditional-css-loading.html
Last active June 29, 2019 06:04 — forked from matt-bailey/async-and-conditional-css-loading.html
A simple script (based on one by Google) for loading CSS files asynchronously and conditionally based on body tag classes
<html>
<head>
<!-- Inlined critical styles -->
<style>.blue{color:blue;}</style>
<!-- CSS loader -->
<script>
/* ==========================================================================
Load CSS asynchronously and conditionally after initial painting