Rodan (ラドン Radon?) is a giant pteranodon kaiju created by Toho that first appeared in the 1956 Toho film, Rodan, and made his first appearance alongside Godzilla in the 1964 Godzilla film, Ghidorah, the Three-Headed Monster.
Python highlight
x = ('a', 1, False)
def to_camel_case(text):
#your code here
#return [i.strip('-' and '_') for i in text]
alto = 0
for i in text:
if i == '-' or '_':
alto = text.find('-' or '_') + 1
text[alto].upper()
HTML highlight
<script>
(function(document) {
var toggle = document.querySelector('.sidebar-toggle');
var sidebar = document.querySelector('#sidebar');
var checkbox = document.querySelector('#sidebar-checkbox');
document.addEventListener('click', function(e) {
var target = e.target;
if(!checkbox.checked ||
sidebar.contains(target) ||
(target === checkbox || target === toggle)) return;
checkbox.checked = false;
}, false);
})(document);
</script>
Javascript highlight
function sayHello(){
return 'hi!';
}
CSS highlight
/* Style and "hide" the sidebar */
.sidebar {
position: fixed;
top: 0;
bottom: 0;
left: -14rem;
width: 14rem;
visibility: hidden;
overflow-y: auto;
font-family: "PT Sans", Helvetica, Arial, sans-serif;
font-size: .875rem; /* 15px */
color: rgba(255,255,255,.6);
background-color: #202020;
-webkit-transition: all .3s ease-in-out;
transition: all .3s ease-in-out;
}
@media (min-width: 30em) {
.sidebar {
font-size: .75rem; /* 14px */
}
}
- Combinations
Expressions formed by delimiting a list of expressions within parentheses in order to denote procedure application;
(+ 137 349)
486
(- 1000 334)
666
(* 5 99)
495
(+ (* 3
(+ (* 2 4)
(+ 3 5)))
(+ (- 10 7)
6))