2716
Progress Journals & Experimental Routines / Re: Dreyth's New Journal
« on: May 08, 2014, 09:18:43 am »;alskdjf
I see the pattern here. You start with your fingers on [A] and [;] and do : type right - type left , move both fingers one key inside, 4 iterations.
Pseudo:
Code: [Select]
left_finger_pos = [A]-key
right_finger_pos = [;]-key
for( i = 0 ; i < 4 ; i++ ){
pressKeyAtPos( right_finger_pos);
pressKeyAtPos( left_finger_pos);
moveFingerPosOnePlaceToTheRight( &left_finger_pos );
moveFingerPosOnePlaceToTheLeft( &right_finger_pos );
}


