Skip to content

Instantly share code, notes, and snippets.

View mufengjun260's full-sized avatar

Mu Fengjun mufengjun260

  • University of Electronic Science and Technology of China
  • Chengdu
View GitHub Profile
tl;dr
use the package manager install (.deb or .rpm files, not .run file)
remove stuff using
sudo apt-get --purge remove 'cuda*'
sudo apt-get --purge -y remove 'nvidia*'
sudo apt-get --purge -y remove 'libnvidia*'
using
package ca.uwo.csd.cs2212.USERNAME;
public class BankAccount {
private double balance;
public BankAccount(double balance) {
this.balance = balance;
}