November 2024 S M T W T F S 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 Now Reading
Planned books:
None
Current books:
-
Mathematics for the Digital Age and Programming in Python by Maria Litvin and Gary Litvin
-
Statistics In Plain English by Timothy C. Urdan
Recent books:
- Practical Machine Learning in R by Fred Nwanganga, Mike Chapple
- Statistical Inference via Data Science: A ModernDive into R and the Tidyverse by Chester Ismay and Albert Y. Kim
- The Nature of Code by Daniel Shiffman
- Story: Substance, Structure, Style and the Principles of Screenwriting by Robert McKee
- The Red Queen: Sex and the Evolution of Human Nature by Matt Ridley
-
Tag Archives: MySQL
The Year 2038 Problem
I have not written a technical blog post in a long time. Yesterday I learned about the Year 2038 Problem and I wrote some code to demonstrate the problem. The Year 2038 Problem involves Unix time which is the number … Continue reading
How To Create A JSON Web Service In ASP.NET
ASP.NET makes it easy to create web services but they usually return XML. Like many web developers I now prefer JSON. This article and sample code will show you how to get your web service to return data in the … Continue reading
Posted in ASP.NET, Databases, JavaScript, Programming, Web
Tagged ASP.NET, C#, jQuery, JSON, MySQL, web service
46 Comments
PHP Encryption And CakePHP On The iBook
Today I continued my intensive work on PHP web development. I spent about 3 hours studying PHP’s many methods of encrypting data. There are a variety of encryption algorithms that you can use including MD5, SHA-1, DES etc so it … Continue reading
VBScript For JSON
Tonight I found an Active Server Pages script for generating JSON from databases that ASP can connect to using ADO. This may be useful for understanding how to translate data into JSON. It may also prove handy for creating JSON … Continue reading