Tagged Questions
The state tag has no wiki summary.
22
votes
5answers
791 views
ST Monad == code smell?
I'm working on implementing the UCT algorithm in Haskell, which requires a fair amount of data juggling. Without getting into too much detail, it's a simulation algorithm where, at each "step," a ...
20
votes
14answers
1k views
How can you do anything useful without mutable state?
I've been reading a lot of stuff about functional programming lately, and I can understand most of it, but the one thing I just can't wrap my head around is stateless coding. It seems to me that ...
19
votes
1answer
1k views
STArray documentation for newbies and State/ST related questions
I have a hard time to understand STArray from the documentation and other howtos/discussion I've found through Google. I've got some more related questions below.
According to the documentation, ...
18
votes
2answers
2k views
How to prevent Custom Views from losing state across screen orientation changes
I've successfully implemented onRetainNonConfigurationInstance() for my main activity to save and restore certain critical components across screen orientation changes.
But it seems, my custom views ...
18
votes
4answers
1k views
When is it OK to use an IORef?
One thing that has always confused me is whether or not it's an okay time to use an IORef. Are there any guidelines that should be followed when deciding whether or not to use an IORef for a task? ...
16
votes
4answers
851 views
Functional Reactive F# - Storing States in Games
I am a student currently learning about Functional Reactive paradigm using F#. It's radically new viewpoint for me. Yesterday I learned about creating a simple ping-pong game using this paradigm. The ...
16
votes
4answers
640 views
How to design a “web spider” with state in Haskell?
I am learning Haskell after years of OOP.
I am writing a dumb web spider with few functions and state.
I am not sure how to do it right in FP world.
In OOP world this spider could be designed like ...
14
votes
3answers
7k views
WPF TabControl - how to preserve control state within tab items (MVVM pattern)
I am a newcomer to WPF, attempting to build a project that follows the recommendations of Josh Smith's excellent article describing The Model-View-ViewModel Design Pattern.
Using Josh's sample code ...
14
votes
4answers
759 views
ASP.NET State Management in appropriate situations
There are 6 techniques to manage states in ASP.NET 3.5 (as far as I know).
(1) View State
(2) Cross Page Posting
(3) Query String
(4) Session State
(5) Application State
(6) Cookies
Can anyone give ...
14
votes
7answers
4k views
Advantages of stateless programming?
I've recently been learning about functional programming (specifically Haskell, but I've gone through tutorials on Lisp and Erlang as well). While I found the concepts very enlightening, I still don't ...
13
votes
1answer
428 views
Managing a stateful computation system in Haskell
So, I have a system of stateful processors that are chained together. For example, a processor might output the average of its last 10 inputs. It requires state to calculate this average.
I would ...
13
votes
3answers
759 views
How are mutable arrays implemented in Haskell?
I've read many research papers on this topic, and they usually argue that arrays are implemented using Monads. But none of these papers gave a clear definition of how the "type" Array itself should be ...
11
votes
13answers
791 views
Web Dev - Where to store state of a shopping-cart-like object?
You're building a web application. You need to store the state for a shopping cart like object during a user's session.
Some notes:
This is not exactly a shopping cart, but more like an itinerary ...
10
votes
1answer
2k views
How to preserve iPhone application state before terminating the application?
I have developed an iPhone application with tab bar and navigation controllers.
It is working fine for now.
Now I want the application to save its state before quitting.
Suppose I have 6 tabs and ...
9
votes
2answers
131 views
map runSTArray over a list of STArrays?
I have a function that creates recursively a flattened list of matrices from a tree that have to be mutable as their elements are updated often during their creation. So far I have come up with a ...
9
votes
5answers
184 views
Is printing an empty string observable behavior in C++?
In C++03 Standard observable behavior (1.9/6) includes calls to library I/O functions. Now I have this code:
printf( "" );
which is formally a call to a library I/O function but has no effect.
Is ...
9
votes
4answers
322 views
Does C++ support compile-time counters?
For the purpose of introspection, sometimes I've wanted to automatically assign serial numbers to types, or something similar.
Unfortunately, template metaprogramming is essentially a functional ...
9
votes
3answers
434 views
Clojure namespace management - Is there a way to save and restore the state of clojure repl namespaces, imports etc.?
Clojure has a large number functions/macros for working with namespaces and java package imports. To my (limited) understanding the set up of namespaces can be considered state in a clojure process ...
8
votes
2answers
249 views
User state in Parsec
I'm parsing an expression using Parsec and I want to keep track of variables in these expressions using the user state in Parsec. Unfortunately I don't really get how to do it.
Given the following ...
8
votes
5answers
993 views
Haskell and State
Haskell is a pure functional programming language.
My question is:
What are the advantages and disadvantages of using Haskell to solve problems involving lots of state, for example GUI programming or ...
8
votes
1answer
388 views
The reason for MonadState get and put?
I'm reading the Monads chapter in Real World Haskell (chapter 14).
A function is defined as follows:
type RandomState a = State StdGen a
getRandom :: Random a => RandomState a
getRandom =
get ...
7
votes
2answers
5k views
Android ListView State List not showing default item background
Have read over a number of related questions here at SO, as well as looked through the Android docs and source to try to figure this out, but I am stumped, although given that the listSelector seems ...
7
votes
2answers
432 views
Keeping State in a Stateless world
I am converting a context-free grammar into Greibach Normal Form (GNF). The main transformation (from Hopcroft & Ullman) is a sequence of iterations over the indexed variables of the grammar. It ...
7
votes
2answers
570 views
Combine state with IO actions
Suppose I have a state monad such as:
data Registers = Reg {...}
data ST = ST {registers :: Registers,
memory :: Array Int Int}
newtype Op a = Op {runOp :: ST -> (ST, a)}
...
7
votes
5answers
349 views
Can Haskell's monads be thought of as using and returning a hidden state parameter?
I don't understand the exact algebra and theory behind Haskell's monads. However, when I think about functional programming in general I get the impression that state would be modelled by taking an ...
7
votes
15answers
1k views
What kind of problems are state machines good for?
What kind of programming problems are state machines most suited for?
I have read about parsers being implemented using state machines, but would like to find out about problems that scream out to be ...
6
votes
4answers
135 views
Clojure states within states within states
I'd love to hear what advice the Clojure gurus here have about managing state in hierarchies. I find I'm often using {:structures {:like {:this {:with {:many 'levels}} } } } and if I want to track ...
6
votes
3answers
150 views
What is the Linux process kernel stack state at process creation?
I can't find this information anywhere. Everywhere I look, I find things referring to how the stack looks once you hit "main" (whatever your entry point is), which would be the program arguments, and ...
6
votes
3answers
579 views
How to persist objects between requests in PHP
I've been using rails, merb, django and asp.net mvc applications in the past. What they have common (that is relevant to the question) is that they have code that sets up the framework. This usually ...
6
votes
2answers
11k views
Android — How to properly handle onPause/onResume methods?
I have an app that starts playing sounds and begins/resumes gameplay in the onResume() method, but what I'm noticing is that if my app was the last run application when I put the phone into standby ...
6
votes
13answers
471 views
Does static imply no state
I recently made a recommendation to one of my colleagues stating that on our current project (C#) "services should be stateless and therefore static".
My colleague agreed and indicated that in our ...
6
votes
2answers
1k views
Tools for experimental Protocol Design & Development?
Are there any open source, high level tools that would facilitate and simplify development of experimental network protocols (TCP/UDP) using a GUI?
Basically, something like a dynamic state machine ...
5
votes
1answer
125 views
Does any change in program state constitute observable behavior?
Consider the two following programs:
//program one
int main()
{
printf( "hello\n" );
}
//program two
int main()
{
srand( 0 );
if( rand() ) {
printf( "hello\n" );
} else {
...
5
votes
4answers
499 views
Alternatives to HTTP Session state in plain-vanilla .NET web services app
After a long struggle with the Page Lifecycle in ASP.NET and its performance, we've begun refactoring our web app to implement web services (plain-vanilla .asmx .NET web-services) and jQuery on the ...
5
votes
1answer
253 views
Haskell: modelling online game states for GUI
I'm writing a client UI for an online game. It is structured as a Model module which represents the game state and a View module, which keeps track of the current game state and updates it using model ...
5
votes
1answer
106 views
How should I avoid memoization causing bugs in Ruby?
Is there a consensus on how to avoid memoization causing bugs due to mutable state?
In this example, a cached result had its state mutated, and therefore gave the wrong result the second time it was ...
5
votes
3answers
295 views
Is there a sensible way to unzip the state monad?
I'd like to have a function like:
unzipState :: (MonadState s m) => m (a, b) -> (m a, m b)
which would take a (stateful) computation that returns a tuple, and would return two (dependant) ...
5
votes
3answers
3k views
Android: how to add a custom button state
For instance, the default button has the following dependencies between its states and background images:
<?xml version="1.0" encoding="utf-8"?>
<selector ...
5
votes
2answers
1k views
Save and restore expanded/collapsed state of an ExpandableListActivity
I have an ExpandableListActivity (using a SimpleCursorTreeAdapter) which starts another activity when the user clicks on a child-element. When pressing the back-button in the new activity all the ...
5
votes
3answers
5k views
ExtJS: Login with 'Remember me' functionality
I'm trying to create a simple login window with the very common 'Remember me' functionality. The login validation is done AJAX style, thus the browser won't remember my input.
My approach is to use ...
5
votes
7answers
1k views
Designing a state machine in C++
I have a little problem that involves modeling a state machine.
I have managed to do a little bit of knowledge engineering and 'reverse engineer' a set of primitive deterministic rules that determine ...
5
votes
2answers
110 views
Any math approaches to state management of complex objects?
I usually use ASP.net web forms for GUI, maybe one of most "stateful" technologies. But it applies to any technology which has states. Sometimes forms are tricky and complex, with >30 elements and > 3 ...
5
votes
2answers
1k views
android:state_enabled missing/not working?
I do not have the property android:state_enabled for any of the controls. Typing it manually doesn't work either. I can only use the deprecated android:enabled.
I have the latest everything.
5
votes
2answers
619 views
WCF ChannelFactory State Property
What does it mean for a ChannelFactory to have a State property? I understand that a created channel can have connection based states. But am confused as to why the ChannelFactory also has such ...
5
votes
1answer
1k views
Multiple webRole instances at Azure and session state
I have webRole with some data stored in Session. The data is some tens of small variables (strings), and one-two big objects (some megabytes). I need to run this webRole in multiple instances. Since ...
5
votes
3answers
458 views
Can somebody walk me through this Haskell function (State monad related)?
tick :: State Int Int
tick = get >>= \n ->
put (n+1) >>= \y ->
return n
I'm confused as to how put (n+1) has any effect on the end result of this function at all. It ...
5
votes
2answers
934 views
How do I bind the enabled binding of a button to whether or not an NSArrayController has a selection?
I want to bind the enabled state of an NSButton to whether or not an NSArrayController has any selected items.
How do I do this?
5
votes
5answers
793 views
Bulletproof Sessions for IIS Web Farm
Good afternoon, all.
We're currently making the jump from one web server to two and in order to provide seamless failover to our users we need to do something about the session.
Currently, we're ...
5
votes
3answers
590 views
How can I avoid global state?
So, I was reading the Google testing blog, and it says that global state is bad and makes it hard to write tests. I believe it--my code is difficult to test right now. So how do I avoid global ...
4
votes
1answer
128 views
Creation/Handling of lists of Monad.State's?
I'm just in the process of learning haskell and I am sure that an elegant solution to the following problem exists.
Given a function f that returns a stateful computation
f :: (Num a) => a -> a ...