protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests()
.antMatchers("/resources/**").permitAll()
.anyRequest().authenticated()
.and()
.formLogin()
.loginPage("/login")
.permitAll();
Needs subs="none"
attribute
fn main() {
println!("Hello marked World!");
}
Highlights are using Asciidoctor syntax not reveal.js.
Ex: 4..8,11
instead of 4-8,11
.
import React, { useState } from 'react';
function Example() {
const [count, setCount] = useState(0);
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
}
Highlights are using Asciidoctor syntax not reveal.js.
Ex: 1|2..3|4,6..10
instead of 1|2-3|4,6-10
.
import React, { useState } from 'react';
function Example() {
const [count, setCount] = useState(0);
return (
<div>
<p>You clicked {count} times</p>
<button onClick={() => setCount(count + 1)}>
Click me
</button>
</div>
);
}
main proc near
var_10 = dword ptr -10h
push ebp (1)
mov ebp, esp
and esp, 0FFFFFFF0h
sub esp, 10h
mov eax, offset aHelloWorld (2)
mov [esp+10h+var_10], eax
call _printf
mov eax, 0 (3)
leave (4)
retn
main endp
-
Function prologue
-
Preparing arguments and calling
printf
-
Clean-up registers
-
Function epilogue