Skip to content

Instantly share code, notes, and snippets.

View muhamedsahin's full-sized avatar
😇
Hello Im Coding my Tübitak Project

MFŞ muhamedsahin

😇
Hello Im Coding my Tübitak Project
View GitHub Profile
@Nannigalaxy
Nannigalaxy / opencv_webcam.py
Created September 7, 2020 03:44
Simple Webcam Video Streaming with FPS count using OpenCV Python 3
'''
Date: 07/09/2020
Written by Nandan M
'''
import cv2
import time
# 0 is default webcam. Change to switch between multiple cameras or IP address.
vc = cv2.VideoCapture(0)
@eftalyurtseven
eftalyurtseven / index.php
Created December 30, 2012 08:39
jQuery PHP AJAX Post Etme kodlarımız
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>Post işlemi &raquo; Eftal Yurtseven</title>
<link rel="stylesheet" href="style.css"/>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.3.min.js"></script>
<script type="text/javascript">
$(function(){
$("#sonuc").hide();
@NapoleonWils0n
NapoleonWils0n / base64url.php
Created November 3, 2012 01:10
php: base64 encode image by url
<!DOCTYPE html>
<html lang="en-GB">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Semantic html 5</title>
</head>
<body>
<img src="data:image/jpg;base64,<?php echo base64_encode(file_get_contents("image.jpg")) ?>" height="19" width="78" alt="base64" />