Skip to content

Instantly share code, notes, and snippets.

@SweetTddy
SweetTddy / meta-tags.md
Created April 1, 2022 06:47 — forked from whitingx/meta-tags.md
Complete List of HTML Meta Tags

Copied from http://code.lancepollard.com/complete-list-of-html-meta-tags/

Basic HTML Meta Tags

<meta charset='UTF-8'>
<meta name='keywords' content='your, tags'>
<meta name='description' content='150 words'>
<meta name='subject' content='your website's subject'>
<meta name='copyright' content='company name'>
@SweetTddy
SweetTddy / DBClass.php
Created April 5, 2020 05:04 — forked from anjerodesu/DBClass.php
DBClass is a simple PHP database class using MySQL Improved Extension.
<?php
/********************************************************************************************/
/* DBClass created by Angelo Villegas [http://www.studiovillegas.com] */
/* */
/* Copyright © Angelo Villegas */
/* Permission is hereby granted, free of charge, to any person obtaining a copy of this */
/* software and associated documentation files (the "Software"), to deal in the Software */
/* without restriction, including without limitation the rights to use, copy, modify, */
/* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to */
/* permit persons to whom the Software is furnished to do so, subject to the following */
@SweetTddy
SweetTddy / Connectivity.java
Created March 26, 2017 06:33 — forked from emil2k/Connectivity.java
Android utility class for checking device's network connectivity and speed.
package com.emil.android.util;
import android.content.Context;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.telephony.TelephonyManager;
/**
* Check device's network connectivity and speed
* @author emil http://stackoverflow.com/users/220710/emil