Skip to content

Instantly share code, notes, and snippets.

View nkonev's full-sized avatar

Nikita Konev nkonev

View GitHub Profile
@nkonev
nkonev / InterruptingThread.java
Created November 10, 2019 16:48
InterruptingThread.java
import java.util.Date;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
public class InterruptingThread {
public static void main(String[] args) throws InterruptedException {
java.util.concurrent.ScheduledExecutorService scheduledExecutorService = Executors.newSingleThreadScheduledExecutor();
scheduledExecutorService.scheduleWithFixedDelay(() -> {
while (!Thread.currentThread().isInterrupted()) {
System.out.println("" + new Date() + " ololo am a bad boy");
2019-10-12 01:56:47.123 TRACE 7507 --- [or-http-epoll-6] o.s.c.gateway.filter.NettyRoutingFilter : outbound route: f2b77d11, inbound: [5362c21c]
2019-10-12 01:57:31.309 TRACE 7507 --- [or-http-epoll-7] o.s.c.g.filter.NettyWriteResponseFilter : NettyWriteResponseFilter start inbound: f2b77d11, outbound: [5362c21c]
@nkonev
nkonev / RxExperiment.java
Last active October 13, 2019 01:38
Error handling in Reactor-Core
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
import java.util.Arrays;
import java.util.List;
public class RxExperiment {
private static final Logger LOGGER = LoggerFactory.getLogger(RxExperiment.class);
SELECT product.ID as product_id,
product.post_title as product_name,
product.post_content as product_content,
product_sku.meta_value as product_sku,
product_price.meta_value as product_price,
product_height.meta_value as product_height,
product_width.meta_value as product_width,
product_length.meta_value as product_length
FROM wp_posts as product
LEFT JOIN wp_postmeta as product_sku ON product.ID = product_sku.post_ID
@nkonev
nkonev / wordpress.vcl
Last active July 14, 2018 19:12 — forked from matthewjackowski/wordpress.vcl
Varnish 4 VCL configuration for WordPress. Also allows purging
#
# This is an example VCL file for Varnish.
#
# It does not do anything by default, delegating control to the
# builtin VCL. The builtin VCL is called when there is no explicit
# return statement.
#
# See the VCL chapters in the Users Guide at https://www.varnish-cache.org/docs/
# and http://varnish-cache.org/trac/wiki/VCLExamples for more examples.
@Value("classpath:ololo.properties")
//@Value("file:/home/nik/ideaWorkspace/blog/backend/src/main/resources/ololo.properties")
Resource resource;
@GetMapping(value = "/ololo", produces = TEXT_HTML_VALUE)
public String getOlolo() throws IOException {
try(BufferedReader br = new BufferedReader(new InputStreamReader(resource.getInputStream()));) {
return br.lines().collect(Collectors.joining("\n"));
}
-- получить список товаров
SELECT product.ID as product_id,
product.post_title as product_name,
product.post_content as product_content,
product_sku.meta_value as product_sku,
product_keywords.meta_value as product_keywords,
product_description.meta_value as product_description,
product_title.meta_value as product_title
FROM wp_posts as product
LEFT JOIN wp_postmeta as product_sku ON product.ID = product_sku.post_ID AND product_sku.meta_key = '_sku'
@nkonev
nkonev / manually_set_item_length_in_woocommerce.sql
Last active April 14, 2018 22:06
manually set item length in woocommerce
SELECT product.ID as product_id,
product.post_title as product_name,
replace(product.post_content, '"', "'") as product_content,
product_sku.meta_value as product_sku,
product_price.meta_value as product_price,
product_height.meta_value as product_height,
product_width.meta_value as product_width,
product_length.meta_value as product_length
FROM wp_posts as product
LEFT JOIN wp_postmeta as product_sku ON product.ID = product_sku.post_ID

create & edit /etc/fonts/local.conf

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "fonts.dtd">
<fontconfig>
        <!-- Global Font Attributes -->
        <match target="font">
                <!-- Subpixel rendering mode
                         Should not be used with Autohinter without Infinality patch -->
                <edit name="rgba" mode="assign"><const>none</const></edit>
https://ru.wikipedia.org/wiki/%D0%9A%D0%BE%D0%BD%D0%B5%D1%87%D0%BD%D1%8B%D0%B9_%D0%B0%D0%B2%D1%82%D0%BE%D0%BC%D0%B0%D1%82
https://tproger.ru/translations/finite-state-machines-theory-and-implementation/
https://habrahabr.ru/post/141503/
https://habrahabr.ru/post/241941/