This file contains 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
# Inspired by https://github.com/fastlane/fastlane/blob/master/fastlane/lib/fastlane/actions/update_app_identifier.rb | |
# coding: utf-8 | |
module Fastlane | |
module Actions | |
class UpdateAppiconAndLaunchimageAction < Action | |
def self.run(params) | |
require 'plist' | |
require 'xcodeproj' | |
info_plist_key = 'INFOPLIST_FILE' |
This file contains 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
using UnityEngine; | |
using UnityEngine.UI; | |
using System.Collections.Generic; | |
using System.Text; | |
public class EllipsisUGUIText : Text | |
{ | |
private readonly StringBuilder updatedStringBuilder = new StringBuilder(50); | |
private const char ellipsis = (char)8230; |
This file contains 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
Const pGene As Integer = 24 '출력 시작하는 row | |
Sub Input_Button_Click() 'Generate Button Click시 | |
Dim cAttrib As Integer | |
Dim cName As Integer | |
cAttrib = 0 | |
This file contains 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
#!/bin/bash | |
if [ $# -ne 3 ]; then | |
echo "Usage: $0 <file_path> <field_name> <new_value>" | |
exit 1 | |
fi | |
file_path="$1" | |
field_name="$2" | |
new_value="$3" | |
# Find the line number where the field is located | |
line_number=$(grep -n "$field_name:" "$file_path" | cut -d ':' -f 1) |
This file contains 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
#!/bin/zsh | |
# usage ./upload_to_s3.sh githash path/to/local/folder | |
# Check if the githash argument is provided | |
if [ $# -ne 3 ]; then | |
echo "Usage: $0 <githash> <folder-path> <bucket name>" | |
exit 1 | |
fi | |
# Set your bucket name and folder path |