Skip to content

Instantly share code, notes, and snippets.

Started by user [email protected]
Running as SYSTEM
[EnvInject] - Loading node environment variables.
Building in workspace /Users/coupang/.jenkins/workspace/Eats_copy
Running Prebuild steps
[Eats_copy] $ /bin/sh -xe /var/folders/6h/00qpqzz97593nlf0p7s9r8zr0000gn/T/jenkins619739810388098695.sh
+ git lfs install
Updated git hooks.
Git LFS initialized.
Success build forhudson.tasks.Shell@6547bc2f
@w99wen123dff
w99wen123dff / fix_symlinks_fmk_ios.sh
Last active August 29, 2015 14:25 — forked from spawnrider/fix_symlinks_fmk_ios.sh
This script recreate corrupted Symlinks into iOS Frameworks
@w99wen123dff
w99wen123dff / gist:dcf079b0531842e6dddf
Created June 1, 2015 02:16
broken keyboard question
static public String func(String input, String output) {
String missingPart = "";
String inputUpcase = input.toUpperCase();
String outputUpcase = output.toUpperCase();
String longestSubString = MyLCS(inputUpcase, outputUpcase);
while (longestSubString.compareTo(inputUpcase) != 0) {
int posStart = inputUpcase.indexOf(longestSubString);
// System.out.println(" ================== ");
System.out.println("posStart = " + posStart + ",lenth = "
+ longestSubString.length());