Skip to content

Instantly share code, notes, and snippets.

@undone37
undone37 / intl_phone_regex.md
Last active October 28, 2021 11:58
Regex for international phone number in specific format

Regex for international phone number in specific format

This is a regex for the special format of a phone number like this:

+[COUNTRY CODE] ([AREA CODE]) [CONNECTION NUMBER][[-[EXTENSION]]]

\+\d{1,3}\s\(\d{2,}\)\s\d{3,}(-\d{1,4})?$
@undone37
undone37 / china-ipc.md
Last active November 11, 2018 19:44
Information on Zosi Wifi IP Camera (IPC PE3010-W) - China IP Wifi Camera

Information on Zosi Wifi IP Camera (IPC PE3010-W) - China IP Wifi Camera

IPC PE3010-W

Device Info

Device Name ip-camera

Device Model IPC

Hardware Version 1.3.0.

@undone37
undone37 / upload.php
Last active November 7, 2018 12:26 — forked from taterbase/upload.php
Einfacher PHP Datei Upload
<!DOCTYPE html>
<html>
<head>
<title>Dateiupload</title>
</head>
<body>
<form enctype="multipart/form-data" action="upload.php" method="POST">
<p>Laden Sie eine Datei hoch</p>
<input type="file" name="file"><br />
<input type="submit" value="Upload">