A nice menu effect that when clicked will pop items around and when clicked will animate the button to circle around and then change the background color to the one selected.
A Pen by Willmer Barahona on CodePen.
| System: Host: alejo-Lenovo-Z40-75 Kernel: 4.4.0-59-generic x86_64 (64 bit gcc: 5.4.0) | |
| Desktop: Unity 7.4.0 (Gtk 3.18.9-1ubuntu3.1) dm: lightdm Distro: Ubuntu 16.04 xenial | |
| Machine: System: LENOVO (portable) product: 80DW v: Lenovo Z40-75 Chassis: type: 10 v: Lenovo Z40-75 | |
| Mobo: LENOVO model: Lancer 4B3 v: 31900059WIN | |
| Bios: LENOVO v: A4CN34WW (V 2.03) date: 12/16/2014 | |
| CPU: Quad core AMD A10-7300 Radeon R6 10 Compute Cores 4C+6G (-MCP-) cache: 8192 KB | |
| flags: (lm nx sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3 svm) bmips: 15170 | |
| clock speeds: min/max: 1100/1900 MHz 1: 1500 MHz 2: 1100 MHz 3: 1200 MHz 4: 1200 MHz | |
| Graphics: Card-1: Advanced Micro Devices [AMD/ATI] Kaveri [Radeon R6 Graphics] | |
| bus-ID: 00:01.0 chip-ID: 1002:130a |
| function convertMS( milliseconds ) { | |
| var day, hour, minute, seconds; | |
| seconds = Math.floor(milliseconds / 1000); | |
| minute = Math.floor(seconds / 60); | |
| seconds = seconds % 60; | |
| hour = Math.floor(minute / 60); | |
| minute = minute % 60; | |
| day = Math.floor(hour / 24); | |
| hour = hour % 24; | |
| return { |
| <!doctype html> | |
| <html> | |
| <head> | |
| <!-- Based on http://codepen.io/lbebber/pen/ypgql --> | |
| <link href="http://necolas.github.io/normalize.css/3.0.2/normalize.css" rel='stylesheet'/> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script> | |
| <style> | |
| /* Just colors and font sizes */ | |
| * { | |
| font-family: sans-serif; |
This Grub Init Tune will make your computer sound like a Super Mushroom every time you turn it on! This only works for the Grub bootloader - this generally means you need to have Linux (or other Grub-based OS) installed.
Here's the code, which goes in your /etc/default/grub file:
GRUB_INIT_TUNE="1750 523 1 392 1 523 1 659 1 784 1 1047 1 784 1 415 1 523 1 622 1 831 1 622 1 831 1 1046 1 1244 1 1661 1 1244 1 466 1 587 1 698 1 932 1 1195 1 1397 1 1865 1 1397 1"
Other people's projects:
My projects (tutorials are on my blog at http://maxoffsky.com):
| # logout and login using Gnome Classic (no effects) | |
| sudo apt-get install gnome-session-fallback | |
| # show scrollbar in windows | |
| gsettings set com.canonical.desktop.interface scrollbar-mode normal | |
| # change font of windows titlebar | |
| gsettings set org.gnome.desktop.wm.preferences titlebar-font 'Ubuntu 10' | |
| # show all applications in gnome-session-properties | |
| cd /etc/xdg/autostart/ |
| ############################################# | |
| # Push de la rama actual | |
| git push origin $rama_actual | |
| ############################################# | |
| # Volver a un commit anterior, descartando los cambios | |
| git reset --HARD $SHA1 | |
| ############################################# | |
| # Ver y descargar Ramas remotas |