Difference between revisions of "A-Quick links"

From Ever changing code
Jump to navigation Jump to search
 
(22 intermediate revisions by the same user not shown)
Line 1: Line 1:
__TOC__
__TOC__
= Quick links =
* [https://docs.github.com/en/github/writing-on-github/basic-writing-and-formatting-syntax Markdown] GitHub


= Blogs =
= Blogs =
Line 43: Line 46:
*[http://sourceforge.net/projects/putty-nd/ putty-nd] sourceforge
*[http://sourceforge.net/projects/putty-nd/ putty-nd] sourceforge
*[http://ttyplus.com/multi-tabbed-putty/  MTPuTTY] TTY+, multi tabbed PuTTY, Native Win32 code - no need to have any libraries (like .NET, VB etc).
*[http://ttyplus.com/multi-tabbed-putty/  MTPuTTY] TTY+, multi tabbed PuTTY, Native Win32 code - no need to have any libraries (like .NET, VB etc).
= Linux resources =
*[http://www.brendangregg.com/perf.html perf Examples] Blog about measuring Linux performance from App layer to system calls events


= DevOps =
= DevOps =
Line 48: Line 54:
*[https://dev.to/brpaz/my-linux-development-environment-of-2018-ch7 Linux Development Environment of 2018] dev.to
*[https://dev.to/brpaz/my-linux-development-environment-of-2018-ch7 Linux Development Environment of 2018] dev.to


== Cool tools ==
= Kubernetes and docker =
*[https://github.com/telepresenceio/telepresence telepresence] local development for Kubernetes microservices
*[https://github.com/aacebedo/dnsdock dnsdock] DNS server for automatic docker container discovery
*[https://github.com/kelseyhightower/kubernetes-the-hard-way Kubernetes The Hard Way] Linuxacademy course is basing on
 
= Performance testing =
*[https://artillery.io/ artillery] load testing and functional testing toolkit
* Apache <code>ab</code> has been replaced now by <code>hey</code>
* [https://locust.io/ locust] opensource, Python tool
 
= SAML =
* [https://chrome.google.com/webstore/detail/saml-tracer/mpdajninpobndbfcldcmbpnnbhibjmch?hl=en Saml-tracer] Chrome extension
* [https://addons.mozilla.org/en-US/firefox/addon/saml-tracer/ Saml-tracer] Firefox extension
 
= Security CWE, CVE =
* '''[https://cwe.mitre.org/ CWE™ Common Weakness Enumeration]''' is a community-developed list of software and hardware weakness types. It serves as a common language, a measuring stick for security tools, and as a baseline for weakness identification, mitigation, and prevention efforts. A list of common software security weaknesses and vulnerabilities maintained by the security community. Easily find a specific software weakness by searching the CWE list.
 
* '''[https://cve.mitre.org/cve/ CVE®]''' is a dictionary of publicly disclosed cybersecurity vulnerabilities and exposures that is free to search, use, and incorporate into products and services. The CVE focuses on vulnerabilities in software that is widely available. A CVE refers to a security weakness that allows an attacker to compromise the system through techniques such as arbitrary code execution and buffer overflows.
 
* '''Common Vulnerability Scoreing System (CVSS)''' scoring system for security vulnerabilities. It assigns a score from 0 to 10 to give you a sense of the severity of the vulnerability. Vulnerabilities with higher scores are more severe than ones with lower scores.
= Syntax formatting =
*[https://tohtml.com/shell/ Online syntax highlighting] to use with Google Docs
 
= Useful software =
*[https://github.com/bricelam/ImageResizer ImageResizer] Windows
* VirtualVM - replacement to Jconsole
*[https://asciinema.org/ asciinema] Tool to record your terminal, can later allow to select/copy and paste
*[https://asciinema.org/ asciinema] Tool to record your terminal, can later allow to select/copy and paste
*[https://github.com/hluk/CopyQ CopyQ] advanced clipboard manager with editing and scripting features
*[https://github.com/hluk/CopyQ CopyQ] advanced clipboard manager with editing and scripting features
*[https://github.com/santinic/how2 how2] stackoverflow from the terminal
*[https://github.com/santinic/how2 how2] stackoverflow from the terminal


== Kubernetes and docker ==
= Online tooling =
*[https://github.com/telepresenceio/telepresence telepresence] local development for Kubernetes microservices
*[https://securityheaders.com Scan for a website available HEADERS] securityheaders.com
*[https://github.com/aacebedo/dnsdock dnsdock] DNS server for automatic docker container discovery
 
== Performance testing ==
*[https://artillery.io/ artillery] load testing and functional testing toolkit


= Uncategorised - keep adding on... =
= Uncategorised - keep adding on... =
*[http://www.tecmint.com/cheat-command-line-cheat-sheet-for-linux-users/ Cheat – An Ultimate Command Line ‘Cheat-Sheet’ for Linux Beginners and Administrators]
*[http://www.tecmint.com/cheat-command-line-cheat-sheet-for-linux-users/ Cheat – An Ultimate Command Line ‘Cheat-Sheet’ for Linux Beginners and Administrators]
*[https://dev.to/thiht/shell-scripts-matter shell-scripts-matter] Good practice to Bash shell scripting - Dev.to
*[http://cfenollosa.com/misc/bash.pdf Bash keybindings cheat sheet]
*[http://cfenollosa.com/misc/bash.pdf Bash keybindings cheat sheet]
*[http://23rdworld.com/2007/03/30/how-to-make-your-mediawiki-private/ How To Make Your MediaWiki Private]
*[http://23rdworld.com/2007/03/30/how-to-make-your-mediawiki-private/ How To Make Your MediaWiki Private]
Line 79: Line 105:
*[http://applicationpackagingbasics.blogspot.co.uk/ Windows packaging, deployment and distribution] FAQ  
*[http://applicationpackagingbasics.blogspot.co.uk/ Windows packaging, deployment and distribution] FAQ  
*[http://www2.warwick.ac.uk/fac/sci/moac/people/students/peter_cock/cygwin/part2 Compiling C++] using Cygwin
*[http://www2.warwick.ac.uk/fac/sci/moac/people/students/peter_cock/cygwin/part2 Compiling C++] using Cygwin
*[http://geekswing.com/geek/quickie-tutorial-ulimit-soft-limits-hard-limits-soft-stack-hard-stack/ Ulimit] Ulimits tutorial

Latest revision as of 14:25, 23 August 2020

Quick links

Blogs

Learning

Vim

Git projects

Linux directories

Citrix

ADSL

Reverse engineering

Virtualization

Remote Terminals

  • PuTTY Windows Godfather of TTYs
  • superPuTTY code.google.com, multitabbed Putty
  • putty-nd sourceforge
  • MTPuTTY TTY+, multi tabbed PuTTY, Native Win32 code - no need to have any libraries (like .NET, VB etc).

Linux resources

  • perf Examples Blog about measuring Linux performance from App layer to system calls events

DevOps

Kubernetes and docker

Performance testing

  • artillery load testing and functional testing toolkit
  • Apache ab has been replaced now by hey
  • locust opensource, Python tool

SAML

Security CWE, CVE

  • CWE™ Common Weakness Enumeration is a community-developed list of software and hardware weakness types. It serves as a common language, a measuring stick for security tools, and as a baseline for weakness identification, mitigation, and prevention efforts. A list of common software security weaknesses and vulnerabilities maintained by the security community. Easily find a specific software weakness by searching the CWE list.
  • CVE® is a dictionary of publicly disclosed cybersecurity vulnerabilities and exposures that is free to search, use, and incorporate into products and services. The CVE focuses on vulnerabilities in software that is widely available. A CVE refers to a security weakness that allows an attacker to compromise the system through techniques such as arbitrary code execution and buffer overflows.
  • Common Vulnerability Scoreing System (CVSS) scoring system for security vulnerabilities. It assigns a score from 0 to 10 to give you a sense of the severity of the vulnerability. Vulnerabilities with higher scores are more severe than ones with lower scores.

Syntax formatting

Useful software

  • ImageResizer Windows
  • VirtualVM - replacement to Jconsole
  • asciinema Tool to record your terminal, can later allow to select/copy and paste
  • CopyQ advanced clipboard manager with editing and scripting features
  • how2 stackoverflow from the terminal

Online tooling

Uncategorised - keep adding on...