駆け出しエンジニアハッシュタグについて前ちょっと調べたことを残しておく、これは単なる私の調べたメモです。
間違っている、押さえきれていない、見逃している可能性も沢山ありますので、注意してください
調査は
- twitter検索
- Google Trend
// | |
// GalleryItemCell.swift | |
// BrunchApp | |
// | |
// Created by Liam Nichols on 30/04/2017. | |
// Copyright © 2017 Bottomless Brunches. All rights reserved. | |
// | |
import UIKit |
class BundleSegue: ConfigurationSegue { | |
typealias Source = BundlesViewController | |
typealias Destination = BundleViewController | |
typealias First = BundlesViewController | |
typealias Second = BundleViewController | |
override func inject() { | |
destinationController.viewModel = resolver.resolve(BundleViewModelType.self) |
#!/usr/bin/env sh | |
UUID=$(defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID) | |
echo Xcode DVTPlugInCompatibilityUUID is $UUID | |
for MyPlugin in ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins/* | |
do | |
UUIDs=$(defaults read "$MyPlugin"/Contents/Info DVTPlugInCompatibilityUUIDs) | |
echo $MyPlugin | |
if echo "${UUIDs[@]}" | grep -w "$UUID" &>/dev/null; then | |
echo "The plug-in's UUIDs has contained the Xcode's UUID." | |
else |
package net.yanzm.profileapplication; | |
import android.animation.Animator; | |
import android.animation.AnimatorListenerAdapter; | |
import android.animation.AnimatorSet; | |
import android.animation.ObjectAnimator; | |
import android.app.Activity; | |
import android.app.FragmentManager; | |
import android.content.Intent; | |
import android.net.Uri; |
#!/bin/sh | |
# settings ========== | |
# src file name | |
fileNamePrefix="ScreenShotFileNameFor5.5inch" | |
offsetFor3_5=20 | |
# dest directory name |
#import "SyncEngine.h" | |
#import "CoreDataController.h" | |
#import "ParseApiClient.h" | |
#import "AFHTTPRequestOperation.h" | |
NSString * const kSDSyncEngineInitialCompleteKey = @"SDSyncEngineInitialSyncCompleted"; | |
NSString * const kSDSyncEngineSyncCompletedNotificationName = @"SDSyncEngineSyncCompleted"; | |
NSString * const kSDSyncEngineDownloadCompleteNotification = @"SDSyncEngineDownloadComplete"; | |
@interface SyncEngine () |
(defun toggle-camelcase-and-snakecase () | |
(interactive) | |
(let (start end bounds) | |
(if (and transient-mark-mode mark-active) | |
(progn | |
(setq start (mark)) | |
(setq end (point))) | |
(let ((bounds (bounds-of-thing-at-point 'symbol))) | |
(when bounds |