Skip to content

Instantly share code, notes, and snippets.

View NicholasWon47's full-sized avatar

Nicholas Won NicholasWon47

View GitHub Profile
@justheath
justheath / printer.cfg
Last active August 5, 2025 16:01
ender 3 pro klipper config - creality silent board 4.2.7, tough extruder, EZABL
# 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.
@dongsik-yoo
dongsik-yoo / .gitignore
Last active June 9, 2025 01:53
javascript i18n automation with google spread sheet
# locale json files
/assets/locales/
from math import ceil
"""from PyQt5.QtCore import *
from PyQt5.QtGui import *
from PyQt5.QtWidgets import *"""
from PyQt4.QtCore import *
from PyQt4.QtGui import *
@singledigit
singledigit / cognito.yaml
Last active September 20, 2025 17:27
Create a Cognito Authentication Backend via CloudFormation
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:
@allieus
allieus / README.md
Created July 5, 2016 02:58
네이버 웹툰 크롤링

주의

  • 본 스크립트는 학술목적으로만 사용해주세요.
  • 만화책은 구매해서 보시고, 웹툰은 웹툰 서비스를 통해 감상해주세요. :-)
@lextm
lextm / innosample.pas
Created July 27, 2012 02:05
Inno Setup script sample for advanced part 3
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;