본문 바로가기

전체 글

(1789)
흠냐 흠냐 흠냐 최근 근황 흠냐 흠냐 그간 블로그 글도 조금 뜸했는데 최근에 프로젝트랑 가벼운 발표가 있어서 그랬다. 나름 (한국의) 실무진 친구들과 정부 부처의 인물들을 직접 만나볼 수 있어서 재미가 있었다. 아마도 거기 있는 사람들은 본인들이 볶음밥이 되는 기회는 좀처럼 만나볼 수가 없었을 것이기에 나의 발표는 또한 의미가 있다.  장관 상은 안 받은 듯 한데, 최근에 한 의원이 케겔 운동 하면서 장관상을 받는 거 보고 한국은 정말 상태가 심각하구나 안 받길 잘했다는 생각도 든다. (한국은 이런 쪽으로는 너무 정치가 많이 들어가는 곳이라 - 하긴 어느 나라냐 안 그렇겠냐만은) 상이나 결과보다는 결국엔 이 (발표) 게임을 진행하면서 얻어간게 정말 많다. 먼저 이 내용을 진행하면서, 새로운 내용들에 대해서도 훨씬 구체적으로 많이 배울 수 있..
췤췤 머신 그저 감사합니다 !! (function(n) {    "use strict";        function xorOperation(a, b) {        return a ^ b;    }        function rotateLeft(x, n) {        return (x n) | (x >>> (32 - n));    }        function checksumBlock(block, seed) {        var result = seed;        for (var i = 0; i block.length; i++) {            result = xorOperation(result, block[i]);            result = rotateLeft(result, 5);        } ..
포ㄹ트를 뽀트르 포트르 포트리스 뽀로로 import socket # Function to collect portsdef collect_ports():    ports = []    while True:        user_input = input("Enter a port number (or type any alphabet to finish): ")        if user_input.isalpha():            break        try:            ports.append(int(user_input))        except ValueError:            print("Please enter a valid integer.")    return ports # Function to scan portsdef p..
Tom Aspinall is the real champion Tom Aspinall is widely regarded as the true heavyweight champion of the UFC, a title earned through his remarkable skill set, unparalleled athleticism, and relentless determination inside the Octagon. While the heavyweight division is often characterized by brute force and one-dimensional power strikers, Aspinall stands out as a unique force—a fighter who seamlessly blends devastating knockout p..
진정한 아름다움 import matplotlib.pyplot as plt import numpy as np def f(x):     return 2 * x / (x**2 + 1) x = np.linspace(-10, 10, 400) y = f(x) plt.figure(figsize=(8, 6)) plt.plot(x, y, label=r'$f(x) = \frac{2x}{x^2 + 1}$') plt.title('Graph of f(x)') plt.xlabel('x') plt.ylabel('f(x)') plt.axhline(0, color='black',linewidth=0.5) plt.axvline(0, color='black',linewidth=0.5) plt.grid(True) plt.legend() plt.show()
MMT is real ? : why we couldn't say anything about the whirl of the squirrel Thirty to forty years ago, if governments needed more money, they had to issue more government bonds and sell them to the market or other buyers. This allowed them to legally obtain funds, but they had to repay these debts eventually. However, after the fall of Lehman Brothers, many developed countries shifted towards a strategy known as Quantitative Easing (QE). Quantitative Easing works by hav..
윌의 마음을 이해하는 건 니체를 읽으며 타노스 고기를 뜯어먹을때 온다 import hashlibclass URLShortener:    def __init__(self):        self.url_map = {}        self.short_to_long = {}        self.base_url = "http://thanks.ly/"    def _hash_url(self, url):        # Generate a hash for the given URL        return hashlib.md5(url.encode()).hexdigest()[:6]    def shorten_url(self, url: str) -> str:        # Check if the URL has already been shortened        if url in s..
톰 아스피날 쫄 존스 그리고 알렉스 페레이라 Let's fucking go 최근에 톰 아스피날과 커티스 블레이즈의 경기가 있었다.  UFC 헤비급 말 그대로 최강자인 톰 아스피날로서는 부상으로 아쉽게 커티스에게 1차전에서 패배했었고 이번에 방어전과 리벤지를 함께 치룬 것이다. 경기를 잘 보면 알겠지만 빠른 풋워크를 바탕으로 톰 아스피날은 완벽한 딜리버리를 보여준다. 그리고 커티스 블레이즈가 팔을 뻗었을 때 빵! (잽) 단 한 방에 상대는 균형을 잃는다(결과적으로는 원투 다 맞추었지만). 이 장면을 잘 보면 알겠지만 커티스 블레이즈가 주먹을 한 번 뻗을 때 톰 아스피날은 원투가 나온다. 핸드 스피드에서도 아예 상대가 안 되는 것이다. 톰 아스피날 진짜 멋있는 사람이다. 그가 얼마나 노력해왔는지도 느껴지지만 여러 인터뷰와 삶 자체에서도 보이듯이 그는 정말로 마인드가 너무 멋지다. ..