728x90 ์ ์ฒด ๊ธ720 C# - ๋ฉํฐ์ค๋ ๋์์ ํด๋ฆฝ๋ณด๋ ๊ธฐ๋ฅ(OLE) ์ฌ์ฉํ๊ธฐ // ๋ฉํฐ์ค๋ ๋ ํจ์ ์ ์ธ mainThread = new Thread(work); mainThread.SetApartmentState(ApartmentState.STA); mainThread.Start(); // ๋ฉํฐ์ค๋ ๋ ํจ์ ๋ด๋ถ Clipboard.SetText("ํ ์คํธ"); ์ถ์ฒ: https://taeminimini.tistory.com/m/437 Thread ๋ด ์์ OLE ํธ์ถ์ STAThreadAttribute C# Thread ํ๋ค๋ณด๋ ๋ง๋ค์ด๋์ ์ฐ๋ ๋์ Clipboard๋ฅผ ์ฌ์ฉํ๋ ค๊ณ ํ๋ ์๋์ ๊ฐ์ด ์ค๋ฅ๊ฐ ๋ฐ์ํ๋ค. ๐ฅ System.Threading.ThreadStateException: 'OLE ํธ์ถ์ ์ํํ๋ ค๋ฉด ํ์ฌ ์ค๋ ๋๋ฅผ STA(๋จ์ผ ์ค๋ ๋ ์ํํธ) taeminimini.tisto.. 2022. 10. 19. ์ฝ๋์ - ๊ณ์ฐ๊ธฐ 2 https://codeup.kr/problem.php?id=1285 ๊ณ์ฐ๊ธฐ 2 ์ผ์ชฝ๋ถํฐ ์ฐจ๋ก๋๋ก ์ฐ์ฐํ ๊ฒฐ๊ณผ๋ฅผ ์ถ๋ ฅํ๋ค.(์ฐ์ ์์x) codeup.kr #include int main(void){ int n[20]={0,}; char g[20]={0,}; int even = 0; int i = 0, j = 0; while(1){ if( !even ){ scanf("%d", &n[i++]); } else{ scanf("%c", &g[j++]); } if(g[j-1] == '=') break; if(even) even = 0; else even = 1; } int result = n[0]; i = 0, j = 0; while(1){ if( g[j] == '=' ) break; switch(g[j++]){ c.. 2022. 10. 17. ๋ฐฑ์๋ - Node.js(Express), React ์น ์ฌ์ดํธ ๋ฐฐํฌ ์ฌ์ดํธ(Heroku) https://www.heroku.com/ Cloud Application Platform | Heroku Heroku is a platform as a service (PaaS) that enables developers to build, run, and operate applications entirely in the cloud. www.heroku.com 2022. 10. 15. ๋ฆฌ์กํธ - UI ํ๋ ์์ํฌ(MUI) https://mui.com/ MUI: The React component library you always wanted MUI provides a simple, customizable, and accessible library of React components. Follow your own design system, or start with Material Design. mui.com 2022. 10. 15. ๋ฆฌ์กํธ - ํ ์คํธ ํ์ (React-Toastify) ๋ชจ๋ https://fkhadra.github.io/react-toastify/introduction React-toastify | React-Toastify [](https://opencollective.com/react-toastify)  Win + R > sndvol ์ ๋ ฅ > ํ์ธ 2022. 10. 15. ๋ฆฌ์กํธ ๋ค์ดํฐ๋ธ - MapView Marker ์ฌ์ฉ ์์ import * as React from 'react'; import MapView from 'react-native-maps'; import { StyleSheet, Text, View, Dimensions } from 'react-native'; export default function App() { return ( ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }, map: { width: Dimensions.get('window').width, height: Dimensions.get('window')... 2022. 10. 14. C# - ๋ชจ๋ UI ํ๋ ์์ํฌ(MahApps.Metro) https://mahapps.com/ MahApps.Metro - Home Enhance the default controls MahApps.Metro overrides the default style of all common WPF controls and gives them a modern look. More than just styles MahApps.Metro also includes some custom controls based on concepts from Windows Phone, Windows 8 and Windo mahapps.com https://luckygg.tistory.com/302 [.Net] C# WinForm์์ Metro UI(Modern UI) Framework ์ ์ฉํ๊ธฐ(.. 2022. 10. 13. puppeteer - Hairline Feature ์ฐํ await page.evaluateOnNewDocument(() => { Object.defineProperty(HTMLDivElement.prototype, 'offsetHeight', { get: function() { if (this.id === 'modernizr') { return 1; } return elementDescriptor.get.apply(this); }, }); }); ์ถ์ฒ: https://intoli.com/blog/making-chrome-headless-undetectable/ Making Chrome Headless Undetectable Using MitmProxy and injected JavaScript feature mocks to bypass Headless Chr.. 2022. 10. 13. puppeteer - Language, Languages ์์ await page.evaluateOnNewDocument(() => { Object.defineProperty(navigator, "language", { get: function() { return "en-GB"; } }); Object.defineProperty(navigator, "languages", { get: function() { return ["en-GB", "en"]; } }); }); ์ถ์ฒ: https://stackoverflow.com/questions/46908636/how-to-specify-browser-language-in-puppeteer How to specify browser language in Puppeteer I would like to launch a Google.. 2022. 10. 13. ์๋ฐ์คํฌ๋ฆฝํธ - ๋ด ์ปดํจํฐ GPU(๊ทธ๋ํฝ ์นด๋) ์ ๋ณด ๊ฐ์ ธ์ค๊ธฐ(WebGL) var canvas = document.createElement('canvas'); var gl; var debugInfo; var vendor; var renderer; try { gl = canvas.getContext('webgl') || canvas.getContext('experimental-webgl'); } catch (e) { } if (gl) { debugInfo = gl.getExtension('WEBGL_debug_renderer_info'); vendor = gl.getParameter(debugInfo.UNMASKED_VENDOR_WEBGL); renderer = gl.getParameter(debugInfo.UNMASKED_RENDERER_WEBGL); } console.log(.. 2022. 10. 12. ์ด์ 1 ยทยทยท 28 29 30 31 32 33 34 ยทยทยท 60 ๋ค์ 728x90