tracking

Tracking changes in a SQL server 2005 database

夙愿已清 提交于 2019-11-30 04:12:07
I have been tasked with developing a solution that tracks changes to a database. For updates I need to capture: date of update old value new value field affected person doing change record id table record is in For deletes: date of delete person doing delete The title/description/id of record deleted. The tables I am tracking changes on all have a title or description field. I'd like to capture this before the record is deleted. table record was in For inserts: date of insert person doing change record id table record is in I've thought of a few ways to do this: I am using stored procedures

Detect when elements within a scrollable div are out of view

…衆ロ難τιáo~ 提交于 2019-11-30 03:24:19
I need to find a good solution to the following problem. I see a lot of people asking about tracking if an element is in or outside of view Port for the page or browser window. I need to be able to replicate this action, but inside a DIV that scrolls, with overflow:scroll for example. Does anyone know of a good example, for this specific action? Thanks in advance. i had the same problem before, i have ended up with the following function.the first parameter is for the element to check, the second is to check if the element is partially in-view.it is for vertical check only, you can extend it

How do I extract Google Analytics campaign data from their cookie with Javascript?

六月ゝ 毕业季﹏ 提交于 2019-11-30 00:35:38
I'd like to be able to pull out the data stored in the Google Analytics tracking cookie with all the campaign tracking information using Javascript. It needs to work with the newer version of GA using ga.js, not urchin.js. I found a method that works with urchin.js but we don't use that for our tracking. Does anybody know how to extract the Campaign , Source , Medium , Content and Term from the cookie Google uses? I ended up figuring this out on my own. I just dug into what the cookie had stored and extracted the information. Here's what I came up with: var ga_source = ''; var ga_campaign = ''

Realtime Face-tracking on Iphone [closed]

泄露秘密 提交于 2019-11-29 23:23:03
Does anybody know which,currently,is the best library for realizing a real time face-tracking solution for iPhone? I've done a research but I've found quite old articles about OpenCV portings. I would like to know if there is any specific,reliable,fast (and possibly free) AR solution for overlay in real time an image to the face in iPhone camera Video Stream (not simply a static image) Any help (link,tutorial) would be great. Thanks everybody!! Elos iOS 5 brings facial recognition as a native feature. Basically you just have to configure an object to act as your the video output stream’s

Track php emails with php script?

随声附和 提交于 2019-11-29 23:16:50
I am sending email newsletters using php mail() function. I have to track the newsletter emails status. The status would be 1. Num.Of Sent. 2. Num.Of Delivered. 3. Delivered date. 4. Total Num.Of Read. 5. Unique Num.Of Read. 6. Read date. 7. Num.Of Bounced. 8. Total Num.Of users clicked the links in the email. 9. Unique Num.Of users clicked the links in the email. From the above status i could track the following: 1. Is Sent. // This is tracked as it is sent from coding. 8. Total Num.Of clicked the links in the email. // This is tracked by adding additional parameters in url. 9. Unique Num.Of

How Android app install tracking works?

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-29 21:30:44
问题 can anybody here explain how android app referral tracking works? a friend gave me an android app's google play referral url. And i installed the app and opened it. How does the app developer know that it's my friend who referred me to their app? I know that the link that my friend gave me contains his referral details but if i close google play after completing the app install, how can google play detect that i opened the app? So some unique data is injected into the app while i install it

How to implement referral program in mobile Apps for both Android and iPhone

我只是一个虾纸丫 提交于 2019-11-29 18:59:35
We have a mobile app that's available in both Google Play Store and Apple AppStore, we want to implement a referral program to get more users to install and use our App. Here's the user story: Every new user (E.g John) is given to a unique referral link, where he/she can share to FB/TW/Email or SMS. When John friend clicks the link, they are directed to respective AppStore base on their device. The moment John's friend install the app and open the app, our server should get notified, and we shall know that the referral is from John, John will be rewarded accordingly. We have evaluated a number

Reading barcodes with android

与世无争的帅哥 提交于 2019-11-29 18:57:31
Hi I am developing an application for the android htc hero. I am looking into ways of using the inbuilt camer to read 2D barcodes and extract the string returned from the barcode. I have only recently begun working with the android sdk but I do have a programming background from working on projects with java. I am curious to know what the best way to read the 2D barcode would be. I have some sample applications that read the barcode but they are all .apk files and have no source or library that i can work with. to give you a better idea of what i am trying to accomplish this site allows the

building Role based application

五迷三道 提交于 2019-11-29 15:00:52
问题 I have to make a small website where I have 7 type of users. which can login into system. some of users have permissions to only add equipments and others can add/edit. some of them can only view. There will be some common fields for all users adding equipments in system and some fields will be user specific. I have to track all changes in equipments with user changing equipments. Can any one explain what will be best way to do this job. Way in the sense table structure for users and tracking

OpenCV 3 Tracker won't work after reinitialization

淺唱寂寞╮ 提交于 2019-11-29 14:05:55
I have issue using OpenCV 3 tracking module for tracking. It behaves same, either I use interface class (cv::Tracker) or class with implementation (like cv::TrackerMedianFlow or cv::TrackerMIL, etc). Sample is a bit modified sample from OpenCV sample folder After correct creation Ptr<Tracker> tracker = Tracker::create( tracker_algorithm ); if ( tracker == NULL ) { std::cout << "***Error in the instantiation of the tracker...***\n"; return -1; } initialization works just fine if ( !tracker->init( frame, boundingBox ) ) { std::cout << "***Could not initialize tracker...***\n"; return -1; }