Skip to content

Instantly share code, notes, and snippets.

View rchytas's full-sized avatar
🎯
Focusing

Manish Pandit rchytas

🎯
Focusing
View GitHub Profile
@rchytas
rchytas / README.md
Last active June 8, 2020 22:08
JMeter Quick Reference

JMeter Quick Reference

Samplers: Samplers tell JMeter to send a request to a server and wait for a response. Following is the list of JMeter Samplers:

FTP Request
HTTP Request
JDBC Request
Java Request
SOAP/XML-RPC Request
WebService (SOAP)
@rchytas
rchytas / README.md
Last active June 7, 2020 17:13
Top 25 Most Dangerous Software Errors

Top 25 Most Dangerous Software Errors

A list of the most dangerous programming errors and how to fix them:

List is Made by : CERT, Purdue University University of California, KRvW Associates, Information-Technology Promotion Agency (Japan), Cigital Inc., Symantec Corporation MITRE, Aspect Security, Secunia, iDefense Labs at VeriSign, Inc., MANDIANT, Microsoft, Oracle Corporation, Red Hat Inc., Fortify Software, Hatha Systems, Northern Kentucky University, ThinkSec, Veracode, Inc., Breach Security, New Access SA, (Switzerland), Missing Link Security Inc., Tata Consultancy Services (TCS), Secured Sciences Group, LLC, RSA, Apple Product Security, Software Assurance Forum for Excellence in Code (SAFECode), Core Security Technologies Inc., Depository Trust & Clearing Corporation (DTCC), National Security Agency (NSA) Information Assurance Division, Department of Homeland Security (DHS) National Cyber Security Division
@rchytas
rchytas / README.md
Created May 15, 2020 23:16 — forked from hofmannsven/README.md
My simple AngularJS Cheatsheet
@rchytas
rchytas / README.md
Created May 15, 2020 23:15 — forked from hofmannsven/README.md
Notes on working with October CMS
@rchytas
rchytas / README.md
Created May 15, 2020 23:15 — forked from hofmannsven/README.md
Notes on working with Tableau Server APIs
@rchytas
rchytas / README.md
Created May 15, 2020 23:14 — forked from hofmannsven/README.md
Notes on frontend performance

Frontend Performance

Notes & tips

  • Reflow (Mozilla) = Layout (Webkit)
  • Loading: Layout > Paint > Composition
  • Composition is on GPU like translate > skips layout and paint loading cycle
  • Aim for 60 FPS
  • Only change properties that trigger compositing rather than layout or paint
  • Use requestAnimationFrame
@rchytas
rchytas / README.md
Created May 15, 2020 23:09 — forked from hofmannsven/README.md
Git Cheatsheet
@rchytas
rchytas / OWLToCSVRecursion.java
Last active June 23, 2023 15:47
Export an OWL ontology to a flat CSV file for people who don't know OWL
/**
* @author rchytas
*
* Use any way you like :)
*
*/
import java.io.File;
import java.io.FileInputStream;
import java.io.FileWriter;