Skip to content

Instantly share code, notes, and snippets.

View WuglyakBolgoink's full-sized avatar
🗣️
We are hiring developers in Germany with fluent german!!! pm me!

Elderov Ali WuglyakBolgoink

🗣️
We are hiring developers in Germany with fluent german!!! pm me!
View GitHub Profile
@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 / 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
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 / 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>
@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 / README.md
Created December 7, 2021 09:01
Stream/Podcast setup in home-office
@WuglyakBolgoink
WuglyakBolgoink / .babelrc
Last active December 15, 2021 09:50
angularJS karma config with puppeteer
{
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
],
"plugins": [
@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)