Questions tagged [tracking]
28 questions
24
votes
6 answers
git / other VCS - how often to commit?
I've been a programmer now for over 11 years, and am just starting to get into version control for real. The places I've worked at have never really used version control (one committed at the end of each day, the others simply haven't bothered).
I…

clinton3141
- 351
- 2
- 7
13
votes
4 answers
How can I track quality attributes on my team's Kanban?
My team uses a Kanban system for tracking day-to-day progress and it's worked out really well for understanding progress on features (captured as user stories). We have largely allowed our system design to emerge as we develop features which worked…

Michael
- 2,102
- 16
- 22
13
votes
4 answers
Database History Table / Tracking Table
Currently I want to structure a tracking/history table like this:
PrimaryKey - ID
OtherTableId - fk
fieldName - name of the field its tracking
OldValue
NewValue
UserName
CreateDateTime
So basically I want to have a table that will track another…

user76982
- 133
- 1
- 1
- 6
9
votes
3 answers
Is it unethical to track app usage through REST API calls?
I am building an app that communicates with my website with ASIHTTPRequest to a PHP-based REST API on the server side.
Naturally, in my app I have different endpoints on the server side, and usually return JSON data.
Is it unethical to log counters…

barfoon
- 303
- 1
- 2
- 7
7
votes
5 answers
How does Agile avoid having a project stall when close to completion (the 90 percent syndrome)?
I read a lot the past few weeks about something that calls the 90% syndrome.
Basically, the syndrome describes a project that reaches about 90% completion on schedule, then stalls, finally finishing after about twice the originally projected…

Belgi
- 567
- 1
- 4
- 9
7
votes
2 answers
Is tracking Android OS.Buid/Manufacturer info a privacy issue?
On the Android operating system details about the phone are available via the Android.OS.Build class. These details include things such as the phone manufacturer, model, version, etc. The customer may want us to collect this data and save it to our…

Alex Wiese
- 211
- 3
- 5
5
votes
1 answer
Best way to verify that a user has completed a task on another website.
We are developing a website for students on which they first have to fulfill specific tasks in order to use our service. The problem is, that those tasks are on another website, which has nothing to do with ours and is currently placed in an iframe…

D_Burg
- 51
- 2
4
votes
3 answers
Should we reuse web app logs for user behaviour analytics?
Our web app generates a large amount of logs. These logs include both events regarding background operations in the app (data arrives from the server, ajax failures, inter-component communication, etc.); and also user initiated actions (user clicked…

EyalAr
- 223
- 2
- 5
4
votes
1 answer
Tracking contributions from contributors not using git
I have a central git repo located on a server. I have many contributors that are not tech savvy, do not have server access, and do not know anything about git. But they are able to contribute via the project's web side. Each of them logs on via a…

alex.jordan
- 143
- 3
4
votes
2 answers
Designing an email system to guarantee delivery
Summary:
We are looking to expand our use of email for notification purposes. We understand it will generate more inbox volume, but we are being selective about which events we fire notification on in order to keep the signal-to-noise ratio…
user53019
3
votes
1 answer
How can I track who invited who to install?
After a user invites their contacts from within my app, I want to send the first user a notification "so and so installed the app, you can now connect with them."
So when a user invites someone, I send the invitee a link to my landing page, with a…

Dingredient
- 375
- 3
- 9
3
votes
1 answer
Error handling, creating time line, need help defining what aspects of the environment need tracking
For my final year project, I'm working on a script that will run your python program and provide a time line of events(so far working on assignments) and create a story of what happened(the changes in the variables). Based on what Exception is…

Flinsy
- 31
- 1
2
votes
2 answers
Programmer logbook application?
I've just released my application to the public, and I'm working on an updated version, but I really think I should keep track of ALL the code changes. In case some functionality suddenly starts failing, with a history of all the changes I made it…

Juan
- 655
- 6
- 14
2
votes
1 answer
Cookie consent and facebook cookies?
As a bit of a background, we create a website where a "third party" can organize a sport event, letting us handle enrollment and other checks.
Well on our website ever since we implemented a cookie "wall" we have been getting more and more requests…

paul23
- 1,061
- 1
- 8
- 14
2
votes
3 answers
Move the onscreen circle when camera moves
I have a script that accesses my webcam and displays the captured video on the screen. I can also very easily draw a circle (a rectangle, it doesn't matter) over the video.
When I move the camera physically, the video also "moves". My webcam is…

Lorenzo Villani
- 39
- 3