- open browser - point it to https://skatgame.net/mburo/courses/350 - go to Course Material (c350 bar350z) - visit lab-1 to see this page - also visit https://skatgame.net/mburo/courses/c350/material/labmachines to see which lab computer is assigned to you
#include <stdio.h> int main() { printf("hello world\n"); return 0; }
visit this page
Edit->Preferences->Colors
Settings->Sessions And Startup->Application Autostart
Add this command: setxkbmap -option "ctrl:nocaps"
[Prior=Page Up, Next=Page Down (used to jump to next error location in our emacs customization)]
With the mouse copy and paste the following text to file ~/.Xmodmap :
! windows key is button 2 keycode 133 = Pointer_Button2 Pointer_Drag2 ! Hard-code the keypad to numeric values as if numlock is always on ! since I never use it for anything else. ! 79= 7 on numeric keyboard keycode 79=Prior ! 83= 4 on numeric keyboard [mapped to next-error in emacs] keycode 83=Next ! 87= 1 on numeric keyboard keycode 87=End
Create ~/scripts/xmodmap.sh and make it executable:
#!/bin/bash sleep 2 /usr/bin/xmodmap ~/.Xmodmap
Add this autostart command: /cshome/...yourid.../scripts/xmodmap.sh