View claimFighissimo.phtml
This file contains 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
<p class="isArrivedAndIsBeautifull" style="font-size: 2em;color: #333;text-align: center;">È arrivata... ed è bellissima!</p> |
View base
This file contains 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
root = true | |
[*] | |
end_of_line = lf | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true | |
indent_style = space | |
indent_size = 2 |
View css-patterns.md
- container
- text ellipsis
- clearfix
- label
- breadcrumb
- tag
- link
- button
- sequence
View base
This file contains 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
.= .- := =:= | |
== != === !== =/= | |
<<- <-- <- <-> -> --> ->> | |
<=< <<= <== <=> => ==> =>> >=> | |
>>= >>- >- -< -<< =<< | |
<~~ <~ ~~~ ~~ ~> ~~> | |
<<< << <= <> >= >> >>> | |
<| <|> |> |
View config.md
Base configuration
Global for me: add them on ~/.gitconfig
[[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[init]
View useScript.js
This file contains 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
import React from 'react' | |
let cache = [] | |
const isCached = src => cache.includes(src) | |
export const useScript = src => { | |
const [state, setState] = React.useState({ | |
isLoaded: isCached(src), | |
hasError: false, | |
}) |
View common.ts
This file contains 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
export type Nully = null | undefined | |
export type Falsy = false | 0 | '' | Nully |