874 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
53
views
How to enable echo in Terminal.readLine (Effect)?
I want to make a minimal interactive console utility using Effect.
Started from an empty Effect app:
npx create-effect-app@latest
... (interactive part)
cd effect-app
npm install
Then I copy-pasted ...
2
votes
1
answer
148
views
Angular effect calling method which sets other signal
In angular, if I have an effect which calls some method which further on sets some other signal, will that effect be bind to that "other signal" or just signals called directly inside the ...
0
votes
0
answers
48
views
is using computed to access the router out let view child make error?
i am trying to access router outlet using viewchild and then access the projected component and based on it access some values from it. when i used effect to do so it worked, but i thought using ...
1
vote
2
answers
503
views
Why is my Angular signal effect not firing?
The class below declares a signal and an update function for the signal:
export class ProductSidebarService {
public productSidebarSignal = signal<{
productSidebarData: ProductSidebarData;
}...
0
votes
3
answers
265
views
How to create a waterfall effect?
I need help to apply the water effect which is fading like the below image. In the image the white particles are fading to blue blurry effect. This is what I am trying to achieve.
I believe with fast ...
1
vote
1
answer
1k
views
Why is my Angular signal effect not working?
The signal is created in ProductSidenavService:
@Injectable({
providedIn: 'root'
})
export class ProductSidenavService {
public productSidenavSignal = signal<ProductSidenavModel>( new ...
0
votes
1
answer
394
views
I am confused with LauchedEffect and Coroutines or Threads in Kotlin. Are they run on top of the other?
In a Composable function every time a State variable is changed the function is run again top to bottom and all LaunchedEffect(Unit) are run again.
When I have a Coroutine inside the LaunchedEffect ...
0
votes
0
answers
50
views
Sliding door effect, move elements with horizontal scroll by css instead of intersection observer
I'm trying to move riv1 in one direction on scroll, for example left and riv2 in the opposite position on scroll to reveal the background but the code still doesn't work. I'm trying css like a ...
1
vote
4
answers
162
views
Making a terminal-slide-up effect in python
I'm working on a project where i need a transition effect when needed. I'm running this python project through 'cool-retro-term' a CRT terminal emulator.
I want to make it like the old-school CRT ...
0
votes
0
answers
209
views
hover button bubble effect and gradient
There is a layout with logic for the button. When you hover over the button, the text should move to the left and a line in the circle should appear. There is also a problem with applying a gradient ...
0
votes
2
answers
51
views
Issue with Tooltip Effect Not Appearing Over Button - Need Assistance
I'm facing an issue while trying to create a tooltip for the "Back-end" button on my web page. The tooltip effect isn't appearing over the button, and I'm having trouble figuring out why.
...
3
votes
1
answer
7k
views
I don't get the use case of angular signal effect function
What's the use case of effect function in angular signals?
It doesn't return anything and by default, you can't update other signals from the effect (I know you can disable this, but I assume it's not ...
0
votes
0
answers
67
views
Angular Effects Unit test: RxJs race operator
I am trying to write unit test for an ngRX effects in an angular project.
The effect uses switchMap to return a race operator.
The race operator either looks for a 3sec timer to complete or looks an ...
0
votes
1
answer
156
views
How to change the plot background color generated by plot(effect(...)) in grey with white grid in R?
My R codes:
model0_1 <- lm(average_count ~ green_text + brand_names, data = data)
eff <- effect("green_text", model0_1)
I tried to plot the main effect of green_text:
plot(eff,
x....
0
votes
0
answers
216
views
Angular v17 control flow for loop on select control throwing error with effect
control flow @for on select-option control is throwing ctx is not defined error when looping through an array and bind data to that array in an effect.
Same code worked fine with *ngFor
ERROR ...