Oralcle DB 설치

OS/Mac OS 2017. 9. 5. 16:39

1. 설치 과정

https://dimitrisli.wordpress.com/2012/08/08/how-to-install-oracle-database-on-mac-os-any-version/


2. 설치 파일 준비물

-VirtualBox.dmg

http://www.oracle.com/technetwork/server-storage/virtualbox/downloads/index.html

-DeveloperDaysVM2017-06-13_01.ova

http://www.oracle.com/technetwork/database/enterprise-edition/databaseappdev-vm-161299.html

용량이 큰 관계로 여기에 올리진 못함. 위의 URL 참조 후 다운로드

Posted by 知彼知己百戰不殆
,

http://verysimple.org/wiki/moin.cgi/CategoryMac?highlight=%28%5CbCategoryCategory%5Cb%29

objective-C 참고 사이트

Posted by 知彼知己百戰不殆
,
Lance Mason Robinson wrote:

> I'm having problems using gettext() and puttext().  I'm trying to use 
> them

> to save the screen and restore the screen.  Sometimes when I'm running


> the program, it locks up after I call gettext() and sometimes after I
> call puttext().  I was thinking maybe the function is getting confused 
> by
> other included files.  Here's how I am using it in my program..

> void * screen;
> //save screen
> gettext(1,1,80,25,screen);
> //here I am changing the screen, for example in one instance if they 
> press
> //F1 it shows a help screen with all the commands available.
> //then after they exit the help screen...
> //restore screen
> puttext(1,1,80,25,screen);

> If I remove all the gettext()'s and puttext()'s from my program then 
> it
> works great.  Any ideas how to fix it?  Or alternative methods to save
> & restore the screen state?

> Lance

Lance,

Your problem is easy to fix. YOU have to allocate the memory you pass 
to gettext. It will use it to store the display info. (The lockups
are due to a memory violation.) The memory space needed for the array
can be calculated the following way:

   bytes = number_of_rows * number_of_columns * 2

   where number_of_rows    = bottom - top + 1
   and   number_of_collums = right - left + 1

In your example the following lines would do it:

   #include <conio.h>
   
   // allocate 80*25*2 = 4000 bytes
   void screen[4000];
   // save screen
   gettext(1,1,80,25,screen);
   // your stuff
   // ...
   //
   // restore screen
   puttext(1,1,80,25,screen);

'언어 > C' 카테고리의 다른 글

[Linked List] 연결리스트를 활용한 도서관리prog  (0) 2017.02.08
[CubeBite] File_Create_Write 함수  (0) 2017.02.08
[Tip] File I/O Error 다루는 법  (0) 2016.11.05
구조체의 크기와 pragma pack  (0) 2016.10.28
비트필드 구조체  (0) 2016.10.27
Posted by 知彼知己百戰不殆
,

Project -> Build Settings -> No Common Blocks -> Yes -> No



Posted by 知彼知己百戰不殆
,

#!/bin/bash

rm /Users/dongki/Library/Application\ Support/Beyond\ Compare/registry.dat



script


Posted by 知彼知己百戰不殆
,

Spotlight 에서 FileMerge를 검색하면 나오는 프로그램!

'OS > Mac OS' 카테고리의 다른 글

Oralcle DB 설치  (0) 2017.09.05
Beyond Compare - 디데이 초기화 프로그램  (0) 2017.08.07
[맥북 실행파일 만들것]  (0) 2017.05.19
vi 에디터로 작성 시 마우스 휠로 커서 옮기기  (0) 2016.11.13
Vim 자동완성  (0) 2016.11.13
Posted by 知彼知己百戰不殆
,

UIAlertView 띄우는 법


UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@""

                                                                     message:@"가라미네이트 "

                                                                     delegate:self

                                                       cancelButtonTitle:@"취소"                   /* nil 지정할 경우 cancel button 없음 */

                                                       otherButtonTitles:@"확인", nil];

    

[alert show];


Posted by 知彼知己百戰不殆
,

http://kapps.co.kr/bbs/board.php?bo_table=m52&wr_id=33

Posted by 知彼知己百戰不殆
,


I came across this problem and my senior told me about a solution i.e:

Right click on your projectname.xcodeproj file here projectname will be the name of your project. Now after right clicked select Show Packages Contents. After that open your projectname.pbxproj file in a text editor. Now search for the line containing <<<<<<< .mine, ======= and >>>>>>> .r. For example in my case it looked liked this 

<<<<<<< .mine
    9ADAAC6A15DCEF6A0019ACA8 .... in Resources */,
=======
    52FD7F3D15DCEAEF009E9322 ... in Resources */,
>>>>>>> .r269

Now remove those <<<<<<< .mine, ======= and >>>>>>> .r lines so it would look like this 

    9ADAAC6A15DCEF6A0019ACA8 /* BuyPriceBtn.png in Resources */,

    52FD7F3D15DCEAEF009E9322 /* discussionForm.zip in Resources */,

Now save and open your Xcode project and build it. Everything will be fine.

shareedit


출처: https://stackoverflow.com/questions/361799/unable-to-open-project-cannot-be-opened-because-the-project-file-cannot-be-pa


P.S 저 부분은 충돌난 부분이라 위, 아래 비교해보고 중복된 부분을 제거해야 함.. 단순 기호만 제거하면 제대로 된 충돌처리가 되지 않은 거

Posted by 知彼知己百戰不殆
,

프레임워크에서 CPU 아키텍쳐 확인하기

확인하는 법: file [Framework name]/[Framework binary file name]

Framework name은 터미널 열고 프레임워크 끌어다 놓으면 자동으로 완성

보통 Framework binary file name은 프레임워크 이름이랑 같다. 아닐 수도 있음

위의 화면은 arm64 계열에서만 돌아가는 프레임워크이다. 따라서 armv7s를 사용하는 iPhone5에서는 빌드할 때 에러가 난다.

위의 화면은 arm64 계열과 armv7 CPU에서 빌드가 가능한 프레임워크이다. 따라서 최신(iPhone7~iPhone6)폰부터 예전폰(iPhone5~iPhone4)까지 모두 빌드가 가능한 프레임워크이다.


Posted by 知彼知己百戰不殆
,