- Go to Session and Startup gui
- Click on Application Autostart tab
- Add a new item:
name: System beep
,description: Disable system beep
,command: xset b off
- Close the Session and Startup control panel after adding the ^ item
- Execute
xset b off
in the terminal
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
select | |
appearance none | |
display block | |
width 100% | |
padding 0.5em 2em 0.5em 0.5em | |
border none | |
outline none | |
background-color transparent | |
&:focus, |
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
select(id='mealType' name='mealType') | |
option(value='breakfast') Breakfast | |
option(value='lunch') Lunch | |
option(value='dinner') Dinner | |
option(value='snack') Snack |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
@function rem($times_two) { | |
@return 2*$times_two | |
}; | |
$container: 960px; |
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
// Usages: | |
// div { | |
// @include media(800px) { | |
// ... | |
// } | |
// } | |
// | |
// Or with a customized breakpoint: | |
// $tall: break(min-height 600px); | |
// div { |
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
<!doctype html> | |
<html class="no-js" lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Sticky Footers</title> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
</head> |
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
class Node { | |
float x, y, r; | |
Node( float temp_x, float temp_y, float temp_r ) { | |
x = temp_x; | |
y = temp_y; | |
r = temp_r; | |
} | |
void display() { |
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
Ball[] balls = new Ball[1]; | |
void setup() { | |
size(200, 200); | |
balls[0] = new Ball(50, 100, 16, 0.1); | |
} | |
void draw() { | |
background(0); | |
for ( int i = 0; i < balls.length; i++ ) { |
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
<div id="photos" /> |
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
<div class="image-feed"> | |
<div class="loading"> | |
<p>Loading...</p> | |
</div> | |
</div> |