-
Recent Posts
Recent Comments
Archives
Categories
Meta
Author Archives: admin
Parallel For and Foreach
Ive finally used the greatness known as the parallel.for and parallel.foreach. I just dont understand how I’ve lived so long without this greatness that has been bestowed upon us in the world known as .net. A parallel loop allows you to run … Continue reading
Blurb of the Day: Datatable/Dataview search. Find vs Rowfilter vs Select vs Linq
So at my job i needed to update some code. The way we accessed the old code had to change since i changed some of the underlying specs of the data that i was using. In this change i decided … Continue reading
Posted in Uncategorized
Tagged .net, Dataset, Dataview, Find, Linq, Rowfilter, select, Slow code
4 Comments
Blurb of the day
So i’ve been working with azure lately and what happens…………..wait for it………….wait for it…. wait for it……….. it goes down for the entire day while i’m in the middle of testing. Considering we are building a product on top of … Continue reading
Posted in Uncategorized
Leave a comment
Easy PHP Expiring Links
Lets say you have a download you want someone to use and you only want them to have access for x days. What do you to? Create an expiring link. I looked for code for this but everyone wanted to … Continue reading
Posted in Uncategorized
Leave a comment
Creating Windows Services
Creating a windows service in .net turns out to be a really simple thing. Instead of me doing a write up on it i will give you a like to a walkthrough on msdn and you can check it out. … Continue reading
Posted in Uncategorized
4 Comments
The Awesomeness Of Interfaces
It is a wonder how i went so long without the greatness of the vb.net Interfaces. We’ve all made classes that we about the same so we just made a base class to hold all of the like data and … Continue reading
Posted in Uncategorized
Tagged .net, cool code, interfaces, vb.net
Comments Off on The Awesomeness Of Interfaces
Item Of the Day. Playing .net io.stream using FMOD
So lets say you want to connect to a website to stream their music through your app, but the problem is they dont give you a direct link only a connectstream from system.net.connectstream. How do you play this with fmod? … Continue reading
Item of the Day: Transparent Textures with Android Opengl es
So on my quest to make a new android app i ran into an issue. My stupid texture would not filter the black from the image so that portion could become trasparent. But never fear after much searching and me … Continue reading
Website login through code
website logins are an easy thing to do. All you have to remember is post all inputs for the form. Also always check for any javascript in the form that might need to be implemented in your code. Once you … Continue reading
Posted in Uncategorized
239 Comments
Blurb of the day
If you ever decide you need to load a datatable from an xml file just remember if you export from a datatable to an xml file it will use that data tables name in the xml file. Why is this … Continue reading