Checking Battery State [OK]
which seems to affect ATI users mostly which meant lots of digging for Nvidia.
reset
no, it does not reboot the computer but instead resets the graphic console. Very handy when you have just cat
a binary.
sudo dpkg-reconfigure xserver-xorg
which wanted dpkg --configure -a
dpkg-reconfigure xserver-xorg
dpkg-reconfigure gdm
reset
and start gdm
and everything worked again.
error: the symbol 'grub_getcharwidth" not found.
fixmbr
filesystem failed
:setl noai nocin nosi inde=
private SharedPreferences UserPreferences;
/* Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
if (UserPreferences==null)
UserPreferences = getSharedPreferences("[[YOUR PACKAGE NAME]]",MODE_PRIVATE );
initialiseview();
}
/* onPause, onStop and onDestroy all need to save user preferences */
protected void onPause() {
super.onPause();
SaveUserPreferences();
}
protected void onStop() {
super.onStop();
SaveUserPreferences();
}
protected void onDestroy() {
super.onDestroy();
SaveUserPreferences();
}
/* save user preferences and the arrange new layout */
public void onConfigurationChanged(Configuration newConfig) {
SaveUserPreferences();
initialiseview();
super.onConfigurationChanged(newConfig);
}
/* save preferences, which in this case is store to INTs */
private void SaveUserPreferences() {
SharedPreferences.Editor ed = UserPreferences.edit();
ed.putInt("LayoutMode", LayoutMode);
ed.putInt("ShowCalculations", ShowCalculations);
ed.commit();
}
/* get preferences, defaults provided if they do not exist */
private void RecoverUserPreferences() {
LayoutMode = UserPreferences.getInt("LayoutMode", 2);
ShowCalculations = UserPreferences.getInt("ShowCalculations", 0);
}
email
root
flog archives
In fact I'm not responsible for anything ever, so there!
Disclaimer:
This page is by me for me, if you are not me then please be aware of the following
I am not responsible for anything that works or does not work including files and pages made available at www.jumpstation.co.uk
I am also not responsible for any information(or what you or others do with it) available at www.jumpstation.co.uk