Skip to content

Instantly share code, notes, and snippets.

View Talha-T's full-sized avatar

Talha Talip Açıkgöz Talha-T

View GitHub Profile
# coding: utf-8
# Face Recognition with OpenCV
# To detect faces, I will use the code from my previous article on [face detection](https://www.superdatascience.com/opencv-face-detection/). So if you have not read it, I encourage you to do so to understand how face detection works and its Python coding.
# ### Import Required Modules
# Before starting the actual coding we need to import the required modules for coding. So let's import them first.
Option Explicit
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
If Item.Attachments.Count < 1 Then Exit Sub
Dim app As New Excel.Application
app.Workbooks.Open ("C:\Users\CADCAM\Desktop\Kesim Takip Listesi.xlsx")
Dim dosyaAdı As String
dosyaAdı = Item.Attachments(1)
Dim isim, kalınlık, adet As String
' elevatör ara oluk(2mm 4 adet)
Dim parantez As Integer
@Talha-T
Talha-T / app.js
Last active May 27, 2017 12:02
Node.js Server That Includes Other Files Too
var url = require("url");
var fs = require("fs");
var Path = require("path");
function renderHtml(path, response) {
fs.readFile(path,
null,
function(error, data) {
if (error) {