Re: Data storage and retrieval - cache or database Programming Mobile Development by jonathannweyer If the "status" doesn't change frequently, caching is a solid option. You could fetch it from the database the first time it's needed, then store it in a cache (like in-memory or Redis, depending on your setup), and use that for subsequent loads. Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani ….4% of web users. It is up to *you* to determine if that is an acceptable loss. I don't think… Re: Best way to find a segment of code that matches a given input segment? Programming Software Development by Dani … whole compute_similarity() thing is pretty meaningless. You would need to determine some type of concrete algorithm you want to tell the… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon … limited lifespan, and even if they didn’t, Google can determine that a page like this one (which we’re on… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani … sidebar, even if you are logged in. > Google can determine that a page like this one (which we’re on… Determine the first working day of the month Programming Software Development by gangemia …any conceptual improvements. [CODE=vb] ' ****************************************************************** ' Determine if the current day is the first working day… if ' ******************************************************************** ' Function: IsFirstWorkingDay ' Task: Determine if it's the first working day of the month… Re: Determine the first working day of the month Programming Software Development by gangemia … ' Script Language: ' Windows Script Host ' ' Task: ' Determine if the current day is the first working day of…If ' ******************************************************************** ' Function: IsFirstWorkingDay() ' Task: Determine if it's the first working day of the … determine if checkbox on other application is checked Programming Software Development by Raouldukey …/radiobuttons) However, I cannot seem to work out how to determine if a radiobutton or checkbox is checked or not. I… a different application. The following is what I have to determine the hWnd of the control and try to sendmessage to…) just fine to click on it, but I cannot not determine if checked already. I am not stuck on doing it… Re: Determine the first working day of the month Programming Software Development by gangemia … trick (much less convoluted than the first approach). [CODE=vb]' Determine if today's date is the first working day of… the current month is: " & FirstDayOfMonth End if ' Now determine if today is the first working day of the month… Re: Determine the first working day of the month Programming Software Development by TrustyTony … to Python forum earlier. Point of the function is to determine if the given day is first workday of month and… cases. [CODE=python]from datetime import date def isfirst_workday(theday): ''' Determine first workday based on day of month and weekday (0… Determine in which file a user function is defined? Programming Web Development by metaface … defined functions. Is there a way with PHP to also determine from which file the user function was defined? Consider the…] example_function1 example_function2 [/code] I would like to use PHP to determine that user function [I]example_function1[/I] was defined in the… determine type of card hand Programming Software Development by javaman2 … spades, but i am having trouble to make my program determine the type. I tried to make the program to… determine a flush, one pair, and three of a kind, but … Determine if a string is a directory name, file name or trash. Programming Software Development by banders7 … tested using the Borland C++ compiler. Code uses access() to determine if an input string exists either as a directory name… exist, the name is used as input to opendir() to determine if a directory stream can be opened for that name… determine highest amount and count occurances Programming Software Development by fugnut … is one of three files....from this I am to determine the highest and lowest amounts and count the occurances...I… program completed, however I cannot figure out the part to determine the highest, lowest..etc. Below is the portion of the… Re: Determine: User or Admin in Login Module Programming Software Development by AndreRet This function will determine whether or not a thread is running …any token attached directly to the thread. So to determine a thread�s user context, first attempt to …Call GetTokenInformation(hProcessToken, ByVal TokenGroups, 0, 0, BufferSize) ' Determine required buffer size If BufferSize Then ReDim InfoBuffer((BufferSize \ 4… Re: Determine the first working day of the month Programming Software Development by TrustyTony …):[/url] [CODE=python]from datetime import datetime def first_workday(theday): ''' Determine first workday based on day of month and workday (0… Determine Next Event Using DateTime and TimeSpan Programming Software Development by J.C. SolvoTerra … example for junior developers on using DateTime and TimeSpan to determine things like DateTime manipulation, and the difference between two Dates… our heads, this is quite simple, so how do we determine this in code. Case 2 'Weekly I record todays DayOfWeek… I don't know how to start to determine what hand of the poker, any ideas??? Programming Software Development by mclam Determine what kind of hand of poker, the five cards are. … Determine if a certain ivalue is in a string Programming Software Development by hay_man … them in regards to vectors or strings? I want to determine if a certain value using a sequential search, the code… Determine an Image dimension - ASP Programming Web Development by cancer10 Anyone knows how to determine an image's dimension using Classic ASP? Like How do I know the width, Height of this image using ASP? [url]http://www.google.co.in/intl/en_com/images/logo_plain.png[/url] Thanx Determine Visitors Location Programming Web Development by jonow Is there a JavaScript script that determines the geographical location of the visitor? I need one to determine that and depending on there location run 1 of about 5 different JavaScript scripts. How do i do this? Does someone know were i can can a script to do this or could someone write one. I am not very good at Javascript so i cant write my own Re: Determine Visitors Location Programming Web Development by digital-ether … the geographical location of the visitor? I need one to determine that and depending on there location run 1 of about… Determine end of word Programming Software Development by samli88 How would u determine the end of a word using pointers? Re: Determine end of word Programming Software Development by tux4life [QUOTE=samli88;931960]How would u determine the end of a word using pointers?[/QUOTE] Here's an approach: [LIST=1] [*]First you read away all whitespaces. [*]Then you read until you come across a non-alphabet character. [*]Now you stop because you've reached the end of a word. [/LIST] determine height of word-wrapped content Programming Web Development by Phaelax Hopefully, I explain this well enough. If I know the width of a container, how could I determine how many line breaks are needed to fit a given string within that space? Given a string of N-length, if it needs to wrap beyond a 3rd line, then I want to cut the string off and concatenate "..." at the end of it. Determine if fields of a CSV file has whitespace characters only Programming Software Development by gangemia … table as a string of whitespace characters. I needed to determine if each field had whitespace characters only and then make… Determine if socket behind a NAT? Programming Software Development by jamesd128 If I have a listening TCP socket open and someone connects to it, is there a way for me to determine if me and the person connecting to me are both behind the same router, and that the router is using NAT? Determine if IP address is within a subnet Programming Software Development by cableguy31 I need to write code that can determine if an IP address is in a subnet based one the subnet address and mask. I don't even know where to begin with this, so any tips would be appreciated. Thanks. Re: Determine if IP address is within a subnet Programming Software Development by Intrade … validIPAddress; } [/code] ... Or are you asking about the algorithm to determine whether an IP Adress exists in the subnet or not… Determine: User or Admin in Login Module Programming Software Development by abelingaw … the log-in. I would like the log-in to determine the type of the user logging in, a User or…