Coder Social home page Coder Social logo

reflectoring.github.io's People

Contributors

ajibade3210 avatar arkuksin avatar arpendu11 avatar bakic avatar cbenaveen avatar daklassen avatar hardiksinghbehl avatar hoorvash avatar jarjanazy avatar kanake10 avatar leventov avatar maiklins avatar matthiasbalke avatar mehedi-sharif avatar mufa0 avatar murtuza-ranapur avatar ortelagode avatar petros0 avatar pralhad-cmd avatar pratikdas avatar ranjanih avatar rudikl avatar saajn avatar sagaofsilence avatar sailfishdev avatar silenum avatar susetech avatar syedaf avatar thombergs avatar yavuztas avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

reflectoring.github.io's Issues

What is Code Quality to you?

  • What is code quality?
  • Is it the same to everyone?
  • What ways are there to define code quality?
  • How to find the code quality metrics that are important for you?
  • ...

Modeling Git Commits in Neo4J

Short intro in how to use the Neo4J web application in order to model git commits in a graph database with query examples in the Cypher query language

Mistake in "Clean Unit Tests with Mockito"

Hey @thombergs, hey @silenum seems like a sentence is doubled:

"
Here Mockito comes to the rescue! Mockito allows us to create a suitable test double for the CityRepository interface and lets us define the behavior we expect from it. Applying this possibility we can create meaningful unit Here Mockito comes to the rescue! Mockito allows us to create a suitable test double for the CityRepository interface and lets us define the behavior we expect from it.
"

https://github.com/reflectoring/reflectoring.github.io/blame/master/_posts/2021-04-25-clean-unit-tests-with-mockito.md#L71

add image to article detail page

When you share a link in social media, most social media tools scrape the page and extract an image. Since the only image on the article detail page is the author avatar, the avatar is used. It looks kind of self-centered to post an image of your own avatar :). So, it would be good, if we could put at least the teaser image also into the detail page

Checklist to make sure your application is production-ready

  • error pages
  • expose important monitoring metrics (with actuator in Spring Boot)
  • protect interfaces to other systems with bulkheads or circuit breakers
  • externalized configuration parameters (provide sensible defaults)
  • logging
  • api documentation
  • automatically create a PID-file if the application runs as a service
  • indices on database tables? are they (and foreign key constraints) named recognizably?
  • ...

Add a search bar to header section

Hi there,
I come back to your testing series quite frequently.
Today I noticed that I removed my bookmark, because I thought I was done with it (seems I wasn't).

It led me to notice that there's no option to search your site for specific content. Here's my proposal:
refelctoring-search-proposal

  • Looks clean
  • Easy to integrate
  • Additional user comfort

Check here for a live example using lua search engine.
I might as well create the PR if you'd like.

Cheers

PS: While preparing this issue I noticed that the header section disappears altogether on mobile view.
Is that intentional? Might be one issue more ;) :)

blog layout for smartphones

After including the header logo the layout is broken on my iPhone 5s. We should check the layout working for commonly used smartphone resolutions.

img_6725
img_6726

How to externalize configuration in Spring Boot applications

  • Where to put configuration properties?
  • How to validate properties on startup?`
  • How to provide default values?
  • How to separate properties for different server environments?
  • How to make properties changeable at runtime?
  • @ConfigurationProperties?

CircleCI 2.0 Setup

Explain how to create a continuous build pipeline using circleci 2.0 beta.

Transparency with Spring Boot

How to use Spring Boot and DropWizard Metrics to expose metrics and thus creating transparent and easy-to-monitor applications.

Mistake? in blog post "Integration Tests with @SpringBootTests

I'm slightly confused concerning the mentioned blog post.

Here's the code example of the passage

    // given
    User user = new User("Zaphod", "[email protected]");
    boolean sendWelcomeMail = true;
    given(userRepository.save(any(UserEntity.class))).willReturn(userEntity(1L));

    // when
    Long userId = registerUseCase.registerUser(user, sendWelcomeMail);

    // then
    assertThat(userId).isEqualTo(1L);

We see given being used in the example.
The passage mentions when though:

Using Mockito’s when method, we have specified the expected behavior for this mock in order to test a class that uses this repository.

Is that a mixup or "unfortunate wording"?
Thanks again for the quality content 💯

How to Use the Gradle Deamon correctly

Why do I always get the following and have long configuration times?

Starting a Gradle Daemon, 3 busy and 1 stopped Daemons could not be reused, use --status for details

How do I correctly set up the Gradle daemon?

Topic backlog list?

Hi, Tom. On your write-with-me page you mention "this big backlog of topics" twice, but it's not a link, which suggests that perhaps at one time there was one. I don't find it there or here. Does it still exist? Sorry if I missed it.

If you optem to remove it, that's understandable. Keeping lists updated is a hassle. :-) But then perhaps the wording should be "a big backlog".

I'd searched here for any other existing issue about this. That, too, makes me feel like I'm somehow mistake/missing something to be asking. :-)

Of course, just trying to help.

Fill "About" page with life

A few words about reflectoring and perhaps a section where each author can shortly introduce himself?

Must-have: Impressum!

Migrate from Disqus

Disqus contains a 3rd-party script to be loaded during page rendering. The code block for loading it shows that the static comments are not rendered as static HTML code. This hinders search engines from grabbing the comments, which are part of the site's content.

To see more reasons for migrating from Disqus, you may view

  1. https://victorzhou.com/blog/replacing-disqus/
  2. https://old.reddit.com/r/programming/comments/b9022a/switching_off_of_disqus_reduced_my_page_weight_by/
  3. https://medium.com/remys-blog/ejecting-disqus-4120e9985823

You may avoid these problems by switching to Staticman, which makes use of GitHub/GitLab Pull/Merge Requests instead of issues. Under Staticman's model, static comments are YML/JSON files stored in the remote GitHub/GitLab repo (usually under data/comments, configurable through the path parameter in root-level staticman.yml), and through a static blog generator (Jekyll/Hugo/etc), the stored data are rendered as part of the content. This gives a total ownership of a static site's comments.

ℹ️ There're many ways to Rome, say JAM Stack, Jekyll AWS comments, etc.

Authentication with REST

Overview over possible authentication technologies with REST Web Services like basic authentication, token based authentication or OAuth2.

Gradle lazy evaluation

In this blog post lazy evaluation of gradle properties gets explained.

Why do we need this?
When do we need this?
How can we use it?

How to use Streams in Java

When in comes to I/O in Java. There're many different solutions to manage and transfer sources in Java. It would be nice to have a blogpost which describe best practices of using streams in Java.

Blog post on WinSW

WinSW is a windows service wrapper that you can use to execute your jars on windows startup (autostart). The blog post contains a quick start.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.