Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

24
votes
6answers
965 views

Is Perl's flip-flop operator bugged? It has global state, how can I reset it?

I'm dismayed. OK, so this was probably the most fun Perl bug I've ever found. Even today I'm learning new stuff about Perl. Essentially, the flip-flop operator .. which returns false until the ...
10
votes
2answers
917 views

When would a Ruby flip-flop be useful?

I think I understand how a flip-flop works thanks to a tutorial, but the example there is contrived just for teaching. Can anyone give an example of how you have actually used or would use a ...
5
votes
3answers
243 views

Is there a functional programming concept equivalent to the flip-flop operator in Perl or Ruby?

Ruby (and Perl) has a concept of the flip flop: file = File.open("ordinal") while file.gets print if ($_ =~ /third/) .. ($_ =~ /fifth/) end which given a list of ordinals, such as first second ...
3
votes
1answer
114 views

Calling 'scalar' on the results of the range operator (..) in Perl

So, I believe this has something to do with the difference between arrays and lists, but I don't understand what's going on here. Can anyone explain how and why Perl treats an expression like (1..4) ...
2
votes
1answer
71 views

Perl Flip-flop operator - Is it possible to treat the END of first match as START of next match?

Need some more help on flip-flop operator Below is my sample data: LS SPID ASP SPID 3-59 MGW05 SLC ACL PARMG ST SDL ...
1
vote
3answers
78 views

Perl: Using the flip flop function and extracting data from within the block read

I have an array called @mytitles which contains a lot of titles such as, say, title1, title2 and so on. I have a file called "Superdataset" which has information pertaining to each title. However, the ...
1
vote
3answers
107 views

Undefined output of Ring Counter Test waveform

I have modeled 4 bit Ring Counter using D Flip Flop. The D flip flop is in separate file, included in my workspace. The D flip flop works correctly (gives correct output waveform). This is the code ...
1
vote
3answers
55 views

Error : Identifier 'q' is not readable in architecture of T Flip Flop

I am trying to model a T Flip Flop using VHDL. library ieee; use ieee.std_logic_1164.all; entity tff is port ( clk: std_logic; t: in bit; q: out bit; qbar: out ...
1
vote
0answers
161 views

minimal number of d flip-flops required for first seven Fibonacci numbers

I encountered a problem while preparing for a test. What is the minimal number of d flip-flops required (along) with combinational logic to design a counter circuit that outputs the first seven ...
1
vote
3answers
176 views

Can using the ruby flip-flop as a filter be made less kludgy?

In order to get part of text, I'm using a true if kludge in front of a flip-flop: desired_portion_lines = text.each_line.find_all do |line| true if line =~ /start_regex/ .. line =~ /finish_regex/ ...
1
vote
2answers
222 views

SR Flip Flop and D Flip Flop

I know this isn't really a programming question, but it is definitely computer related and someone might know this. How do you construct a SR flip-flop with a D flip-flop and other logic gates? I ...
0
votes
0answers
21 views

Need Problems exercises about topic:'Flip-flop,registers,latches and counter'

Hey guys im searching problems about all kinds of Flip-flop,counter,registers and Latches. i have a exam tomorrow. and i couldnt find any problems about this topics. if you know any ,i appreciate ...
0
votes
1answer
59 views

Simulate Flip-Flop D ISim 12.3

How can I simulate this vhdl code on ISim 12.3? I know it works because I downloaded to the FPGA but I cannot see a good simulation. Thanks in advance and sorry if it's too basic but I'm very new to ...
0
votes
2answers
90 views

Minimal number of D flip-flops

I have encountered the following question and can't be sure on the answer. Do you have any suggestions, any help would be much appreciated. The Fibonacci sequence F(n) is defined by F(1)=1, F(2)=1, ...
0
votes
0answers
99 views

rtl jquery multiselect

This question is rather back to front I want to DISABLE the default rtl layout of the jquery ui extension multiselect plugin and make the layout "ltr" if you like i.e. that the left panel of the two ...
0
votes
1answer
196 views

flip-flop-operator/readline-counter question

Reading this http://stackoverflow.com/questions/4069243/perl-extract-rows-from-1-to-n-windows I didn't understand the flip-flop-operator/readline-counter part. perl -nE 'say $c if $c=1..3' my_file ...
-2
votes
4answers
90 views

In Perl can i apply 'grep' command on the data i captured using flip-flop operator directly?

I need to find the 'number' of occurrences of particular words (C7STH, C7ST2C) that come in the output of a command. The command starts and ends with a 'fixed' text - START & END like below. This ...