Skip to content

Instantly share code, notes, and snippets.

View hmans's full-sized avatar
🚀
Let's go!

Hendrik Mans hmans

🚀
Let's go!
View GitHub Profile
using UnityEngine;
using System.Collections;
public class EndlessSpace : MonoBehaviour {
public GameObject tile;
public GameObject player;
private float width, height;
private Vector3 offset, up, right, down, left;
@hmans
hmans / gist:cd5e2e989ceff7ff163a
Last active August 29, 2015 14:03
Ruby Configuration Thingy
class ConfigurationProxy
attr_reader :data
def initialize
@data = {}
end
def method_missing(method, *args, &blk)
if args.any? || block_given?
if block_given?
foo?
...---...
../ / | \ \..
./ / / | \ \ \.
/ / / | \ \ \
/ / / | \ \ \
^^^^^^^^^^^^^^^^^^^^^^^
\ | /
\ | /
\ | /
\ | /
.:IIIIHIHHIHHHII::I:.
.IIIIHIHHHHHHIHIIIIMHHI:,
:IIIIHIHHHHHHMMHHIHHIIHHIII:.
.:IHIHHHHHHHHHHHHHIHIHHIHHHIH:I:,
,.:HIHHHHHHHHHHHHHHHHHHHHHIHIHHII:.
,.:IHHHHHHHHHHMMMMHHHHHHHIIHHHIHIII,
def current_user_session
return @current_user_session if defined?(@current_user_session)
@current_user_session = UserSession.find
end
kürzer:
def current_user_session
@current_user_session ||= UserSession.find
end
class User < ActiveRecord::Base
validates_uniqueness_of :email, :case_sensitive => false
validate :valid_email?
private
def valid_email?
address = EmailVeracity::Address.new(email)
# place this in application_helper.rb
def set_page_title(title = nil, &block)
if block_given?
html = capture(&block)
concat(html)
end
@page_title = title || strip_tags(html)
end
- set_page_title "Neuer User"
def set_page_title(title = nil, &block)
if block_given?
html = capture(&block)
concat(html)
end
@page_title = title || strip_tags(html)
end