'컴퓨터(소프트웨어)'에 해당되는 글 5건

  1. 2020.09.10 작업시간 고정의 경우, 공수산출(대부분 여기에 해당)
  2. 2020.09.08 Week Coloring
  3. 2018.08.26 왜 이딴걸...
  4. 2018.07.29 エクセルVBA memo
  5. 2014.11.29 일본어OS에서 한글 프로그램이 깨질때.
posted by 랭구루 2020. 9. 10. 00:09

www.pmpia.com/zbxe/MSPseminar/6207?ckattempt=1

 

MS Project 강좌 - 기간고정, 작업시간고정, 단위고정의 차이와 계산하는 방법

기간(Duration)이란 달력상의 작업(업무)지속일자이다. 작업이 목요일날 시작해서 다음주 화요일날 종료되었다면 목,금,월,화 4일의 기간을 가지게 된다. 작업시간(Work)이란 맨아워(man-hour), 맨데

www.pmpia.com

작업시간 고정의 경우:::

 

작업시간 = 자원단위 * 기간

2md = 1man * 2day

-> 한 사람이 2일 걸려서 작업완성된다는 의미.

여기서는 작업량이 고정이므로, 2md는 불변.

 

예) 위의 경우, 작업기간이 4일 증가시키면 어떻게 될까?

2md = x man * 4day, x = 0.5

자원(여기서는 사람) 가용시간 중 50%만 해당작업에 투여해서 4일 걸려 작업완성된다는 의미.

posted by 랭구루 2020. 9. 8. 00:58

=MATCH($B9,Holiday,0)>0
=WEEKDAY($B9)=1    (<- Saturday)
=WEEKDAY($B9)=7    (<- Sunday)

posted by 랭구루 2018. 8. 26. 22:08

--- installed this program ---
1. Supported Board Lists
qemu-system-arm --machine help
2. Supported CPU Lists
qemu-system-arm --machine none --cpu help


https://www.mztn.org/dragon/arm64_01.htmlhttp://layright.blogspot.com/2012/05/open-source-arm-sw-1.html
http://jake.dothome.co.kr/qemu/
http://layright.blogspot.com/2012/05/open-source-arm-sw-1.html
https://slowstarter80.github.io/qemu/2017/08/15/qemu.html
http://bayron.tistory.com/entry/000-QEMU-소개-Introductions-to-QEMU
https://wiki.linaro.org/LSK

http://smleenull.com/601 <-- Python으로 부팅

http://wavy00.blogspot.com/2016/11/yocto-qemu-arm-64bit.html  <-- 요코 프로젝트


https://ameblo.jp/oregano-blog/entry-10398219623.html
$ sudo apt-get install bison
$ sudo apt-get install flex


cd /home/psychone/linux/arch/arm/boot


arm-linux-gnueabi-gcc -static    test.c   -o test
qemu-system-arm -M versatilepb -m 128M -kernel zImage
echo test | cpio -o --format=newc > rootfs

posted by 랭구루 2018. 7. 29. 22:00


エクセルVBA

1. 最終行からデータありセルだけ数えた結果

.Cells(1, 5) = WorksheetFunction.CountA(.Range(.Cells(1, 3), .Cells(.Cells(Rows.Count, 3).End(xlUp).Row, 3)))
※最終行の値の取得なら .Cells(.Cells(Rows.Count, 1).End(xlUp).Row, 1))
※最終行取得なら、 .Cells(Rows.Count, 1).End(xlUp).Row

2. ファイルネームだけ(拡張子あり)
ori_filename = Mid(from_inputFileName, InStrRev(from_inputFileName, "\") + 1, Len(from_inputFileName))

3. 배열의 크기
따라서 정확하게 배열의 크기를 구하려면 아래와 같이 코드를 짜야합니다.
UBound(varArray) - LBound(varArray) + 1

posted by 랭구루 2014. 11. 29. 21:42

일본어 운영체제에서 1, 2 순서대로 실시.

1. 본 글통 프로그램의 메뉴가 깨지고 할 경우

  제어판 형식탭의 형식에서 한국어 선택.
             관리탭의 시스템로케일 설정에서 한국어 선택.

2. 소스, 디버깅 후 커맨드 창에 한글 보이게 하려면,
#include <locale.h>
setlocale(LC_ALL, ""); // or setlocale(LC_ALL, "korean");