Skip to content

Instantly share code, notes, and snippets.

View WuglyakBolgoink's full-sized avatar
📴
PM me if necessary

Elderov Ali WuglyakBolgoink

📴
PM me if necessary
  • Munich
  • 09:59 (UTC +01:00)
View GitHub Profile
@WuglyakBolgoink
WuglyakBolgoink / generate_android_signing_certificate.js
Created April 14, 2020 08:48
Generate Android Signing Certificates
#!/usr/bin/env node
'use strict';
// ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
// Script to create android signing keys
// ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- --
// Dependencies:
// - pwgen (PWGen is a professional password generator capable of creating large amounts of cryptographically-secure passwords)
// - keytool (The keytool command stores the keys and certificates in a keystore)
@WuglyakBolgoink
WuglyakBolgoink / .babelrc
Last active December 15, 2021 09:50
angularJS karma config with puppeteer
{
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
],
"plugins": [
@WuglyakBolgoink
WuglyakBolgoink / README.md
Created December 7, 2021 09:01
Stream/Podcast setup in home-office
@WuglyakBolgoink
WuglyakBolgoink / .babelrc
Last active July 6, 2021 11:40
Add babel to "old" angularJS project
{
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
],
"plugins": [
@WuglyakBolgoink
WuglyakBolgoink / index.html
Created May 14, 2021 18:44
Angularjs infiniteScroll directive
<!-- displayLimit:number - how much element pro chunk should be show -->
<!-- displayMoreItems() - will be triggered if user scrollet until end of last chunk element-->
<ul infinite-scroll="$ctrl.displayMoreItems()">
<li data-ng-repeat="item in $ctrl.filteredItems | limitTo: $ctrl.displayLimit track by $index">
...
</li>
</ul>
code --install-extension Angular.ng-template
code --install-extension Compulim.vscode-express
code --install-extension EditorConfig.EditorConfig
code --install-extension SimonTest.simontest
code --install-extension Zignd.html-css-class-completion
code --install-extension alefragnani.project-manager
code --install-extension andys8.jest-snippets
code --install-extension burkeholland.simple-react-snippets
code --install-extension capaj.vscode-exports-autocomplete
code --install-extension ChakrounAnas.turbo-console-log
@WuglyakBolgoink
WuglyakBolgoink / ngrx_store_setup.md
Last active July 31, 2020 18:40
ngrx@9.2.0 store setup
  1. open https://ngrx.io/docs

  2. install packages

npm install @ngrx/store --save
npm install @ngrx/store-devtools --save
npm install @ngrx/effects --save
npm install @ngrx/entity --save
npm install @ngrx/schematics --save-dev
@WuglyakBolgoink
WuglyakBolgoink / app_list.json
Created July 15, 2020 16:50 — forked from karandpr/app_list.json
Root Apps List
[
"com.noshufou.android.su",
"com.noshufou.android.su.elite",
"eu.chainfire.supersu",
"com.koushikdutta.superuser",
"com.thirdparty.superuser",
"com.yellowes.su",
"com.topjohnwu.magisk",
"com.kingroot.kinguser",
"com.kingo.root",
@WuglyakBolgoink
WuglyakBolgoink / .bash_aliases
Created October 3, 2019 11:53
Cordova aliases to upgrade platform and plugins
# -----------------------------------------
# Alias "coupplat" = cordova upgrade platfrom
# -----------------------------------------
# Usage: coupplat <platform_name> <version>
# $ coupplat android 8.1.1
# $ coupplat ios 4.0.0
#
# Todo's:
# - add check if this is cordova project/folder
alias coupplat='function _cordovaUpgradePlatform(){ echo "Platform: $1"; echo "Version: $2"; pwd; cordova platform rm "cordova-$1" --save; cordova platform add "cordova-$1@$2" --save;};_cordovaUpgradePlatform'
@WuglyakBolgoink
WuglyakBolgoink / cleanNodeModules.js
Created April 3, 2019 16:58
Clean node_modules to minimize CI Caching/Artifacts
/**
* TODO:
* 1) remove all ".idea" folders!
* 2) remove all "coverage" folders!
* 3) remove all empty folders!
* 4) remove all "examples" folders!
* 5) remove all "example" folders!
* 6) remove all "test" folders!
* 7) remove all "tests" folders!
* 8) remove all "*.md" files extly with names!