Skip to content

Instantly share code, notes, and snippets.

@thisisone
thisisone / gist-dark-style.css
Created May 8, 2025 11:42
gitst dark theme
/*
여기 내용 보고 가져왔습니다만
https://jeongmint.github.io/posts/2022-04-26-page002
색깔이 이상해서
color 는 전부 흰색
background-color 는 모드 검정
으로 다시 박안 ㅓㅎ었습니다.
*/

content.md

내용입니다.

// 이것은 코드 입니다.
var this_is = 'code';
try
{
// JAVA : string -> base64
{
String text = "한글";
byte[] data = text.getBytes("UTF-8");
String base64 = Base64.encodeToString(data, Base64.DEFAULT);
Log.d("Unity", "base64="+base64);
}
@thisisone
thisisone / JSONObjectSample.java
Created July 29, 2014 11:44
JAVA JSONObject sample
try
{
JSONObject json = new JSONObject();
json.put("int", 1);
json.put("float", 1.1f);
json.put("bool", true);
json.put("string", "hello");
JSONArray jarr = new JSONArray();
jarr.put("abc");