Futuristic resolving/typing text effect usually found in game or movie cut scenes to reveal text on screen. This one here features some GLaDOS lines from Portal 2, enjoy!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="os-phrases" id="os-phrases"> | |
<h2>Sometimes it's better</h2> | |
<h2>to hide</h2> | |
<h2>in order to</h2> | |
<h2>survive evil</h2> | |
<h2>Thanatos</h2> | |
<h2>This fall</h2> | |
<h2>Prepare</h2> | |
<h2>Refresh to replay</h2> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="container"> | |
<div id="message"> | |
<a id="animate" href="#">Transmit</a> | |
</div> | |
</div> |
A jQuery powered example of how you can create a bubbling effect on a HTML heading. The bubbles appear as though they're coming from behind the text, and then fade out and are removed.
A Pen by html5andblog on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
''' | |
@date Aug 06, 2017 | |
@author nkmathew | |
bundles - Get your Safaricom data bundle balance without leaving your prompt | |
Saves you the effort of going to this page every time : http://www.safaricom.com/bundles/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
r""" | |
Date: Jul 17, 2017 | |
Author: nkmathew | |
A script for cloning all repositories by a certain user from Bitbucket. Can also | |
clone your private repos if you want(requires authentication). It's supposed to give | |
you a bit more control than you would have with an equivalent curl command, e.g |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Microsoft.Win32; | |
using System.Text.RegularExpressions; | |
using System; | |
/** | |
* @author nkmathew | |
* @date July 10, 2017 | |
* | |
* The program makes it possible to open "git://" like urls clicked from a console | |
* emulator like ConEmu in your default browser as Windows doesn't recognize that |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
NC='\033[0m' # No Color | |
LYELLOW='\033[01;33m' | |
# Git update all the repos in the current folder | |
for folder in *; do | |
if [[ -d $folder ]]; then | |
cd $folder | |
if [[ -d ".git" ]]; then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
:: Runs php dev server and opens the link in the currently running browser starting | |
:: with Chrome. Used for one-off testing or viewing how a cloned project runs | |
:: Look for a free port | |
set /a PORT_NUMBER=8080 | |
:NEXT_PORT | |
netstat /an | findstr :%PORT_NUMBER% >nul |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Youtube Relative Time | |
// @namespace http://nkmathew.net | |
// @author nkmathew | |
// @description Changes the upload time of a Youtube video to a relative format | |
// @icon http://www.youtube.com/favicon.ico | |
// @icon64 http://www.youtube.com/favicon.ico | |
// @version 0.1.0 | |
// @include /^https?:\/\/(.+\.)?youtube\.com\/watch?.*$/ | |
// @require https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.1/moment.min.js |
NewerOlder