Skip to content

Instantly share code, notes, and snippets.

@farukcan
farukcan / Person.java
Last active October 3, 2022 11:37 — forked from bayraktugrul/Person.java
Builder Pattern Sample
// Person person = new Person.Builder().name("Name").surname("Surname").address("Address").build();
public class Person {
private String name, surname, address;
public Person(Builder builder) {
this.name = builder.name;
this.surname = builder.surname;
this.address = builder.address;
@farukcan
farukcan / vscode-omnisharp.md
Created October 26, 2022 17:58 — forked from stormwild/vscode-omnisharp.md
Visual Studio Code Restart OmniSharp
[test]: Update test/* files
[dist]: Changes to submodules, version bumps, updates to package.json
[minor]: Small changes
[doc]: Updates to documentation
[fix]: Bug fixes
[bin]: Update binary scripts associated with the project
[refactor]: Refactor of existing code
[nit]: Small code review changes mainly around style or syntax
[feat]: New features