Skip to content

Instantly share code, notes, and snippets.

View AymanFekri's full-sized avatar

Ayman Negmeldin AymanFekri

View GitHub Profile
@AymanFekri
AymanFekri / .gitignore
Created February 15, 2021 00:09 — forked from pingrishabh/.gitignore
Standardised gitignore for your Flutter apps & Dart projects
### Flutter Generated
.flutter-plugins-dependencies
# Miscellaneous
*.class
*.lock
*.log
*.pyc
*.swp
.DS_Store

Rails naming conventions

General Ruby conventions

Class names are CamelCase.

Methods and variables are snake_case.

Methods with a ? suffix will return a boolean.

Rails naming conventions

General Ruby conventions

Class names are CamelCase.

Methods and variables are snake_case.

Methods with a ? suffix will return a boolean.

@AymanFekri
AymanFekri / upload.php
Created April 20, 2018 21:04 — forked from taterbase/upload.php
Simple file upload in php
<!DOCTYPE html>
<html>
<head>
<title>Upload your files</title>
</head>
<body>
<form enctype="multipart/form-data" action="upload.php" method="POST">
<p>Upload your file</p>
<input type="file" name="uploaded_file"></input><br />
<input type="submit" value="Upload"></input>