- 본 스크립트는 학술목적으로만 사용해주세요.
- 만화책은 구매해서 보시고, 웹툰은 웹툰 서비스를 통해 감상해주세요. :-)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file came from https://github.com/Klipper3d/klipper/blob/master/config/generic-creality-v4.2.7.cfg | |
| # This file contains pin mappings for the Creality "v4.2.7" board. To | |
| # use this config, during "make menuconfig" select the STM32F103 with | |
| # a "28KiB bootloader" and serial (on USART1 PA10/PA9) communication. | |
| # Flash this firmware by copying "out/klipper.bin" to a SD card and | |
| # turning on the printer with the card inserted. The firmware | |
| # filename must end in ".bin" and must not match the last filename | |
| # that was flashed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # locale json files | |
| /assets/locales/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from math import ceil | |
| """from PyQt5.QtCore import * | |
| from PyQt5.QtGui import * | |
| from PyQt5.QtWidgets import *""" | |
| from PyQt4.QtCore import * | |
| from PyQt4.QtGui import * | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: '2010-09-09' | |
| Description: Cognito Stack | |
| Parameters: | |
| AuthName: | |
| Type: String | |
| Description: Unique Auth Name for Cognito Resources | |
| Resources: | |
| # Creates a role that allows Cognito to send SNS messages | |
| SNSRole: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function Count(What, Where: String): Integer; | |
| begin | |
| Result := 0; | |
| if Length(What) = 0 then | |
| exit; | |
| while Pos(What,Where)>0 do | |
| begin | |
| Where := Copy(Where,Pos(What,Where)+Length(What),Length(Where)); | |
| Result := Result + 1; | |
| end; |