Skip to content

Instantly share code, notes, and snippets.

View yosuke1985's full-sized avatar
🎯
Focusing

Yosuke Nakayama yosuke1985

🎯
Focusing
View GitHub Profile
@yosuke1985
yosuke1985 / Convert .mov or .MP4 to .gif.md
Created October 14, 2022 06:14 — forked from SheldonWangRJT/Convert .mov or .MP4 to .gif.md
Convert Movie(.mov) file to Gif(.gif) file in one command line in Mac Terminal

This notes is written by Sheldon. You can find me with #iOSBySheldon in Github, Youtube, Facebook, etc.

Need

Convert .mov/.MP4 to .gif

Reason

As a developer, I feel better to upload a short video when I create the pull request to show other viewers what I did in this PR. I tried .mov format directly got after finishing recording screen using Quicktime, however, gif offers preview in most web pages, and has smaller file size.

This is not limited to developer, anyone has this need can use this method to convert the files.

@yosuke1985
yosuke1985 / ActivityIndicatorExample.swift
Created February 17, 2021 08:10
ActivityIndicatorExample.swift
import RxCocoa
import RxSwift
import UIKit
protocol OverlayableViewController: UIViewController {
var overlayView: UIView! { get set }
var disposeBag: DisposeBag { get }
}
extension OverlayableViewController {

Terms & Conditions

By downloading or using the app, these terms will automatically apply to you – you should make sure therefore that you read them carefully before using the app. You’re not allowed to copy, or modify the app, any part of the app, or our trademarks in any way. You’re not allowed to attempt to extract the source code of the app, and you also shouldn’t try to translate the app into other languages, or make derivative versions. The app itself, and all the trade marks, copyright, database rights and other intellectual property rights related to it, still belong to Yosuke Nakayama.

Yosuke Nakayama is committed to ensuring that the app is as useful and efficient as possible. For that reason, we reserve the right to make changes to the app or to charge for its services, at any time and for any reason. We will never charge you for the app or its services without making it very clear to you exactly what you’re paying for.

The NOTTOD0 app stores and processes personal data that you have provided

Privacy Policy

Yosuke Nakayama built the NOTTOD0 app as a Commercial app. This SERVICE is provided by Yosuke Nakayama and is intended for use as is.

This page is used to inform visitors regarding my policies with the collection, use, and disclosure of Personal Information if anyone decided to use my Service.

If you choose to use my Service, then you agree to the collection and use of information in relation to this policy. The Personal Information that I collect is used for providing and improving the Service. I will not use or share your information with anyone except as described in this Privacy Policy.

The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at NOTTOD0 unless otherwise defined in this Privacy Policy.

謎のエラー Phase zeroなんたらでビルドできないとき

  • Xcodeも再起動
  • iPhoneも再起動
  • あとはキャッシュをガッツリ削除
  • sudo rm -rf ~/Library/Developer/Xcode/DerivedData/*
  • echo "clean Xcode/DerivedData!"
  • sudo rm -rf ~/Library/Developer/Xcode/Archives/*
  • echo "clean Xcode/Archives!"
  • sudo rm -rf ~/Library/Caches/*
@yosuke1985
yosuke1985 / blogos.py
Created January 27, 2018 10:25
Blogosメルマガが終了するので、Pythonでスクレイピングして過去記事を保存してみた
#https://qiita.com/YOSUKE8080/items/a59e5bcbf5ded6c8d5f9
import requests
from bs4 import BeautifulSoup
from urllib.parse import urljoin
# メールアドレスとパスワードの指定
USER = ""
PASS = ""
@yosuke1985
yosuke1985 / TableChildFoodViewController.swift
Created October 25, 2016 13:49
Multiple Custom UICollectionView on Multiple Custom TableviewCell between section
//
// TableChildFoodViewController.swift
// MoolProject
//
// Created by 中山 陽介 on 2016/10/13.
// Copyright © 2016 Yosuke Nakayama. All rights reserved.
//
import Foundation
import XLPagerTabStrip