Skip to content

Instantly share code, notes, and snippets.

@oleg
oleg / Main.java
Created April 30, 2018 09:50
setters in constructor
class Character {
private String name;
public void setName(String name) {
this.name = name;
}
}
class Enemy extends Character {
public Enemy(String name) {

Make it real

Ideas are cheap. Make a prototype, sketch a CLI session, draw a wireframe. Discuss around concrete examples, not hand-waving abstractions. Don't say you did something, provide a URL that proves it.

Ship it

Nothing is real until it's being used by a real user. This doesn't mean you make a prototype in the morning and blog about it in the evening. It means you find one person you believe your product will help and try to get them to use it.

Do it with style

dig example.com +short
@oleg
oleg / utils.r
Last active August 29, 2015 14:04
## how to specify separator
#mydata <- read.table("/path/to/file", header=FALSE, sep=",")
##one number per line
rev.time <- read.csv("/path/to/file", header=F)
rev.time <- as.numeric(unlist(rev.time))
plot(rev.time)
hist(rev.time)
median(rev.time)
@oleg
oleg / Utils.ps1
Last active August 29, 2015 14:03
ls -filter 01402*-update*.sql | Copy-Item -Destination /work/code/projects/sqls
while true; do ccs-grepcurrentlogs populationCompleteOnNode.*all; sleep 5; ccs-grepalllogs "\ ERROR\ " sleep 5; done;
package sample;
class Outer<T> {
class Inner<S> {
S s;
}
}
public class Sample {
public static void main(String... args) {
@oleg
oleg / BigDecimalZeroEequalsTest.java
Last active August 29, 2015 13:56
BigDecimal zero equals showcase
@Test
public void test() throws Exception {
final BigDecimal Z0 = new BigDecimal("0");
final BigDecimal Z1 = new BigDecimal("0.0");
final BigDecimal Z2 = new BigDecimal("0.00");
final BigDecimal Z5 = ZERO.setScale(5);
assertFalse(Z0.equals(Z1));
assertFalse(Z1.equals(Z2));
@oleg
oleg / doc2epub.sh
Last active August 29, 2015 13:55
Convert doc to epub with calligra
for f in ls *.doc ; do calligraconverter "$f" $(echo "out/${f%.doc}" | sed 's/[ ,.-]//g').epub; done;
find . -name "*.epub" -exec unzip {} -d {}.dir \;
zip -X title.epub mimetype
zip -rg title.epub META-INF
zip -rg title.epub OEBPS
@Test
public void comparing_date_and_timestamp() throws Exception {
long millis = 1383057201173L;
java.sql.Timestamp timestamp = new java.sql.Timestamp(millis);
java.util.Date date = new java.util.Date(millis);
//wtf
assertTrue(date.equals(timestamp));
assertTrue(date.after(timestamp));
@oleg
oleg / Main.java
Created March 14, 2013 08:29
Simple download automatisation
import java.io.IOException;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class Main {
public static void main(String[] args) throws IOException {