Skip to content

Instantly share code, notes, and snippets.

View tastyone's full-sized avatar
💭
Happy! Look at my eyes~

Sangwon Park tastyone

💭
Happy! Look at my eyes~
View GitHub Profile
#! /usr/bin/python
# This will generate a build number from GIT repository rev-count
# and Set the build number to iOS and Android project file in the React Native Project
#
# Use this script on the base directory of your React Native Project.
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
@tastyone
tastyone / housekeeping_images.sh
Created April 28, 2020 08:38 — forked from DaanGeurts/housekeeping_images.sh
Deleting unused images from Google Container Registry, leaving x number left
#!/bin/bash
# Copyright © 2017 Google Inc.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
@tastyone
tastyone / d-install-run.sh
Created July 29, 2023 06:26
Dogecoin install and run a daemon
wget https://github.com/dogecoin/dogecoin/releases/download/v1.14.6/dogecoin-1.14.6-x86_64-linux-gnu.tar.gz
tar -xvzf dogecoin-1.14.6-x86_64-linux-gnu.tar.gz
cd dogecoin-1.14.6/bin
./dogecoind -daemon
cd .dogecoin
tail -f debug.log