Skip to content

Instantly share code, notes, and snippets.

View MoranggNormal's full-sized avatar
🎄
Merry Birthday xd

Euller Peixoto MoranggNormal

🎄
Merry Birthday xd
View GitHub Profile
@MisterDaniels
MisterDaniels / .env
Last active September 15, 2022 20:19
Wordpress Environment
SERVER_HTTP_PORT=80
SERVER_HTTPS_PORT=443
MYSQL_ROOT_PASSWORD=test
AWS_ACCESS_KEY=test
AWS_SECRET_ACCESS_KEY=test
@gaearon
gaearon / modern_js.md
Last active July 18, 2024 10:37
Modern JavaScript in React Documentation

If you haven’t worked with JavaScript in the last few years, these three points should give you enough knowledge to feel comfortable reading the React documentation:

  • We define variables with let and const statements. For the purposes of the React documentation, you can consider them equivalent to var.
  • We use the class keyword to define JavaScript classes. There are two things worth remembering about them. Firstly, unlike with objects, you don't need to put commas between class method definitions. Secondly, unlike many other languages with classes, in JavaScript the value of this in a method [depends on how it is called](https://developer.mozilla.org/en-US/docs/Web/Jav
@asilbalaban
asilbalaban / forms.css
Last active July 29, 2022 00:49
Quick form styling with CSS
input, textarea {
padding: 9px;
border: solid 1px #E5E5E5;
outline: 0;
font: normal 13px/100% Verdana, Tahoma, sans-serif;
width: 100%;
background: #FFFFFF;
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}