Skip to content

Instantly share code, notes, and snippets.

View Resurser's full-sized avatar
💻
O.T

Resurser Resurser

💻
O.T
  • Lviv
View GitHub Profile
@ShaneShipston
ShaneShipston / php.ini
Created July 23, 2023 16:20
NativePHP Windows Support
[PHP]
;;;;;;;;;;;;;;;;;;;
; About php.ini ;
;;;;;;;;;;;;;;;;;;;
; PHP's initialization file, generally called php.ini, is responsible for
; configuring many of the aspects of PHP's behavior.
; PHP attempts to find and load this configuration from a number of locations.
; The following is a summary of its search order:
@MustafaMagdi
MustafaMagdi / Container.php
Last active January 6, 2025 13:07 — forked from tlikai/container.php
PHP Dependency Injection Container
<?php
/**
* Class Container
*/
class Container
{
/**
* @var array
*/
@mosra
mosra / elastic.html
Created August 30, 2011 20:24
Percentage / fixed size combination in HTML tables
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<body>
<style type="text/css">
.special:after {
content: "";
display: block;
width: 100px;
height: 0px;
}