Skip to content

Instantly share code, notes, and snippets.

View webkader's full-sized avatar

Baris Aydin webkader

View GitHub Profile
@webkader
webkader / generatecode.js
Created July 13, 2015 20:59
Simple Generator Code
var rownumber;
var $form_holder = "#renderForm";
var content = '';
var generatecode = function () {
var $this = '';
// the first loop for rows
$($form_holder + ' .fields').each(function (rownumber) {
var blockobject = '';
@webkader
webkader / Registry.php
Last active August 29, 2015 14:24
Magic Registry Class
// Um aus verschiedenen Klassen auf "globale" Objekte und Variablen zuzugreifen, gibt es das Registry.
// Die Registry kann als abstract deklariert werden, da nur statische Attribute und Methoden verwendet werden.
abstract class Registry
{
static $objects = array();
/**
* Registry::get()
*
@webkader
webkader / func_get_args.php
Created July 13, 2015 19:41
Hack for php 5.3.2
$argv = array();
$tmp = func_get_args();
foreach ($tmp as $key => $value) {
$argv[$key] = &$tmp[$key];
}
@webkader
webkader / mime_content_type.php
Last active March 19, 2022 14:56
PHP Mime type alternative
if (!function_exists('mime_content_type')) {
function mime_content_type($filename)
{
$mime_types = array(
'txt' => 'text/plain',
'htm' => 'text/html',
'html' => 'text/html',
@webkader
webkader / linkreplace.php
Created July 13, 2015 19:28
replace any links that don't start with http
// replace any links that don't start with http
if (preg_match_all('#<a href="([^"]+)"#', $text, $matches)) {
foreach ($matches[1] as $key => $match) {
if (!preg_match('#^https?:#', $match) && !preg_match('#^ftps?:#', $match)) {
$match = 'http://' . $match;
}
$text = preg_replace('#' . preg_quote($matches[0][$key], '#') . '#', '<a href="' . $match . '"', $text, 1);
}
}
@webkader
webkader / doAlert.java
Last active August 29, 2015 14:24
Custom alert box in Android
/**
* doAlert() für Warn- und Rückfragedialoge
*
* @param mixed context
* @param mixed title
* @param mixed message
* @param boolean status
*/
@SuppressWarnings("deprecation")
public void doAlert(Context context, String title, String message, Boolean status) {
@webkader
webkader / isNetworkAvailable.java
Created July 13, 2015 18:51
Check network is available in Android
/**
* isNetworkAvailable() TRUE wenn eine Datenverbindung vorhanden ist
*
* @param mixed activity
* @return
*/
public static boolean isNetworkAvailable(Activity activity) {
ConnectivityManager connectivity = (ConnectivityManager) activity.getSystemService(Context.CONNECTIVITY_SERVICE);
if (connectivity == null) {
return false;
@webkader
webkader / compareFloatValues.php
Last active August 29, 2015 14:24
Comparing float values
// look into http://php.net/manual/en/language.types.float.php
function compareFloatValues($a, $b, $operator = '==')
{
// This value is known as the machine epsilon, or unit roundoff, and is the smallest acceptable difference in calculations.
$epsilon = 0.00001;
// make equal to 5 digits of precision
$a = (float)$a;
$b = (float)$b;
@webkader
webkader / isValidTax.php
Last active August 29, 2015 14:24
Check if a string is a valid tax number
function isValidTax($vatid)
{
$vatid = str_replace(array(
' ',
'.',
'-',
',',
', '), '', trim($vatid));
$prefix = substr($vatid, 0, 2);
$number = substr($vatid, 2);
@webkader
webkader / isValidDate.php
Created July 13, 2015 18:41
Check if a string is a valid date
function isValidDate($date, $format = "d-m-Y H:i:s")
{
//since php 5.3
$parsedate = date_parse_from_format($format, $date);
$datetmp = mktime($parsedate['hour'], $parsedate['minute'], $parsedate['second'], $parsedate['month'], $parsedate['day'], $parsedate['year']);
return (strtotime($date) == $datetmp) ? true : false;
}