'잡동사니'에 해당되는 글 13156건

  1. 2020.11.04 c# label rotate
  2. 2020.11.04 c# tooltip
  3. 2020.11.04 c# GIF picturebox 4
  4. 2020.11.04 컴퓨터...
  5. 2020.11.03 라이젠 내장 그래픽 vs RX560
  6. 2020.11.02 오늘의 중고로운 평화장터
  7. 2020.11.02 모니터 고민중..
  8. 2020.11.02 openBMC
  9. 2020.11.02 HPL for CUDA , KNL
  10. 2020.11.02 WWN
Programming/c# & winform2020. 11. 4. 20:42

일일이 돌리려면 죽어 나겠는데 편하게 돌리는 법 없나?

 

[링크 : https://www.codeproject.com/Questions/1103814/How-to-rotate-a-label-by-keeping-autosize-in-Cshar]

[링크 : https://www.c-sharpcorner.com/forums/rotate-a-lable-in-c-sharp]

 

 

+ 2020.11.05

문자열이 얼마나 크게 그려지는지 pixel 단위로 돌려받는 함수.

[링크 : https://docs.microsoft.com/ko-kr/dotnet/api/system.drawing.graphics.measurestring?view=dotnet-plat-ext-3.1]

 

+ 2020.11.05

4분면 마다 다르게 설정해야 하는데 sin/cos 다시 공부하게 생겼다.. ㅠㅠ

아무튼 해당 코드 정상적으로 잘 작동하는 것 확인!

[링크 : https://stackoverflow.com/questions/1371943/c-sharp-vertical-label-in-a-windows-forms]

'Programming > c# & winform' 카테고리의 다른 글

C# UTC -> 지역시간  (0) 2020.11.05
c# gps(nmea parser)  (0) 2020.11.05
c# tooltip  (0) 2020.11.04
c# GIF picturebox  (4) 2020.11.04
C# 큰 이미지를 일부만 그리고 드래그 지원하기  (2) 2020.10.30
Posted by 구차니
Programming/c# & winform2020. 11. 4. 18:16

ToolTip.IsBalloon = true;

 

ToolTip.IsBalloon = false;

 

[링크 : https://stackoverflow.com/questions/9776077/how-can-i-add-a-hint-or-tooltip-to-a-label-in-c-sharp-winforms]

[링크 : http://www.gisdeveloper.co.kr/?p=2244]

Posted by 구차니
Programming/c# & winform2020. 11. 4. 17:51

ImageAnimator 클래스를 이용해서 비트맵과 프레임변경 핸들러를 추가하면

ImageAnimator.UpdateFrames()를 통해 다음 프레임을 원하는대로 그리는 듯

투명도 되려나?

 

using System;
using System.Drawing;
using System.Windows.Forms;
 
namespace BackgroundWorkerTest
{
    public partial class SandGlass : Form
    {
        public SandGlass()
        {
            InitializeComponent();
            this.StartPosition = FormStartPosition.CenterScreen;
        }
 
        Bitmap bit;
        protected override void OnLoad(EventArgs e)
        {
            bit = new Bitmap("sandglass.gif");
            ImageAnimator.Animate(bit, new EventHandler(this.OnFrameChanged));
            base.OnLoad(e);
        }
        protected override void OnPaint(PaintEventArgs e)
        {
            ImageAnimator.UpdateFrames();
            Graphics g = pictureBox1.CreateGraphics();
            g.DrawImage(this.bit, new Point(0, 0));
            base.OnPaint(e);
        }
        private void OnFrameChanged(object sender, EventArgs e)
        {
            this.Invalidate();
        }
    }
}

[링크 : https://blog.naver.com/goldrushing/130184365511]

[링크 : https://docs.microsoft.com/en-us/dotnet/api/system.drawing.imageanimator.animate?view=dotnet-plat-ext-3.1]

Posted by 구차니
개소리 왈왈/컴퓨터2020. 11. 4. 10:42

ryzen 2200g 으로 가는걸로 결정

i5-2500/HD7850에서 플루이드 돌리면 100W 먹고

모니터 20W 정도씩 먹었다고 적어놨는데 (그걸 두개는 켜놧었으니..)

 

2200g 로 4k 동영상 봐도 풀로드 걸어도 100W 미만으로 먹으니 전기측면에서는 괜찮을 듯

게다가 50W급 UHD 모니터만 사면 전기적으로도 dog 이득

 

어느정도 윤곽은 잡혀가는데

돈이 없네? ㅠㅠ

 

 

[링크 : http://www.ppomppu.co.kr/zboard/view.php?id=nas&no=31440&ismobile]

[링크 : https://www.clien.net/service/board/park/11772787]

'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글

zotac GT1030 2GB  (0) 2020.11.12
G4560  (0) 2020.11.11
라이젠 내장 그래픽 vs RX560  (0) 2020.11.03
오늘의 중고로운 평화장터  (0) 2020.11.02
모니터 고민중..  (0) 2020.11.02
Posted by 구차니
개소리 왈왈/컴퓨터2020. 11. 3. 22:14

중고로 가격 보다가 고민중

RX560 + i5-2500으로 버티냐

라이젠 2200g 로 전기세도 아끼냐 고민

 

일단 성능은 3배 정도 차이나네..

 

[링크 : https://gpu.userbenchmark.com/Compare/AMD-RX-Vega-8-Ryzen-iGPU-vs-AMD-RX-560/m441833vs3926]

'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글

G4560  (0) 2020.11.11
컴퓨터...  (0) 2020.11.04
오늘의 중고로운 평화장터  (0) 2020.11.02
모니터 고민중..  (0) 2020.11.02
이것저것 처분중  (2) 2020.11.01
Posted by 구차니
개소리 왈왈/컴퓨터2020. 11. 2. 23:41

VGA to HDMI 와 HDMI 케이블을 5천원에 업어옴

티비가 문제인지 저 컨버터가 문제인지 모르겠지만

1280x800 이런걸로 설정하니 안나오고

녹색이 형광색이 되는 느낌? ㅠㅠ

 

아무튼 오디오까지 잘 전송되서 대만족

express card to usb 3.0 + hdmi usb3.0 두개보다 매우싸게 해결되서 또 대만족 ㅋ

'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글

컴퓨터...  (0) 2020.11.04
라이젠 내장 그래픽 vs RX560  (0) 2020.11.03
모니터 고민중..  (0) 2020.11.02
이것저것 처분중  (2) 2020.11.01
갤럭시 북 12용 펜  (0) 2020.10.30
Posted by 구차니
개소리 왈왈/컴퓨터2020. 11. 2. 17:45

내 그래픽 카드가 HDMI 2.0 지원하지 안잖아?

안될거야 ㅠㅠ

 

아무튼 중고 구형 살바에는 이거 사는게

돈 + 전기세 아끼는 방법이 될 느낌인데.. 고민되네?

 

[링크 : http://itempage3.auction.co.kr/DetailView.aspx?itemno=C201012560]

[링크 : https://bbs.ruliweb.com/pc/board/320023/read/363912]

'개소리 왈왈 > 컴퓨터' 카테고리의 다른 글

라이젠 내장 그래픽 vs RX560  (0) 2020.11.03
오늘의 중고로운 평화장터  (0) 2020.11.02
이것저것 처분중  (2) 2020.11.01
갤럭시 북 12용 펜  (0) 2020.10.30
ADATA SSD 또 날아가려고 그러니? ㅜㅜ  (0) 2020.10.30
Posted by 구차니
프로그램 사용/openHPC2020. 11. 2. 15:29

 

Currently runs on…
▶ Barreleye, S822LC, S822LC For HPC, P8 Reference
▶ Witherspoon -- P9 AC922LC Power AI and CORAL
▶ P9 reference boards
▶ AST2400 and AST2500 BMC hardware

[링크 : https://cdn.openpowerfoundation.org/wp-content/uploads/2018/11/Andrew-Geissler-OpenBMC-Overview.pdf]

 

Barreleye, S822LC, S822LC

[링크 : https://wiki.raptorcs.com/wiki/OpenPOWER]

 

IBM Power System IC922

P9 reference boards

impitool, redfish 관련 용어 발견

[링크 : http://www.redbooks.ibm.com/redpapers/pdfs/redp5584.pdf]

 

AST2400 and AST2500 BMC hardware

[링크 : http://www.aspeedtech.com/server_ast2400/] 400MHz ARM926EJ 16KB/16KB Cache

[링크 : http://www.aspeedtech.com/server_ast2500/] 800MHz ARM11

 

[링크 : https://en.wikipedia.org/wiki/OpenBMC]

[링크 : https://github.com/openbmc/openbmc]

[링크 : https://github.com/openbmc]

'프로그램 사용 > openHPC' 카테고리의 다른 글

slurm 사용법  (0) 2020.11.16
slurm gpu  (0) 2020.11.16
HPL for CUDA , KNL  (0) 2020.11.02
slurm 계정이 생겼다?  (0) 2020.09.22
torque PBS on ubuntu  (0) 2020.09.21
Posted by 구차니
프로그램 사용/openHPC2020. 11. 2. 11:38
하드웨어/Storage2020. 11. 2. 10:53

WWN

스토리지(?) 고유 식별자

 

 

[링크 : https://en.wikipedia.org/wiki/World_Wide_Name]

'하드웨어 > Storage' 카테고리의 다른 글

UHS-1 U3의 힘!  (0) 2022.01.20
uhs1 과 u1  (0) 2021.08.22
d-link dns-343  (2) 2020.10.31
intel Entry Storage System SS4000-E 초기화  (0) 2020.10.25
d-link dns-343 이상하네?  (0) 2020.09.15
Posted by 구차니