Skip to content

Instantly share code, notes, and snippets.

View SchabrechtsK's full-sized avatar
🏗️
Building awesome applications

Kenneth SchabrechtsK

🏗️
Building awesome applications
View GitHub Profile
<?xml version="1.0" encoding="UTF-8"?>
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping
http://www.doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
<entity name="Agilix\UserBundle\Entity\User" table="users" inheritance-type="JOINED" repository-class="Agilix\UserBundle\Doctrine\ORM\UserRepository">
<unique-constraints>
<unique-constraint columns="username" name="idx_username" />
</unique-constraints>
@SchabrechtsK
SchabrechtsK / uxd1010.md
Created February 22, 2020 17:55
Lightning Talk: User Experience Design 101

Talk Title

User Experience Design 101

Description/Abstract

User Experience, User Interface, User Experience Designer, welcome to the world of buzzwords. We developers tend to stay away from this world and its processes. Yet, like those who fulfill these roles, we have the same end-goal in mind, a great product for our end-users.

A User Experience Designer will combine the UX and UI research to get to a beautiful and useful end product. But how exactly do they get this result?

In this talk, we’ll see how the UXD does their job and have a look into their process.

@SchabrechtsK
SchabrechtsK / Talk Title: The Lost Art of Soft Skills
Created September 27, 2019 18:40
Talk Title: The Lost Art of Soft Skills
Talk Title: The Lost Art of Soft Skills
Development is an art form. A beautiful art were we solve business problems with a beautiful code base.
In this art form most of us focus on our tools. We focus on improving our knowledge of the language,
the mastering of the tools and the way of Google search.
But there is another lost art that we can use. Our art form is about so much more than the technical side.
The art of communication, collaboration and solving issues.
Venture with me on a journey to learn about these lost art forms.
@SchabrechtsK
SchabrechtsK / UXDForDev.txt
Last active September 29, 2019 15:21
Talk Title: User Experience Design for Developers
Talk Title: User Experience Design for Developers
User Experience, User Interface, User Experience Designer, welcome to the world of buzzwords.
We developers tend to stay away from these kind of buzzwords and processes.
Yet, like those who fulfil these roles, we have the same end-goal in mind. A great product for our end-users.
A User Experience Designer will combine the UX and UI research to get to a beautiful and useful end product.
But how do they exactly get this result?
In this talk we'll see how the UXD does their job and have a look into their processes.

Keybase proof

I hereby claim:

  • I am agilix on github.
  • I am agilix (https://keybase.io/agilix) on keybase.
  • I have a public key whose fingerprint is 44C9 AA15 6BD5 CCB9 A168 3661 7D49 7A9E BFC3 C7E1

To claim this, I am signing this object:

@SchabrechtsK
SchabrechtsK / Codeception build
Created October 21, 2017 11:50
Codeception build
./vendor/bin/codecept build
@SchabrechtsK
SchabrechtsK / profiles.example.yml
Created October 21, 2017 11:49
Codeception profiles example
env:
development:
modules:
config:
WebDriver:
url: <development server url>
staging:
modules:
config:
@SchabrechtsK
SchabrechtsK / unit.suite.yml
Created October 21, 2017 11:48
Codeception unit suite
actor: UnitTester
modules:
enabled:
- Asserts
- \test\Helper\Unit
@SchabrechtsK
SchabrechtsK / functional.suite.yml
Created October 21, 2017 11:48
Codeception functional suite
actor: FunctionalTester
modules:
enabled:
- Symfony:
app_path: 'app'
var_path: 'var'
environment: 'test'
- Doctrine2:
depends: Symfony
cleanup: true
@SchabrechtsK
SchabrechtsK / acceptance.suite.yml
Created October 21, 2017 11:47
Codeception acceptance suite
actor: AcceptanceTester
modules:
enabled:
- WebDriver:
url: <url>
browser: chrome
host: <host>
- \test\Helper\Acceptance
- Asserts