(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| package org.baeldung.web.hateoas; | |
| import javax.servlet.http.HttpServletResponse; | |
| import org.springframework.context.ApplicationListener; | |
| import org.springframework.stereotype.Component; | |
| import org.springframework.web.util.UriComponentsBuilder; | |
| import com.google.common.base.Preconditions; |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| import falcon | |
| import logging | |
| logger = logging.getLogger(__name__) | |
| logger.addHandler(logging.FileHandler('test.log')) | |
| logger.setLevel(logging.INFO) | |
| class ResponseLoggerMiddleware(object): | |
| def process_response(self, req, resp): | |
| logger.info('{0} {1} {2}'.format(req.method, req.relative_uri, resp.status[:3])) |
We subscribe to the Git Featrue Branch workflow, briefly described in that link.
In practice, it works as follows:
git checkout developmentgit pull origin development| import java.util.Random; | |
| import redis.clients.jedis.Jedis; | |
| public class StoringAccessDataUsingBitmap { | |
| public void store(long userCode, String date) { | |
| Jedis jedis = new Jedis("localhost"); | |
| String key = String.format("access:%s", date); | |
| package my.application.dao; | |
| import java.util.List; | |
| import my.application.entity.Book; | |
| import my.application.restutil.RequestOptions; | |
| public interface BookPersister { | |
| List<Book> getBooks(RequestOptions requestOptions); | |
| } |
arch4edu リポジトリを追加する。paru -Syu rocm-hip-sdk rocm-opencl-sdk python-pytorch-rocm python-torchvision-rocm python-numpy yqvirtualenv --system-site-packages sdenvsource sdenv/bin/activategit clone https://github.com/CompVis/stable-diffusion.git && cd stable-diffusionyq '.dependencies[].pip?[]' environment.yaml | sed 's/"//g' | xargs -L1 pip installhttps://huggingface.co/CompVis/stable-diffusion-v-1-4-original/resolve/main/sd-v1-4.ckpt からチェックポイントファイルを入手して、 models/ldm/stable-diffusion-v1/model.ckpt に置くpython scripts/txt2img.py --prompt "a photograph of an astronaut riding a horse" --plms| FROM rocm/composable_kernel:ck_ub20.04_rocm5.5_rc4 | |
| RUN mkdir /SD | |
| # Clone SD | |
| WORKDIR /SD | |
| RUN git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui | |
| WORKDIR /SD/stable-diffusion-webui | |
| RUN git reset --hard 22bcc7be428c94e9408f589966c2040187245d81 |