I wired up a z 80 using telephone wire and put a jump to 0000 0000 0000 0000 [closed] - z80

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 12 years ago.
Improve this question
I put 1100 0011 0000 0000 0000 0000 in the 2764 eprom --- this is supposed to test the z80 -- I have a 555 timer running at 500 khz. Can this small program work with the z80 ? I looked at the address pins on a m465 oscilloscope. The address shows highs up to 0100 0000. I think it should only count to 0000 0000 0000 0011. Can the z80 be tested? The Santa Clara Valley also made the lm1871 radio control chip that could not show a high or a low without completing the entire rc loop.

Related

removing first 8 bytes using dd is very slow [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I'm trying to remeove the first 8 bytes from binary file using the command:
dd if=new.pdf of=new2.pdf ibs=1 skip=8
but it's taking too long.
Is there a way to remove the first 8 bytes, in a faster way ?
ibs=1 is requesting dd to read one single byte at a time. It's going to be slow - for each byte, there is a context switch to the kernel.
I would:
tail -c+9 new.pdf > new2.pdf
I think you could use dd, choose the best block size for your specific environment, and... skip the bytes:
dd if=new.pdf of=new2.pdf bs=4M iflag=skip_bytes skip=8

Note 5 No SIM Card, No WI-FI and invalid imei after flashing LineageOS 16 and HyperKernel [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
Thanks for care of my problem.
i have Samsung glaxy note 5(SM-N920C) and im flashed android 9 custom rom for s6+ and hyperkernel. after flashing them, my phone's imei is gone ,i cant use wifi and phone is not dedectimg SIM.
i was try installing random imei but it didnt worked.
what should i do? for fix this problem.
im solved it with flashing android 9 kernel for sm-n920c

how to extract some text after a specific word in Excel [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
how can I extract some text after a specific word in Excel
"1 GB RAM 2 MP Front Camera 12.7 cm (5) IPS Display 2000 mAh Battery Android 4.2 Jellybean Expandable Up To 32 GB 1.5 GHz 12 MP Rear Camera with Flash 4 GB Internal Memory"
"10.16 cm (4) WVGA IPS Display 1.3GHz Quad Core Processor 2 GB RAM and 8 GB ROM 5 MP Rear and VGA Front Dual Sim (3G+2G) GSM OS Version : Android Kitkat v4.4 FM Radio : YES Wi-Fi : YES Battery 1500 mAH 1 Year Brand Warranty"
In above two cell I want to extract
1 GB RAM from first cell
2 GB RAM from second cell
Try this formula, if "# GB RAM" is consistent for all data.
=MID(A1,FIND("GB RAM",A1)-2,8)

What is the number permission for o+t in linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
What is the number permission for o+t
It has to be close to 1755 but that's not right.
Using chmod o+t mydir. I get drwxrwsr-t
Using chmod 1755 mydir. I get d-wx-ws--t
I want to know what the number permissions are for o+t
It is simple to find that out:
touch test
chmod 0000 test
chmod o+t test
stat test
... gives you: 1000 (octal)

What is the maximum read length for 125khz RFID card? [closed]

Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this question
I have a project that is using a 125Khz RFID cards,dots, stickers.
I need a card reader that has a read length of AT LEAST 4-7 metres.
The reader will collect all tags within that range and check them against an inventory.
I have not been able to find any RFID readers that have this range, and I am not sure if it is at all technically possible.
Does anyone know if this is technically possible with a 125khz RFID?
According to wikipedia http://en.wikipedia.org/wiki/Radio-frequency_identification the maximum range for 120–150 kHz (LF) is 10cm.

Resources