モヒカンslackのチャネルリスト(毎日 AM 5:00 自動更新)
詳細はQiita:究極のIT系最新技術情報収集用Slackチーム公開 - モヒカンSlack -を参照。
参加は
| // ==UserScript== | |
| // @name Deny Rakuten News | |
| // @namespace http://espion.just-size.jp/archives/05/136155838.html | |
| // @description Deny Rakuten News and Mail Magazine Subscriptions | |
| // @include https://*.step.rakuten.co.jp/* | |
| // @include https://*.travel.rakuten.co.jp/rsv/RsvInput.do* | |
| // @include https://my.rental.rakuten.co.jp/action/my/* | |
| // @include https://delivery.rakuten.co.jp/*?module=Default&action=OrderStep* | |
| // @include https://auction.item.rms.rakuten.co.jp/* | |
| // @include https://my.checkout.rakuten.co.jp/myc/purchase/Confirm |
| // | |
| // UIApplication+UIID.h | |
| // UIID | |
| // | |
| // Created by akisute on 11/08/22. | |
| // | |
| #import <UIKit/UIKit.h> | |
| - (UIViewController *)viewControllerForView:(UIView *)view { | |
| UIResponder *nextResponder = [view nextResponder]; | |
| if (nextResponder) { | |
| if ([nextResponder isKindOfClass:[UIViewController class]]) { | |
| return (UIViewController *)nextResponder; | |
| } else { | |
| return [self viewControllerForView:view.superview]; | |
| } | |
| } | |
| return nil; |
| # (File moved to https://github.com/ole/Storyboard-Strings-Extraction) |
| #import <UIKit/UIKit.h> | |
| #import "AppDelegate.h" | |
| int main(int argc, char * argv[]) | |
| { | |
| @autoreleasepool { | |
| [[NSUserDefaults standardUserDefaults] setBool:NO forKey:@"UIDisableLegacyTextView"]; | |
| return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); |
| // | |
| // WhereAmIRunning.swift | |
| // https://gist.github.com/mvarie/63455babc2d0480858da | |
| // | |
| // ### Detects whether we're running in a Simulator, TestFlight Beta or App Store build ### | |
| // | |
| // Based on https://github.com/bitstadium/HockeySDK-iOS/blob/develop/Classes/BITHockeyHelper.m | |
| // Inspired by http://stackoverflow.com/questions/18282326/how-can-i-detect-if-the-currently-running-app-was-installed-from-the-app-store | |
| // Created by marcantonio on 04/11/15. | |
| // |
モヒカンslackのチャネルリスト(毎日 AM 5:00 自動更新)
詳細はQiita:究極のIT系最新技術情報収集用Slackチーム公開 - モヒカンSlack -を参照。
参加は
これまで、本稿の Gist にて公開しておりました [tmux 2.5][TMUX] 以降において [East Asian Ambiguous Character][EAWA] を全角文字の幅で表示する為の差分ファイルについて、差分ファイルの分量が多くなったことに伴い、今後は以下の [Github][GITH] のリポジトリにて [tmux][TMUX] の [East Asian Ambiguous Character][EAWA] 対応差分ファイルを公開することと致します。
また、今後 [East Asian Ambiguous Character][EAWA] 対応の [tmux][TMUX] の導入を御考えの方は、後述する [Linuxbrew][BREW] を用いた差分ファイルの適用及びインストール若しくは、 [AppImage パッケージ][APPR]を用いたインストールを御勧め致します。
| var spreadsheet = SpreadsheetApp.getActiveSpreadsheet(); | |
| function doGet(e) { | |
| if (e.parameter == undefined) { | |
| throw new Error("固定パラメータなし"); | |
| } | |
| // 日付を取得 | |
| var date = e.parameter.date; | |