Skip to content

Instantly share code, notes, and snippets.

//
// MainScene.cpp
// NewCocosProject1
//
// Created by jeunkim on 2017. 10. 24..
//
//
#include "MainScene.h"
#include "HeroScene.h"
//
// Player.cpp
// NewCocosProject1
//
// Created by jeunkim on 2017. 9. 13..
//
//
#include "Player.h"
@5HARK
5HARK / telegram_linux_nimf_patch_manual.md
Last active December 2, 2018 17:18
텔레그램 리눅스 데스크탑 nimf 호환 패치법

Build instructions for tdesktop client to compatible with nimf

This document is based on Telegram v1.3.10 version and nimf 2018.08.03 version.

Build instructions for GYP/CMake under Ubuntu 16.04

Create & Run docker container for build

docker run -it --name "telegram-build" ubuntu:16.04 /bin/bash

Prepare folder

@5HARK
5HARK / ssh-ec2-as-group.sh
Last active March 17, 2024 10:47
Shell script: Connect to EC2 instances of Auto scaling Group and simultaneous control
#!/usr/bin/env bash
# ssh-as-group.sh
# AWS EC2 오토스케일 그룹의 모든 EC2 인스턴스에 SSH 연결 및 동시 제어하는 스크립트
# Requirements: awscli, tmux, tmux-xpanes
# 인자 검증
if [ $# -lt 4 ]; then
echo "오류: 인자가 필요합니다."
echo "사용법: $0 AutoscaleGroupName SSHPublicKeyPath SSHPortNumber EC2LoginUserName"
exit 1