Skip to content

Instantly share code, notes, and snippets.

View karloscarweber's full-sized avatar
📱
Building

Karl Weber karloscarweber

📱
Building
View GitHub Profile
@karloscarweber
karloscarweber / islegit.php
Last active August 29, 2015 13:56
_islegit() checks if a variable is set and not empty. eliminates a lot of extra code in the long run. Seems kinda silly if you just take it as it is.
<?php
/*
Checks if something is set and not empty
Pass the variable as a reference to truly check its
legitness.
*/
function _islegit(&$variable = null)
{
if($variable) {
@karloscarweber
karloscarweber / rest_request
Created March 4, 2014 23:38
A Rest Request component for CakePHP 2.0. I figured that I use this component so much that I might as well make it it's own repository.
<?php
// App/controllers/components/rest_request.php
// shamelessly lifted from: http://www.gen-x-design.com/archives/making-restful-requests-in-php/
// slightly modified
class RestRequestComponent extends Object
{
var $components = array('Session');
protected $url;
protected $verb;
@karloscarweber
karloscarweber / RealmModel.swift
Last active August 29, 2015 14:06
Sample Realm Model in Swift
import Realm
class ModelName: RLMObject {
dynamic name: String = ""
dynamic value: Int = 0
}
<?php
$view = new View($this, false);
$view->set(compact('some', 'vars'));
$html = $view->render('view_name');
@karloscarweber
karloscarweber / Uploader.php
Created August 25, 2011 16:49 — forked from JunaidQadirB/Uploader.php
The Uploader class is a simple php script that makes file uploads a bit easier.
<?php /* The Uploader class is a simple php script that makes file
* uploads a bit easier.
* @author Junaid Qadir Baloch (shekhanzai.baloch@gmail.com)
* @version 0.1 10:18 PM 7/30/2011
*/
class Uploader
{
private $allowedFileTypes;
private $maxFileSize = 1048576;
private $fileInputBoxName;
@karloscarweber
karloscarweber / kowLinkMaker.js
Created March 14, 2012 16:53
This Snippet basicly finds an 'a' element inside another element, then redirects to it's HREF
// This Snippet basicly finds an 'a' element inside another element, then redirects to it's HREF
// useful for faking link behaviour on block level elements, without having to make them a tags.
// be careful to have a fallback for when javascript is disabled.
$(document).ready(function(){
// onclick obviously
$('element').click(function(){
// $(this) refers to jquery object passed inot he method. it would be of 'element' in this case.
@karloscarweber
karloscarweber / shuffle.php
Created April 10, 2012 21:43
A slide Shuffler.
<?php // PHP
// Shuffle some html, then echo them to the screen.
// why? because It's flipping easy!
$slides = array(
'<img src="/img/pic1.jpg" />',
'<img src="/img/pic2.jpg" />',
'<img src="/img/pic3.jpg" />',
@karloscarweber
karloscarweber / jquery.function.js
Created April 15, 2012 00:34
A Jquery Function Extention boilerplate
// Jquery Function BoilerPlate for newbies
//
//
// Surrounded by parentheses to allow anonymous founcitons on the inside
(function($){ // pass the jquery pseudo variable "$" into the function in order to create it's awesomeness.
$.fn.yourFucntion = function(userConfig) {
// please note, the "this" variable in the current scope will refer to the
@karloscarweber
karloscarweber / panelSwitch.html
Created December 13, 2012 17:47
A jQuery panel switcher. It alternates between different panelSlides
<div class="panel-container">
<a class="panelSwitch">
<h5>button</h5>
</a><!-- End of .panelSwitch -->
<div style="" class="panelBoard">
<!-- Fill me with any content -->
</div><!-- End of .panelBoard -->
@karloscarweber
karloscarweber / kowFocus.js
Created February 21, 2013 16:48
A little javascript to echo which element has the focus.
// kowFocus.js
// A little javascript to echo which element has the focus hardcore. (Uses Jquery)
// written by: Karl Oscar Weber, http://karloscarweber.com
setTimeout(function(){
$('*').on('focus', function(){
console.log($(this));
})
}, 2000);