anbox install

snap install --edge --devmode anbox sudo add-apt-repository -y ppa:morphis/anbox-support sudo apt update sudo apt install -y anbox-modules-dkms anbox session-manager

godot 키만들기

고닷 게임엔진 키스토어 만들기 godot making keystore keytool -genkey -v -keystore godot.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000 안드로이드 키생성과 겹치지만 참조하자 안드로이드 키 jks 파일을 직접 넣는 편이 편리 할듯 하다. 구글 에든센스에 걸리기 실어 아무거나 쓴다. 돈도 안되는 에드센스 괜히 달았다. 귀찮기만 하네

ubuntu menu appear graphic audio

이미지
ubuntu studio and ubutu 16lts menu appear graphic audio alacarte sudo apt install alacarte

c2 cordova plugin admob simple

/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ var app = { // Application Constructor initialize: function() { document.addEventListener('deviceready...

1. 이클립스 옵션 조정

1. 이클립스 옵션 조정 우선 이클립스 폴더 안에 있는 eclipse.ini에 다음을 추가 하거나 수정해줍니다. -------------------------------------------------------------------------------------------------- -Xverify:none -XX:+UseParalleIGC -Xms256M -Xmx512M -------------------------------------------------------------------------------------------------- -Xverify :             초기 시동시 verfify체크를 하지 않습니다. 간혹 플러그인 features에 문제가 발생 할 수 있습니다.             플러그인 변경 사항이 있을 경우에는 이걸 체크하시고, 별 문제 없으면 추가해서 사용하시면 됩니다. -XX:+UseParalleIGC :              ParalleI Collector를 사용 하도록 합니다.  패럴로 모아주니 빨라지는 느낌이 드실 겁니다.              다중 프로세서를 사용하시는 분들은 필수입니다. -Xms256M :              이클립스가 시작시 잡는 메모리입니다.(256메가 바이트) -Xmx512M :        ...

[01] OOP(Object Oriented Programming, 객체지향 프로그래밍)

[01] OOP(Object Oriented Programming, 객체지향 프로그래밍) 1. 객체 지향(콤포넌트, 부품)의 특징    - 한번 개발자가 개발한 코드는 "적은 수정"으로 재사용이 가능하도록함.    - 콤포넌트(완성된 소스)가 다른 콤포넌트와 결합하여 하나의 프로그램을 형성합니다.      . A 프로그램 --> 모듈 --> 출력 --> 처리 종류      . B 프로그램 --> 모듈 --> 출력 --> 처리 종류                       │                       ↓                      (공통모듈)      . A 프로그램 --> 콤포넌트        워드 패드  --> 파일 열기       - OOP의 개념을 바탕으로 업무용 프로그램을 제작하면 관리비용이 절감될 수 있다. Project type: Java Project         name: oop [02] 메소드    - 메소드(함수)는 멤버 변수(데이터)를 조작하고 처리하는 역활을 합니다.    - 2번이상 호출되는 로직이나 향후 호출될 가능성이 있는 로직은      메소드의 대상이 됩니다.         - 리턴값이 없는 메소드는 void(공허한, 비어있는) 형을 지정합니...