Contact Sascha Eggenberger

x Cancel
posted 7 months ago

Hofrat Suess

Newest Project: Hofrat Suess My newest design creation

Agency: Amazee Labs Credit: Caro Lutz (Illus)

posted 11 months ago

Amazee Labs Mobile site

Mobile site which I designed to show off our point of view for mobile (responsive web design) with some selected client work

Mobile site which I designed to show off our point of view for mobile (responsive web design) with some selected client work

posted 1 year ago

Eggi design AG (final)

this is what i'm currently working on. final site will be online in january 2012.
the fonts are from typekit. minimalistic design with fullscreen backgrounds. i'm using an custom version of the jQuery serial-scroll Plugin for the scrolling. site is fully responsive.

this is what i'm currently working on. final site will be online in january 2012. the fonts are from typekit. minimalistic design with fullscreen backgrounds. i'm using an custom version of the jQuery serial-scroll Plugin for the scrolling. site is fully responsive.

posted 2 years ago

FlexBuero Pricelist

so this is the new layout for the pricelist. the language is actually german and the prices are in swiss francs.

so this is the new layout for the pricelist. the language is actually german and the prices are in swiss francs.

posted 2 years ago

FlexBuero Functions (New Version)

every line is now 3-column

thanks to @aaronlaibson for this input.

every line is now 3-column

thanks to @aaronlaibson for this input.

posted 2 years ago

FlexBuero Functions

this is the new Function overview site. I have a lot of other sites to be rewritten and redesign the content.
it's not 100% finished yet, but this site is live now.

this is the new Function overview site. I have a lot of other sites to be rewritten and redesign the content. it's not 100% finished yet, but this site is live now.

posted 2 years ago

New bottom navigation

The all-new bottom navigation of the FlexBuero page.

The all-new bottom navigation of the FlexBuero page.

posted 2 years ago

FileMaker: Convert Unix Timestamp to FM Timestamp

                GetAsTimestamp ( fmtimestamp - 62135596800 - 3600 )                
Raw

62135596800 = FM Timestamp of the Date 1.1.1970 00:00:00
3600 = GMT+1

posted 2 years ago

FileMaker: Convert FM Date & Time to Unix Timestamp

                ( Seconds ( fmtimestamp ) - 3600 ) +
( Minute ( fmtimestamp ) * 60 ) +
( Hour ( fmtimestamp ) * 3600 ) +
( ( Date ( Month ( fmtimestamp ) ; Day ( fmtimestamp ) ; Year ( fmtimestamp ) ) - Date ( 1 ; 1 ;1970 ) ) ) * 86400                
Raw

Input: FM Timestamp or Date & " " & Time
Converts to Unix Timestamp

( Seconds ( fmtimestamp ) - 3600 ): 3600 is for the timezone GMT+1

posted 2 years ago

Improve your Terminal / iTerm on Mac OS X

Enables colors in Terminal / iTerm for the following:

directory
symbolic link
socket
pipe

Let's create a new file called ".bash_profile" in your user directory.

copy&paste this code:

<code>export CLICOLOR=1<br>
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx</code>

save and open terminal / iterm again.

Enables colors in Terminal / iTerm for the following:

directory symbolic link socket pipe

Let's create a new file called ".bash_profile" in your user directory.

copy&paste this code:

export CLICOLOR=1
export LSCOLORS=gxBxhxDxfxhxhxhxhxcxcx

save and open terminal / iterm again.