Skip to content

Instantly share code, notes, and snippets.

View mhajder's full-sized avatar
🤑
V3n@t0r 3rr0rum

Mateusz Hajder mhajder

🤑
V3n@t0r 3rr0rum
View GitHub Profile
Attribute VB_Name = "MałeLitery"
Sub MałeLitery()
For Each Cell In Selection
If Not Cell.HasFormula Then
Cell.Value = _
Application _
.WorksheetFunction _
.Proper(Cell.Value)
End If
Next Cell
@mhajder
mhajder / all.php
Created September 19, 2017 10:04
File to display directory content.
<html>
<body>
<br>
<table align="center" width="100%" border="0">
<tr>
<td width="10%">&nbsp;</td>
<td>
<?php
if ($handle = opendir('.')) {
@mhajder
mhajder / test.php
Created June 11, 2017 11:40
PHP test file
<?php
$indicesServer = array('PHP_SELF',
'argv',
'argc',
'GATEWAY_INTERFACE',
'SERVER_ADDR',
'SERVER_NAME',
'SERVER_SOFTWARE',
'SERVER_PROTOCOL',
'REQUEST_METHOD',