View material.module.ts
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
import { NgModule } from '@angular/core'; | |
import { CommonModule } from '@angular/common'; | |
// Material Form Controls | |
import { MatAutocompleteModule } from '@angular/material/autocomplete'; | |
import { MatCheckboxModule } from '@angular/material/checkbox'; | |
import { MatDatepickerModule } from '@angular/material/datepicker'; | |
import { MatNativeDateModule } from '@angular/material/core'; | |
import { MatFormFieldModule } from '@angular/material/form-field'; | |
import { MatInputModule } from '@angular/material/input'; | |
import { MatRadioModule } from '@angular/material/radio'; |
View gist:84b1277f69307756c04224aabc4538e8
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
signingConfigs { | |
release { | |
keyAlias keystoreProperties['keyAlias'] | |
keyPassword keystoreProperties['keyPassword'] | |
storeFile file(keystoreProperties['storeFile']) | |
storePassword keystoreProperties['storePassword'] | |
} | |
} | |
View build_mysql.sh
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
https://programmersought.com/article/99584829847/ | |
# Crontab | |
@reboot /usr/local/php52/sbin/php-fpm start | |
#!/bin/bash | |
# Run as root | |
yum install make | |
yum install readline-devel | |
yum install ncurses-devel |
View my_flutter
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
import 'package:cubit/cubit.dart'; | |
import 'package:equatable/equatable.dart'; | |
import 'package:my_flutter/src/commons/constants.dart'; | |
import 'package:my_flutter/src/utils/StringValidator.dart'; | |
import 'package:shared_preferences/shared_preferences.dart'; | |
part 'login_state.dart'; | |
class LoginCubit extends Cubit<LoginState> { | |
LoginCubit() : super(LoginInitial()); |
View iOS Golf
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
if self.navigationItem.rightBarButtonItem?.title == "Edit" { | |
self.navigationItem.rightBarButtonItem?.title = "Done" | |
self.mTableView.setEditing(true, animated: true) | |
}else { | |
self.navigationItem.rightBarButtonItem?.title = "Edit" | |
self.mTableView.setEditing(false, animated: true) | |
} |
View UXUI
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
https://drive.google.com/file/d/1qBpdAyHuUUXPFuyINESqx3aOhyXNZJ1M/view?usp=sharing |
View POSPOS
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
https://zoom.us/j/535327910?pwd=OWh2MExEaXFCTVkzY0EvdUZmM3NhQT09 | |
HPRT Driver : https://drive.google.com/open?id=1JTtKKxRYTcW4TWsbys0bgVlwABjlOg0X | |
POSPOS Wallpaper : https://drive.google.com/file/d/1F7yJuCJj4Nd8VmUEcYuTRbnV8BMvEzgh/view?usp=sharing |
View JDK 11
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
https://drive.google.com/open?id=1zzAl9LEibKaCvnQE5BHHPlaPMj4tSupN |
View lek_codemobiles.txt
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
docker run -p 3000:3000 -v [..]:/usr/src/app/upload [0012e2430b33] | |
docker run --rm -p 3000:3000 -v /Training/ReactNative/Reative_Dist/yourworkshops/YourAuthenDemo/docker_demo/upload:/usr/src/app/upload 0012e2430b33 | |
docker pull chaiyasitt/rn_upload:dev | |
#Xamarin |
View uninstall .net core sdk
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
https://github.com/dotnet/cli/blob/rel/1.0.0/scripts/obtain/uninstall/dotnet-uninstall-pkgs.sh |