Skip to content

Instantly share code, notes, and snippets.

View soydivision's full-sized avatar
🤑
WMAO

Bagzhan Sadvakassov soydivision

🤑
WMAO
View GitHub Profile
@soydivision
soydivision / add_this_to_pom
Created June 9, 2023 09:41
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation.
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.36</version>
</dependency>
@soydivision
soydivision / Sample galleries list from DPReview.com.txt
Created March 28, 2023 10:48
Sample galleries list from DPReview.com as of 28/03/2023.
Fujifilm X-H2 review samples 57 images Mar 15, 2023
Nikon Z 28mm F2.8 Sample Gallery 42 images Mar 10, 2023
Nikon Z 26mm F2.8 Sample Gallery 42 images Mar 10, 2023
OM System M. Zuiko 90mm F3.5 Macro Sample Gallery 82 images Feb 27, 2023
Fujifilm X-T5 production sample gallery (DPReview TV) 39 images Feb 25, 2023
Sony 50mm F1.4 GM Sample Gallery 91 images Feb 21, 2023
OM System 90mm F3.5 Pro Sample Gallery (DPReview TV) 37 images Feb 8, 2023
Canon EOS R8 sample gallery 120 images Feb 8, 2023
Canon EOS R50 sample gallery 68 images Feb 8, 2023
Sigma 50mm F1.4 DG DN Art Sample Gallery 44 images Feb 7, 2023
@soydivision
soydivision / Selenide cheat sheet
Created June 4, 2021 09:50 — forked from makolesnik/Selenide cheat sheet
Selenide cheat sheet to create concise UI tests in Java. What is Selenide? Selenide is a wrapper for Selenium WebDriver. http://selenide.org/
=Navigating=
baseUrl = "http://site.com";
open("/login");
open("http://google.com");
switchTo().frame($("#myFrame").toWebElement());
=Alert=
switchTo().alert().accept();