crystaltenn.com
LINQ Eager and Lazy Loading ~ Crystal Tenn
http://www.crystaltenn.com/2015/07/linq-eager-and-lazy-loading.html
Monday, July 27, 2015. LINQ Eager and Lazy Loading. Posted on Monday, July 27, 2015by Crystal Tenn. Here's a little bit on using Linq and the ways to get data out via Eager / Lazy loading and LINQ methods vs operators. The explanations are in the code comments below. Get; Set;. LINQ Eager and Lazy Loading. Project Euler 8: Largest product in a series (C#). Project Euler 7: 10,001 prime number (Java). Project Euler 6: sums and squares (Java). IE8 and Charts JS. GET vs. POST. Recently at work, I upgraded t...
crystaltenn.com
March 2015 ~ Crystal Tenn
http://www.crystaltenn.com/2015_03_01_archive.html
Sunday, March 29, 2015. Posted on Sunday, March 29, 2015by Crystal Tenn. Here is a giant list of great sites to practice some puzzles for fun! You can do them when you want or make a goal to do one or a few a day. My current plan is to do one reddit daily planner when I can (ideally once a day, but hard to do with work schedule. and *cough* DOTA 2! Take a look at my setup! My Reddit Github repository. Http:/ www.reddit.com/r/dailyprogrammer. Https:/ www.hackerrank.com/. Http:/ www.codewars.com/. A little...
crystaltenn.com
May 2015 ~ Crystal Tenn
http://www.crystaltenn.com/2015_05_01_archive.html
Sunday, May 31, 2015. Posted on Sunday, May 31, 2015by Crystal Tenn. Servers connect directly to the Internet wire. It is easy to visualize the connection between one server to another as a simple view. The big picture is that there are millions and millions of connections onto this wire. Since this Internet wire is a physical wire, underground and whatnot, how does it work internationally. If you do work from home, you will likely need to use a VPN for secure access. Photo below from PC Mag. The reason ...
crystaltenn.com
December 2014 ~ Crystal Tenn
http://www.crystaltenn.com/2014_12_01_archive.html
Wednesday, December 17, 2014. Unity: Save Scene vs. Save Project. Posted on Wednesday, December 17, 2014by Crystal Tenn. When you first start using Unity, you will notice there is a Save Scene and a Save Project option. As for the Scene well, then your saving the actual scene file. A scene is a level. This is usually what you are working on. Save Scene also saves project settings. Shortcut is CTRL S. Either use Save Scene, CTRL S, or both Save Scene and Save Project. Wanna guess how I learned that? All y...
crystaltenn.com
Project Euler 7: 10,001 prime number (Java) ~ Crystal Tenn
http://www.crystaltenn.com/2015/07/project-euler-7-10001-prime-number-java.html
Friday, July 3, 2015. Project Euler 7: 10,001 prime number (Java). Posted on Friday, July 03, 2015by Crystal Tenn. This one is interesting, if you think about it. question is if there is a formula? So "efficiently" iterate it is! You could iterate yourself to death going through every possibility. or try and find a better way to iterate, just less. 1031 ms to calculate is about a second, which fits into most of your attention spans out there. so I'll take it :). Get; Set;. LINQ Eager and Lazy Loading.
crystaltenn.com
Project Euler 8: Largest product in a series (C#) ~ Crystal Tenn
http://www.crystaltenn.com/2015/07/project-euler-8-largest-product-in.html
Thursday, July 9, 2015. Project Euler 8: Largest product in a series (C#). Posted on Thursday, July 09, 2015by Crystal Tenn. The four adjacent digits in the 1000-digit number that have the greatest product are 9 × 9 × 8 × 9 = 5832. Find the thirteen adjacent digits in the 1000-digit number that have the greatest product. What is the value of this product? Get; Set;. LINQ Eager and Lazy Loading. Project Euler 8: Largest product in a series (C#). Project Euler 7: 10,001 prime number (Java). GET vs. POST.
crystaltenn.com
Code Project: AnkiTranslate ~ Crystal Tenn
http://www.crystaltenn.com/2015/06/ankitranslate.html
Friday, June 19, 2015. Posted on Friday, June 19, 2015by Crystal Tenn. To see the full app on GitHib. Coming out of a medical background, I can't say I'm one for memorizing much of anything (memorizing hundreds of pages/slides at a time taught me 2 things: #1 amazing time management skills, #2 you forget everything you don't directly apply and use often). BUT I will say that for learning a language you need to memorize vocabulary and that Anki. Output: you will get a text file you can import into Anki th...
crystaltenn.com
Cool APIs ~ Crystal Tenn
http://www.crystaltenn.com/2015/07/cool-apis.html
Monday, July 27, 2015. Posted on Monday, July 27, 2015by Crystal Tenn. Little side applications are fun to make. Try thinking of add-ons to your favorite current apps/websites to make them even better and you can make your own project! Or these are great tools to incorporate to make something else new and cool. I love adding JS libraries and APIs from other people and places to make use of the awesome things people put out into the web to share. Of course, Google. Google drive? Can I say wheel of lunch?
crystaltenn.com
Index ~ Crystal Tenn
http://www.crystaltenn.com/p/index.html
List of topics I have covered thus far: in an ordered list by topic, organized in a progressive learning fashion. (If you are looking for code projects or puzzles, please see the corresponding links on the navigation bar to the left). Architectural Designs, Models, and Optimization. Model–View–Controller (MVC). Cross-Site Request Forgery (CSRF) and ASP.NET MVC Prevention. ASPNET MVC connection to a database. Model View ViewModel (MVVM) Design. Interfaces: Better Design, How and When to Use. JavaScript: A...
crystaltenn.com
October 2014 ~ Crystal Tenn
http://www.crystaltenn.com/2014_10_01_archive.html
Tuesday, October 28, 2014. Processes, Threads, and Process Real-Time "fun". Posted on Tuesday, October 28, 2014by Crystal Tenn. A single running program. The Process.Start method is what shows documents on a computer, goes to web pages, and executes EXE programs. like Photoshop or Microsoft Word! By default in .NET, the programs are single-threaded. However, you have the ability to create multiple threads. Here's an example of an application and how it might use multi-threading:. Within that Process, how...