This file contains hidden or 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
keytool -list -v -keystore "%USERPROFILE%\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android |
This file contains hidden or 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
ffmpeg -user_agent "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_9_5) AppleWebKit/601.7.8 (KHTML, like Gecko) Version/9.1.3 Safari/537.86.7" -i https://branding.arvanvod.com/w4orK6pYLV/wVmowjK7OW/h_,144_200,240_400,360_800,480_1500,720_2500,k.mp4.list/index-f4-v1-a1.m3u8 -c copy Arvin.mkv |
This file contains hidden or 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
## .DS_Store | |
.DS_Store | |
## CocoaPods | |
Podfile.lock | |
Pods/ | |
## Userdata | |
Pock.xcodeproj/xcuserdata/ | |
Pock.xcworkspace/xcuserdata/ |
This file contains hidden or 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
Cd ~/Library/Android/sdk/emulator | |
./emulator -list-avds | |
./emulator -avd Pixel_2_XL_API_26 -dns-server 8.8.8.8,8.8.4.4 |
This file contains hidden or 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
# 1.For add : Once Terminal is open, enter the following command: | |
$ networksetup -setdnsservers Wi-Fi 178.22.122.100 185.51.200.2 | |
# then press [Enter] | |
# 2.For Delete : | |
$ networksetup -setdnsservers Wi-Fi "Empty" |
This file contains hidden or 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
echo "\033[31;32m \033[0m" | |
echo "\033[31;32m ## \033[0m" | |
echo "\033[31;32m ### \033[0m" | |
echo "\033[31;32m ###** #########*####**** \033[0m" | |
echo "\033[31;32m ## ############********* #* \033[0m" | |
echo "\033[31;32m *######***** ### #* \033[0m" | |
echo "\033[31;32m # * #* \033[0m" | |
echo "\033[31;32m ## # # ## ###' #* |
This file contains hidden or 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
Setting up the beautiful terminal by ZSH and Oh My ZSH installations | |
ohmyzsh github page: | |
https://github.com/ohmyzsh/ohmyzsh | |
Themes : | |
https://github.com/ohmyzsh/ohmyzsh/wiki/Themes |
This file contains hidden or 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
// Create by love : Mohammad Nasrabadi [github](https://github.com/mmnasrabadi) | |
import UIKit | |
protocol CodablePro: Codable { | |
func toJsonString() -> String | |
typealias JSON = [String : Any] | |
func toDictionary() -> JSON? | |
init?(json: JSON) | |
This file contains hidden or 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
struct Contact: Decodable, CustomStringConvertible { | |
var id: String | |
@NestedKey | |
var firstname: String | |
@NestedKey | |
var lastname: String | |
@NestedKey | |
var address: String | |
enum CodingKeys: String, NestableCodingKey { |
This file contains hidden or 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
import Foundation | |
protocol TransformerType { | |
associatedtype BaseType | |
associatedtype TypeForCoding: Codable | |
static var encodeTransform: (BaseType) throws -> TypeForCoding { get } | |
static var decodeTransform: (TypeForCoding) throws -> BaseType { get } | |
} | |
@propertyWrapper |
OlderNewer