😎 Curated list of awesome technical conferences.
The goal of this list to promote the best conferences and events.
class WaffleObject { | |
void garnishWaffle(List<Strawberry> strawberries) { ... } | |
} |
git branch -m wrongname correctname |
git commit --amend |
package lightweight4j.app; | |
import net.jodah.failsafe.Failsafe; | |
import net.jodah.failsafe.RetryPolicy; | |
import java.util.Arrays; | |
import java.util.Collection; | |
public class TietoAmazingTeam { |
export const getAuthorName = flickrAuthor => { | |
const ALL_POSSIBLE_BRACKETS = /[{()}]/g | |
const VERTICAL_BAR = /^"|"$/g | |
const [_, name] = flickrAuthor.split(' '); | |
return name | |
.replace(ALL_POSSIBLE_BRACKETS, '') | |
.replace(VERTICAL_BAR, ''); |
package net.sizovs.crf.services.core; | |
import org.hibernate.EmptyInterceptor; | |
import org.hibernate.type.Type; | |
import org.springframework.beans.factory.config.AutowireCapableBeanFactory; | |
import org.springframework.boot.autoconfigure.orm.jpa.HibernatePropertiesCustomizer; | |
import org.springframework.stereotype.Component; | |
import javax.persistence.Embeddable; | |
import javax.persistence.Entity; |
> I.code(); [ code logo ] | |
> I.coffee(); [ coffee logo ] | |
> I.DevTernity(); [ devternity logo ] | |
Requirements: | |
1) white printify logo on sleeve | |
2) our stuff front or back | |
3) maybe logo / text in colour? | |
4) dark t-shirt, v-neck ideally. | |
5) the same print will go on coffee mugs. |
<p>Hi, Buddy!</p> | |
<p>Want to learn more about effective software design and architecture in Java?</p> | |
<p><a href="https://devchampions.com/training/java?_openstat=tb;training;java">Join</a> my upcoming training!</p> |
class Customer1 { | |
void change(String password); | |
} | |
class Customer2 { | |
void change(Password password) { | |
} | |
} |