Skip to content

Instantly share code, notes, and snippets.

View Toparvion's full-sized avatar
:octocat:
Practicing creative engineering

Vladimir Plizga Toparvion

:octocat:
Practicing creative engineering
View GitHub Profile
@bryanbraun
bryanbraun / git-branching-diagram.md
Last active July 5, 2024 14:18
Example Git Branching Diagram

Example Git Branching Diagram

You can use this diagram as a template to create your own git branching diagrams. Here's how:

  1. Create a new diagram with diagrams.net (formerly draw.io)
  2. Go to File > Open From > URL
  3. Insert this url (it points to the xml data below): https://gist.githubusercontent.com/bryanbraun/8c93e154a93a08794291df1fcdce6918/raw/bf563eb36c3623bb9e7e1faae349c5da802f9fed/template-data.xml
  4. Customize as needed for your team.

@bugcy013
bugcy013 / Heap Dump and thread dump and core dump differences.md
Last active June 28, 2024 15:01
Heap Dump and thread dump and core dump differences.

Heap dump

  • Collection of objects that are in memory (JVM)
  • is useful to analyse OOM situations.
  • then How to take jmap -dump:format=b,file=cheap.bin <pid>

Thread dump

@bradtraversy
bradtraversy / docker-help.md
Last active July 1, 2024 01:13
Docker Commands, Help & Tips

Docker Commands, Help & Tips

Show commands & management commands

$ docker

Docker version info

@TYsewyn
TYsewyn / index.html
Created January 27, 2018 15:46
Visualizing your Spring Integration Components & Flows
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Visualizing your Spring Integration Components &amp; Flows</title>
<script type="text/javascript" src="http://d3js.org/d3.v4.min.js"></script>
<script type="text/javascript" src="http://d3js.org/d3-selection-multi.v1.min.js"></script>
<style>
@willurd
willurd / web-servers.md
Last active July 5, 2024 18:32
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000