Desktop environment
- Gnome desktop
sudo apt-get install ubuntu-desktop gnome-panel gnome-settings-daemon metacity nautilus gnome-terminal
/*! | |
* Grunt | |
* $ npm install grunt-contrib-uglify grunt-autoprefixer grunt-contrib-cssmin grunt-contrib-imagemin grunt-contrib-sass grunt-contrib-watch grunt-contrib-concat grunt-contrib-clean grunt-contrib-jshint grunt-notify --save-dev | |
*/ | |
module.exports = function(grunt) { | |
grunt.initConfig({ | |
// Sass |
sudo fallocate -l 3G /swapfile && \
sudo chmod 600 /swapfile && sudo mkswap /swapfile && sudo swapon /swapfile && \
sudo sh -c 'echo /swapfile none swap sw 0 0 >> /etc/fstab' && \
sudo sh -c 'echo vm.swappiness=10 >> /etc/sysctl.conf' && \
sudo sh -c 'echo vm.vfs_cache_pressure = 50 >> /etc/sysctl.conf'
/* | |
Navicat SQL Server Data Transfer | |
Source Server : SQLSERVER | |
Source Server Version : 110000 | |
Source Host : (local)\SQLEXPRESS:1433 | |
Source Database : SinhVien | |
Source Schema : dbo | |
Target Server Type : SQL Server |
/** | |
* | |
* Bai Tap co caro | |
* | |
* @SinhVien Ngo Xuan Bach | |
* @MaSinhVien 1381310007 | |
*/ | |
import java.awt.*; | |
import java.awt.event.*; |
The notebook now have been moved to https://github.com/thanbaiks/epu-notebook.
Link đề bài: BCMARA.
Vì bài này rất cơ bản nhưng nhiều bạn chưa làm được, nên mình làm bài hướng dẫn này.
Bài này các bạn đọc dữ liệu vào và lưu vào mảng với đơn vị là giây, tức là đọc vào cả giờ phút giây sau đó đổi về giây để tiện lưu trữ và so sánh.
Sau đó sắp xếp tăng dần và in ra, có thể các bạn tự viết hàm sort hoặc sử dụng hàm sort (quick sort, nhanh hơn selection sort mà chúng ta hay dùng rất nhiều).
#include <bits/stdc++.h> | |
#define BachNX | |
#define _for(i,a,b) for (int i=(a),_b_=(b),_d_=(a<b?1:-1);i!=_b_;i+=_d_) | |
using namespace std; | |
typedef long long LL; | |
typedef unsigned long long ULL; | |
bool prime(int x) { | |
int j = sqrt(x); |