code $PROFILE
Import-Module oh-my-posh
Set-PoshPrompt -Theme material
Get-PoshThemes -list
material.omp.json
[INFO] [Content]: Updating firmware status for: "/private/var/containers/Bundle/Application/9BADA19E-492B-4BC6-BEC2-74F355D68542/RetroArchTV.app/Frameworks/ppsspp.libretro.framework" on "/private/var/mobile/Containers/Data/Application/9A0E0DCF-1A3C-4F6A-B429-20E5EA88D61D/Library/Caches/RetroArch/system". | |
[INFO] [Core]: Using content: "/private/var/mobile/Containers/Data/Application/9A0E0DCF-1A3C-4F6A-B429-20E5EA88D61D/Library/Caches/RetroArch/downloads/Gran Turismo (USA) (En,Fr,Es) (v2.00).iso". | |
[INFO] [Core]: Content ran for a total of: 00 hours, 00 minutes, 00 seconds. | |
[INFO] [Core]: Unloading core.. | |
[INFO] [Core]: Unloading core symbols.. | |
[INFO] RetroArch 1.18.0 (Git 90fb335271) | |
[INFO] === Build ======================================= | |
[INFO] Capabilities: NEON VFPV3 VFPV4 | |
[INFO] Version: 1.18.0 | |
[INFO] Git: 90fb335271 |
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "alt+cmd+]", | |
"command": "-editor.unfold", | |
"when": "editorTextFocus && foldingEnabled" | |
}, | |
{ | |
"key": "alt+cmd+]", | |
"command": "-notebook.unfold", |
func qs(_ list: [Int]) -> [Int] { | |
if list.count < 1 { return list } | |
let pivot = list[list.count-1] | |
var l = [Int]() | |
var e = [Int]() | |
var r = [Int]() | |
for x in list { | |
if x < pivot { l.append(x) } |
// | |
// Observable.swift | |
// Created by Wender on 11/08/22. | |
// | |
class Observable<T> { | |
private(set) var value: T { | |
didSet { | |
listener?(value) |
open -a '/Applications/WhatsApp.app' --args -disable-gpu |
cat ~/.ssh/id_rsa.pub | pbcopy |
// | |
// RatingStarsUIView.swift | |
// ShoeStore Swift ViewCode | |
// | |
// Created by Wender Patrick on 06/04/22. | |
// | |
import UIKit | |
protocol RatingStarsUIViewProtocol: AnyObject { |
class Phone { | |
final String _areacode; | |
final String _specialDigit; | |
final String _localPhone; | |
Phone._(this._areacode, this._specialDigit, this._localPhone); | |
static Phone? create(String? candidate) { | |
final candidateFormatted = candidate!.replaceAll(RegExp('[^0-9]'), ''); | |
//https://regex101.com/r/P85Luy/1 |
code $PROFILE
Import-Module oh-my-posh
Set-PoshPrompt -Theme material
Get-PoshThemes -list
material.omp.json
sqlcmd -S localhost -U SA -P 'password' | |
RESTORE DATABASE [dbname] FROM DISK='db.bkp' | |
WITH MOVE 'db' TO '/var/opt/mssql/data/db.mdf', | |
MOVE 'db_Log' TO '/var/opt/mssql/data/db_Log.ldf', | |
REPLACE, | |
STATS=10 | |
GO |