[okcashbag -게임] 퍼즐 오프 Z

이미지
  퍼즐 오프 Z 시간 때우기는 괜찮았음. 지위센터 22는 포기 하는게 좋을 것 같음. 100,000짜리 구글기프트 카드 93000원에 사서  8,300원쓰고 27,844원 보상 받음  27,844-8,300*0.93=20,125원....

[okcashbag -게임] 에보니 - 왕의 귀환

이미지
 에보니 - 왕의 귀환 본전 치기 하고 때려 쳤음. 게임도 별루음 100,000짜리 구글기프트 카드 93000원에 사서  21,000쓰고 21,294원 보상 받음  21,294-21,000*0.93=1764원....

구글 블로거 도메인 설정

이미지
구글 블로거 도메인 설정하기 1. 블로거 설정> 맞춤 도메인 선택 2. 자신의 도메인 입력 후 저장을 하면 아래와 같이 나오면  이름: www, 대상: ghs.google.com 및 이름: aaaabbbbccc, 대상: gv-234234zrbkmn55.dv.googlehosted.com 정보를 복사 해둠. 3. 도메인 등록 정보에서  CNAME 값에 해당 정보를 입력  4. 도메인 리디렉션 및 https 설정       아래 그림과 같이 설정 하면 되는데 on/off시 시간이 다소 소요 된다.

Google Prettify 활용 및 가이드

Prettify 적용 방법 :  /2022/12/blog-post.html 스킨 default / desert / sunburst / sons-of-obsidian / doxy 관련 링크 :  https://raw.githack.com/google/code-prettify/master/styles/index.html 사용 예제 <script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js?skin=desert"> 기본 지원 언어 및 확장 지원 언어 C, C++, C#, PHP, Ruby, Java, Python, Bash, SQL, HTML, XML, CSS, Javascript, Makefiles, Rust Apollo; Basic; Clojure; CSS; Dart; Erlang; Go; Haskell; Lasso; Lisp, Scheme; LLVM; Logtalk; Lua; MATLAB; MLs: F#, Ocaml,SML; Mumps; Nemerle; Pascal; Protocol buffers; R, S; RD; Rust; Scala; SQL; Swift; TCL; LaTeX; Visual Basic; VHDL; Wiki; XQ; YAML <pre class="prettyprint lang-html linenums"> The lang-* class specifies the language file extensions. File extensions supported by default include: "bsh", "c", "cc", "cpp", "cs", "csh", "cyc", "cv", "htm", "ht...

구글 블로거 코드 하이라이트 적용하는 방법

이미지
  code-prettify  살펴보기:  https://github.com/google/code-prettify 설정하기 테마>html 편집 Ctrl + F   를 눌러서   /head   를 타입하고 엔터  </head>  바로 위에 아래의 스크립트를 입력 < script src = 'https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js' />

DIV 가로세로 센터 정렬

이미지
 * 예제 화면 * 예제 코드         < style >             body {                 background-color : #262626 ;                 color : #f5f5f5 ;                 text-align : center ;                 margin : 0 ;                 }             .out {                 width : 100% ;                 height : 100vh ;                 box-sizing : border-box ;                 display : flex ;                 align-items : center ;                 justify-content : center ;   ...