Skip to content

Instantly share code, notes, and snippets.

View executed's full-sized avatar
👽
!((!(!(0)))) == 1

Dan Serbyn executed

👽
!((!(!(0)))) == 1
  • Berlin
View GitHub Profile
@executed
executed / ml_lab3.ipynb
Created December 13, 2021 21:45
ML_lab3.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@executed
executed / lab4.ipynb
Created December 10, 2021 12:54
lab4.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@executed
executed / clusters_lab5.ipynb
Created December 3, 2021 01:24
clusters_lab5.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@executed
executed / clusters_lab2.ipynb
Last active November 28, 2021 04:16
clusters_lab2.ipynb
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@executed
executed / ProfiledAnnotationBeanPostProcessor.java
Created February 10, 2019 02:48
BPP used for annotation over the class, which affects all class methods
package com.devserbyn.twatch.annotation.processor;
import com.devserbyn.twatch.annotation.Profiled;
import com.devserbyn.twatch.controller.managment.ProfilingController;
import com.devserbyn.twatch.utility.annotation.ProfiledAnnotationUtil;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.BeansException;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.config.BeanPostProcessor;
import org.springframework.stereotype.Component;
@executed
executed / Profiled.java
Created February 9, 2019 23:42
Best practice for own annotations RUNTIME!
package com.devserbyn.twatch.annotation;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
@Retention (RetentionPolicy.RUNTIME)
public @interface Profiled {
}