- Clean pkg cache
- Remove unused packages (orphans)
- Clean cache in /home
- remove old config files
- Find and Remove
- duplicates
- empty files
- empty directories
- broken symlinks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Snake Tutorial Python | |
| import math | |
| import random | |
| import pygame | |
| import tkinter as tk | |
| from tkinter import messagebox | |
| class cube(object): | |
| rows = 20 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pygame | |
| import random | |
| pygame.init() | |
| w = 500 | |
| h = 500 | |
| screen_size = [w, h] | |
| screen = pygame.display.set_mode(screen_size) | |
| clock = pygame.time.Clock() | |
| GREEN = (0, 255, 0) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * RF_Tranceiver.c | |
| * | |
| * Created: 2012-08-10 15:24:35 | |
| * Author: Kalle | |
| * Atmega88 | |
| */ | |
| #include <avr/io.h> | |
| #include <stdio.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.android.lifecycle; | |
| import android.os.Bundle; | |
| import android.support.v7.app.AppCompatActivity; | |
| import android.util.Log; | |
| public class MainActivity extends AppCompatActivity { | |
| @Override | |
| protected void onCreate(Bundle savedInstanceState) { |