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
| 6E6D93CC-8E0C-B4C7-D34A-70B859956929 |
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
| for f in $(find . -not -iwholename '*.git*' -type f -exec file --mime-encoding {} \; | egrep -v "(utf-8|ascii|binary)" | awk '{print $1}' | tr -d ":"); do iconv -f iso-8859-1 -t utf-8 $f > $f.utf8 ; mv -v $f.utf8 $f; done |
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
| # find all non UTF-8 files | |
| FILES=$(find . -not -iwholename '*.git*' -not -iwholename '*.idea*' -type f -exec /usr/bin/file --mime-encoding --mime-type {} \; | grep -v utf-8 | grep text | awk '{print $1}' | tr ':' ' ') | |
| # convert from ISO-8859-1 to UTF-8 | |
| for f in $FILES; do iconv -f iso-8859-1 -t utf-8 $f > $f-utt8 ; mv -v $f-utt8 $f; done |
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
| ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAsxOivUM5qIVPbIsLII2/yjsOd+RAp297kofP46k4fwaMjo3o2HjsmDPS1VBKXnr/CpcPe2MXpT+Fhw9wfSgk08FyzNXuSaAIIWgE970638c8TymT2v8kUDrbPB5YwYLRNXqaXODtSafzlN0pWTm0GXkF0lgl42lUbTBcsvtvZOpswY+UuRgRbEh7EqxKvaWrDOhJpiuLHeA5UkXOIuHgUjyBy7HK9PxmtK75oLSvEFnUSNA6UksOw1OfrpLgEVjFBLhhQDJpk3M1Nnl3vDMaKEzAzDdynLmWxSaM/w+M4jCDPFgmYfIIV1tIZ4kGJEbeLkPWAQVcPpoQzim0w5G5VQ== Mateus@MATEUSCHAGAS |
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
| section = { | |
| "id" : "887yudb22ri1", | |
| "class" : "", | |
| "role" : "section", | |
| paragraphs : [ | |
| ] | |
| }; |
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
| def main(): | |
| brotherSet = [] | |
| options = { | |
| 1 : inserir, | |
| 2 : listar, | |
| 3 : procurar, | |
| 4 : deletar, | |
| 5 : editar | |
| } |
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
| /** | |
| * @license wysihtml5 v0.4.0pre | |
| * https://github.com/xing/wysihtml5 | |
| * | |
| * Author: Christopher Blum (https://github.com/tiff) | |
| * | |
| * Copyright (C) 2012 XING AG | |
| * Licensed under the MIT license (MIT) | |
| * | |
| */ |
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
| /** | |
| * @license wysihtml5 v0.5.0pre | |
| * https://github.com/xing/wysihtml5 | |
| * | |
| * Author: Christopher Blum (https://github.com/tiff) | |
| * | |
| * Copyright (C) 2012 XING AG | |
| * Licensed under the MIT license (MIT) | |
| * | |
| */ |
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
| /** | |
| * @license wysihtml5 v0.5.0pre | |
| * https://github.com/xing/wysihtml5 | |
| * | |
| * Author: Christopher Blum (https://github.com/tiff) | |
| * | |
| * Copyright (C) 2012 XING AG | |
| * Licensed under the MIT license (MIT) | |
| * | |
| */ |
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
| var wysihtml5 = wysihtml5 || {}; | |
| wysihtml5.assert = wysihtml5.assert || {}; | |
| /** | |
| * Compare html strings without stumbling upon browser misbehaviors | |
| * Uses and takes the same parameters as QUnit's equal method | |
| * | |
| * @example | |
| * wysihtml5.assert.htmlEqual( | |
| * removeAttributes('<p align="center">foo</p>'), |