Skip to content

Instantly share code, notes, and snippets.

View cbergau's full-sized avatar

Christian Bergau cbergau

  • Arvato eCommerce
  • Hannover (Germany)
View GitHub Profile
@cbergau
cbergau / junit.xml
Created June 13, 2014 20:26
junit.xml
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="Bws Library" tests="30" assertions="78" failures="0" errors="0" time="0.027137">
<testsuite name="Bws\Entity\ArticleTest" file="/Applications/XAMPP/xamppfiles/htdocs/shop/tests/Bws/Entity/ArticleTest.php" namespace="Bws\Entity" fullPackage="Bws.Entity" tests="2" assertions="2" failures="0" errors="0" time="0.003171">
<testcase name="testGetSetEan" class="Bws\Entity\ArticleTest" file="/Applications/XAMPP/xamppfiles/htdocs/shop/tests/Bws/Entity/ArticleTest.php" line="17" assertions="1" time="0.002627"/>
<testcase name="testGetSetDescription" class="Bws\Entity\ArticleTest" file="/Applications/XAMPP/xamppfiles/htdocs/shop/tests/Bws/Entity/ArticleTest.php" line="23" assertions="1" time="0.000544"/>
</testsuite>
<testsuite name="Bws\Interactor\AddToBasketTest" file="/Applications/XAMPP/xamppfiles/htdocs/shop/tests/Bws/Interactor/AddToBasketTest.php" namespace="Bws\Interactor" fullPackage="Bws.Interactor" tests="6" asserti
@cbergau
cbergau / sass_mixin.scss
Created May 18, 2014 18:20
SASS Mixin Example
@mixin border-radius($radius) {
-webkit-border-radius: $radius;
-moz-border-radius: $radius;
-ms-border-radius: $radius;
border-radius: $radius;
}
@mixin border-shadow($horizontal, $vertical, $blur, $spread, $color) {
-webkit-box-shadow: $horizontal $vertical $blur $spread $color;
box-shadow: $horizontal $vertical $blur $spread $color;

Sass/Less Comparison

In this document I am using Sass's SCSS syntax. You can choose to use the indented syntax in sass, if you prefer it, it has no functional differences from the SCSS syntax.

For Less, I'm using the JavaScript version because this is what they suggest on the website. The ruby version may be different.

Variables

@cbergau
cbergau / learning_stuff_checklist.md
Last active August 29, 2015 14:01
Checklist learning stuff
Language Status
PHP OK
Java OK
Android SDK OK
Android SDK Test OK
Objective-C X
IOS-SDK X
IOS-Testing X
Ruby OK
@cbergau
cbergau / my_first_ruby_script.rb
Created May 10, 2014 16:58
My very first ruby script
require "YAML"
# My very first Ruby code ever.
class LoginInteractor
attr_accessor :presenter
def initialize(presenter)
@presenter = presenter
end
@cbergau
cbergau / my_first_pyhton_script.py
Created May 10, 2014 16:55
My very first Pyhton Script
class LoginPresenter:
def __init__(self):
self.response = 0
def present_response(self, response):
self.response = response
class User:
def __init__(self, userid, username, password):