Questions related to the usage of the right and/or left shift key on the keyboard.

learn more… | top users | synonyms

-5
votes
2answers
70 views

Shifting arrays without using loops

I have been asked to equate two strings using recursion. Absolutely no loops are allowed. My idea is to check element by element, shrinking the string over time, but I don't know how to implement it. ...
2
votes
3answers
76 views

when a shifting operation is applied on any number .how to get back the original number

#include<iostream> #include<stdio.h> using namespace std; int main() { int n=99; int shift=n>>2; cout<<shift; shift=shift<<2; ...
3
votes
1answer
30 views

Time series shift into future with R

I'm trying to shift a time series (zoo object) 7 days (trading week) ahead into future. library(quantmod) getSymbols(c("AAPL"), from="2013-01-01", return.class="zoo") aapl <- Ad(AAPL) tail(aapl) ...
0
votes
1answer
21 views

as3 ARRAY SHIFT - the End of array now what?

I am having the alphabet go on and off screen. I am using the array SHIFT to do this to go to the next letter. When I get to the last element of the array, the letter Z, how can I go to the beginning? ...
-5
votes
0answers
53 views

Java- Circular right shift [closed]

I have to implement circular shift in a binary file. How can I do it as binary file contains a large no of '0' & '1'.( hundres of digits in binary file) ? Have to implement in Java language.
0
votes
1answer
34 views

Autohotkey: Can't figure out why this is pushing Shift along with the rest of the code

I am trying to make a macro that will repeat hitting O and M as long as i have my side mouse button held down, but all of a sudden now it is also hitting shift. Any idea why or how to fix it? ...
0
votes
1answer
46 views

AutoHotKey: Can I asign shift + number the way so it work like usual

A few days ago my Coca Cola bottle decided to accidently hit my keyboard. Now after I dried it off it's working all fine. However, there is a strange problem. The SHIFT key is working perfectly as ...
0
votes
3answers
66 views

Delete cells without shifting them up

I have vba macro to delete a selection of cells. Its shifting the cells up automatically after deleting them. I don't want the cells to be shifted up, as I have a chart below the cells and everything ...
-1
votes
3answers
117 views

Shift elements in a linked list in java

I have to shift all of the tokens left by one position in a Linked List. Here's my code for the method: private LLNode<E> head; // the first node in the list private LLNode<E> tail; ...
1
vote
1answer
67 views

Shifting 3D numpy array

I would like to be able to shift a 3D numpy array in either direction along the height axis. If a positive shift of a say 3 is given, all values in the array shift up and 3 new slices of zeros appear ...
0
votes
2answers
77 views

Shifting elements in an array?

I would like to make something where the strings will move up in an orderly fashion. For example: Iteration 1: Hello There I am Asking a question To you Iteration 2: I am Asking a question To ...
0
votes
0answers
50 views

Shift-reduce conflict

I got this simple grammar: Productions program = stmts; stmts = {stmts1} stmts stmt | {stmts2} stmt; stmt = exprs; exprs = {exprs1} exprs expr | {exprs2} expr; ...
1
vote
1answer
42 views

Shift parts of multiple lines to new lines in vim simultaneously

I have a block of code, e.g. ... elseif a:flag ==# "replace" return "fg" elseif a:flag ==# "visual" return "#b58900" elseif a:flag ==# "insert" return "#268bd2" elseif a:flag ...
1
vote
2answers
96 views

how to do circular shift in numpy

I have a numpy array, for example a = np.arange(10) how can I move the first n elements to the end of the array? I found this roll function but it seems like it only does the opposite, which ...
3
votes
2answers
185 views

.NET C# - Split staff into weekly shifts (4 weeks) unique per weeks

I have been struggeling with a requirement for some days now, and i think i am making it harder than it is. I want to make some kind of fluid rota/shift system. This should be a wizard / randomizer ...
0
votes
0answers
18 views

Pressing Shift triggers “Mouse Scroll” + “R”

I need help writing a script that when the script is running in the background, everytime "Shift" is pressed my mouse scrolls up or down (whichever is easier, using the mousewheel) and presses "R" ...
0
votes
1answer
48 views

shift of rows among matrices matlab

