2020-02-01から1ヶ月間の記事一覧

base64 to blobURL

const raw = window.atob(base64); const rawLength = raw.length; const blobArray = new Uint8Array(new ArrayBuffer(rawLength)); for (let i = 0; i < rawLength; i++) { blobArray[i] = raw.charCodeAt(i); } const blob = new Blob([blobArray], {type…

Cannot resolve symbol '***' in POM.xml

はじめに POM.xmlのErrorの解決方法のmemo IntelliJ IDEA tree ├── pom.xml ├── src │ ├── main │ │ ├── filters │ │ │ └── dev.properties POM.xml <project ...> 略 <profiles> <profile> <id>dev</id> <properties> <foo>src/main/filters/dev.properties</foo> </properties> </profile> </profiles> <build> <filters> <filter>${f…</filter></filters></build></project>