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
#!/usr/bin/env python | |
from __future__ import annotations | |
import os | |
from pathlib import Path | |
from segment_anything import sam_model_registry, SamAutomaticMaskGenerator, SamPredictor | |
import cv2 | |
import numpy as np | |
import torch | |
from tqdm import tqdm |
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
version: '3' | |
services: | |
#SonarQube Container | |
sonarqube: | |
image: sonarqube:6.7-community | |
container_name: sonarqube | |
ports: | |
- "9000:9000" | |
links: | |
- postgres |
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
// | |
// HGLabel.h | |
// | |
// Created by HamGuy on 2019/4/17. | |
// | |
#import <UIKit/UIKit.h> | |
NS_ASSUME_NONNULL_BEGIN |
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
// | |
// TapableLabel.swift | |
// AspirinUIKit | |
// | |
// Created by HamGuy on 2018/11/21. | |
// | |
import UIKit | |
public protocol TapableLabelDelegate: NSObjectProtocol { |
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
let step: Float = 50; | |
// extra slider initialization. the IBAction func below points to the UISlider we are using. | |
@IBAction func onStrengthChange(sender: UISlider) { | |
let roundedValue = round(sender.value/step) * step | |
sender.value = roundedValue | |
} |
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
shell判断文件,目录是否存在或者具有权限 | |
#!/bin/sh | |
Path="/var/log/httpd/" | |
File="/var/log/httpd/access.log" | |
#这里的-x 参数判断$Path是否存在并且是否具有可执行权限 | |
if [ ! -x "$Path"]; then | |
mkdir "$Path" | |
fi |
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
// | |
// DZNEmptyDataSet.swift | |
// Sample | |
// | |
// Created by Ignacio Romero on 12/18/15. | |
// Copyright © 2015 DZN Labs. All rights reserved. | |
// | |
import UIKit | |
fileprivate func < <T : Comparable>(lhs: T?, rhs: T?) -> Bool { |
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 | |
chmod a-x /Applications/Thunder.app/Contents/Bundles/XLPlayer.app | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/bbassistant.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/browserhelper.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/featuredpage.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/myvip.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/playgame.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/subtitle.xlplugin | |
chmod a-x /Applications/Thunder.app/Contents/PlugIns/thunderstore.xlplugin |
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
# Returns dictionary mapping lowercase model strings (e.g. 'macbookpro11,3') | |
# to a general category (e.g. "MacBook Pro (15-inch)"). | |
# Exact model names can be modified. | |
# @author Richard Hofman | |
# | |
def model_to_type_dict(): | |
type_to_model = {'Macbook Pro (Retina, 13-inch)': ['MacBookPro10,2', 'MacBookPro11,1', 'MacbookPro12,1'], | |
'MacBook Pro (13-inch)': ['MacBookPro9,2', 'MacBookPro8,1', 'MacBookPro7,1', 'MacBookPro5,5'], | |
'MacBook Pro (Retina, 15-inch)': ['MacbookPro11,4', 'MacbookPro11,5', 'MacBookPro11,2', 'MacBookPro11,3', 'MacBookPro10,1'], | |
'MacBook Pro (15-inch)': ['MacBookPro9,1', 'MacBookPro8,2', 'MacBookPro6,2', 'MacBookPro5,3', 'MacBookPro5,1', 'MacBookPro4,1', 'MacBookPro3,1', 'MacBookPro2,2', 'MacBookPro1,1'], |
NewerOlder