I am doing a project on Particle Swarm optimization, coding in Matlab. I need to replace the rows of matrix A by some of the rows from matrix B and remove those rows from matrix B as well. How can I ...
0
votes
2answers
102 views

VHDL shift operators?

I'm still trying to get used to some of the quirks of VHDL and I'm having a bit of an issue. First off, I understand that shift operators like rol, ror, ssl, srl, etc. are not synthesizeable. The ...
0
votes
2answers
101 views

Shift left/right adding zeroes/ones and dropping first bits

I've got to program a function that receives a binary number like 10001, and a decimal number that indicates how many shifts I should perform. The problem is that if I use the C++ operator ...
0
votes
3answers
108 views

Unable to fix shift/reduce conflicts in Bison grammar

I have the following Bison grammar: %error-verbose %{ #include "node.h" NBlock *programBlock; #define YYDEBUG 1 extern int yylex(); void yyerror(const char *s) { printf("Error: %s\n", s); } %} ...
0
votes
3answers
633 views

Python: Caesar cipher encryption

Hello everyone I have a question. Why doesn't the following code dont produce any output or errors? This is a code that encrypts and decrypts user codes alpha = ['a','b','c','d','e','f', ...
1
vote
1answer
162 views

Shifting 2D array Verilog

I dont know what doesnt work on the following code, but it wont synthesize: reg [7:0] FIFO [0:8]; always@(posedge clk) begin if(wr & !rd & !full) begin FIFO[0:8] <= {data_in, ...
2
votes
1answer
78 views

ctypes reimplementation of rshift for c_ulong

i am accessing a C library via ctypes and i am stuck with the following problem: I am generating a "wrapper" (ctypes commands to access the library with ctypes) using ctypeslib. The C library ...
-1
votes
1answer
54 views

function not functioning properly

i've gotta do a function that is supposed to decrypt a cipher - so i'll show ya'all the program so far with all the other functions and highlight the one that i'm stuck in - the others work well so ...
-1
votes
3answers
138 views

how to build a cipher…help - stuck [duplicate]

I'm trying to learn cryptopgraphy, and I choose to code in Python. I need to set up multiple sets to print out ciphers that will come about when I enter a value. Notice, in the following test ...
1
vote
1answer
203 views

ImportError: cannot import name ceil_shift [closed]

I'm receiving this error today, before was working perfectly. ImportError: cannot import name ceil_shift All i have is: #!/usr/bin/python -W ignore::UserWarning import urllib; import urllib2; ...
0
votes
1answer
27 views

Syntax error due to a possible conflict [closed]

Never mind, I now managed to solve all the conflicts (for now), but am getting syntax errors instead, unfortunately. It doesn't seem to be accepting an identifier correctly; to be specific, the ...
0
votes
0answers
137 views

Android camera - captured picture shifts

We have been constructing a custom camera activity for our Android application and have been tackling with the following problem: In summary, the area of the picture taken shifts up and thus is ...
1
vote
1answer
37 views

Possible 4 bit combinations using successive shifts

I'm trying to figure out the number of possible combinations using 4 bits and successive shifts. I have an array of 4 light sensors reading a paper strip with white and black marks. I want to figure ...
1
vote
6answers
205 views

Shifting a String in C#

static void Main(string[] args) { string s = "ABCDEFGH"; string newS = ShiftString(s); Console.WriteLine(newS); } public static string ShiftString(string t) { char[] c = ...
0
votes
0answers
162 views

Logic to find night, split and rotating shift attendance information from access log

I hope this is not a repeating question. I searched here for answers to my headache but didn't get any solution. Basically i want to calculate Night Shift, Split shift and rotating shift. Like to know ...
0
votes
1answer
1k views

Excel Macro Find Text value Cut and Paste then shift cells up

I have a nightmare task to migrate from one accounting package to another. I have 9340 rows in columns A,B and G which needs to be ordered in a certain way before it can be imported by new system. ...
0
votes
1answer
40 views

google MarkerImage shifting not working

I have markers which use MarkerImage on my map. The problem is I'm trying to shift the marker image so the icon centre is on the exact coordinate position. I doesn't work. My code is: var image = ...
0
votes
1answer
81 views

The binary format for different data types

What is the exact binary format of a unsigned long long type (at least in visual studio). I am doing some bit-wise operation with aliasing pointers, I set the bit through operations on unsigned char ...
0
votes
0answers
37 views

Migrating Glassfish v3 to Tomcat7

Let me start by saying I am quite new to Java EE. I am trying to make a Java EE program to work on Tomcat 7 as opposed to GlassFish v3 it was initially run on. The program runs fine on GlassFish in ...
0
votes
1answer
192 views

Java Shifting Array Elements Down

I am currently struggling writing a loop that starts at a certain point in an Array and pushes it down to the right one spot to that a new value can be placed where the existing one is, an insertion ...
4
votes
1answer
189 views

Python: KeyError 'shift'

I am new to Python and try to modify a pair trading script that I found here: https://github.com/quantopian/zipline/blob/master/zipline/examples/pairtrade.py The original script is designed to ...
2
votes
2answers
114 views

C++ Bitwise Shift using a File Pointer

I'm reading through someone else's code and can't quite understand how it's working. Here's the three lines of code. I want to know what the value of w3 is: int w1 = fgetc(fp) & 0xFF; int w2 = ...
0
votes
3answers
63 views

performing bit-wise AND with int and shifting

This quesstion is based on: Shift with 64 bit int The origin of the question is - I define an enum ,which presents different masks. And need to make & of the variable with enum (mask) after that ...
1
vote
5answers
121 views

Shift with 64 bit int

I have a __int64 variable x = 0x8000000000000000. I try to shift it right by byte : x >> 4 I`ve thought that the result should be 0x0800000000000000, but unfortunately I get ...
3
votes
3answers
94 views

Inserting characters at specified position

I want to make a program that when the user enters AB1245 and have the program change it to AB 12345 (an added space between 2nd and 3rd character) char Bilnr[9]; for (i = 8; i < 3; i--) { ...
1
vote
2answers
90 views

Using Array#shift with square brackets (Ruby)

I'm reading through Why's Poignant Guide to Ruby and I came upon this code example wherein he adds a class variable and an instance method to the String class. The idea is that, given a string of an ...
0
votes
1answer
325 views

ARM-Assembly: Arithmetic Shift / Logical Shift

I'm a bit stuck finding out in which way those 2 operations are different. So I read that Arithmetic shift is basically the same as Logical with the only difference, that it somehow keeps the highest ...
0
votes
1answer
133 views

Binary Phase Shift Keying in Objective-C or C / C++

I am making an iphone app that will transmit data via sound. It takes a binary string and plays a tone for each 1 and silence for each 0. (String example) NSString* asciiString = @"www.google.com"; ...
3
votes
1answer
51 views

theEvent charactersIgnoringModifiers - Get characters without modifiers

Im trying to implement a keyboard class in my game that has two modes. The game mode takes input that uses lowercase, unmodified keys (unmodified meaning if I type a '0' with the shift it still ...
0
votes
1answer
65 views

Shift File Cursor Two Lines In C

i want to shift the cursor two lines. What i mean is i want to ignore first two lines and get the third line of a file. Here is my code: void dosyaImlecOtele(int satir,FILE *dosya){ int ...
-1
votes
1answer
91 views

Checkboxes in JQuery File Upload [closed]

How can I shift-select multiple checkboxes like g-mail by holding shift key. I would like also to add any CSS styles for "checked" items. For example table style font size ... if item is checked.
0
votes
3answers
150 views

how to shift strings from one array to another in java?

I have two arrays, one called words, the other called data. I have trouble shifting the strings from data into words. so far I have public String[] shiftRightX(String[] words, String[] data) ...
15
votes
7answers
347 views

in perl, is it bad practice to call multiple subroutines with default arguments?

I am learning perl and understand that it is a common and accepted practice to unpack subroutine arguments using shift. I also understand that it is common and acceptable practice to omit function ...
0
votes
1answer
410 views

VHDL - Shifting std_logic_vector by 8 bits

Now that I have managed to shift my text while writing, I want to implement another feature, scrolling the text 1 digit per second. So for example I will will write "STACK" from keyboard, and then ...

1 2 3 4 5 6