I hereby claim:
- I am niikoo on github.
- I am niikoo (https://keybase.io/niikoo) on keybase.
- I have a public key ASDV9oK1XBM3PPXm9-yIsWw5FKaGrhh2gIEGCbbQyGYFlgo
To claim this, I am signing this object:
| var art=' :.+8.\n\ | |
| I=.$= O\n\ | |
| 7O?7D?O~I$\n\ | |
| ,+Z?+OI+:77\n\ | |
| ~Z+?OO$OO7I\n\ | |
| .IOD?=$ZZO,\n\ | |
| OI~IZ+~8=,\n\ | |
| DDDDDDDDDDDDDDDDDDDD DDDD8 8DDDDDDDDDDDDDDDDDDDDD 7Z~+Z+$7D+?\n\ | |
| DDDDDDDDDDDDDDDDDDDD8 DDDD8 8DDDDDDDDDDDDDDDDDDDDD =$II$Z~IZ+\n\ | |
| DDDD8 DDDDD DDDD8 DDDDD ?$:==:~$O\n\ |
| /** | |
| * Created by leo6104 (github.com/leo6104) | |
| * You can use this nodejs script on angular v5/v4/v2 project. | |
| * 1. Place this gist file `ng-update-v6.js` to angular project's root path | |
| * 2. use command `node ng-update-v6.js .angular-cli.json` | |
| * 3. check angular.json file (created by ng-update-v6.js) | |
| **/ | |
| const fs = require('fs'); | |
| const path = require('path'); |
| #!/bin/bash | |
| while : | |
| do | |
| clear | |
| git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
| sleep 1 | |
| done |
| namespace Extensions { | |
| public static class GenericExtensions | |
| { | |
| /// <summary> | |
| /// Check if class inherits a raw generic type, i.e. IEnumerable<> | |
| /// </summary> | |
| /// <param name="generic"></param> | |
| /// <param name="toCheck"></param> | |
| /// <returns></returns> | |
| public static bool IsSubClassOfRawGeneric(this Type toCheck, Type generic, bool checkInterfaces = true) |
| #!/system/bin/sh | |
| if [ "$#" -ne 1 ]; then | |
| echo "Illegal number of parameters, should be 1 (Matching profile dir inside the Bluetooth V4A folder in the internal storage" | |
| exit 1 | |
| fi | |
| if [ "$(whoami)" -ne "root" ] | |
| then | |
| echo "Must be run with root privileges" | |
| exit 1 |
| @ECHO OFF | |
| TITLE MOVE AND RELINK V2.2 BY NIIKOO | |
| ECHO. | |
| ECHO ============================== | |
| ECHO Move and relink v2.2 by niikoo | |
| ECHO ============================== | |
| SET src="%~2" | |
| ECHO SOURCE: %src% | |
| SET dst="%~1%src:~3,-1%" | |
| ECHO DESTINATION: %dst% |
| This Gist confirms the Linked Identity in my OpenPGP key, and links it to this GitHub account. | |
| Token for proof: | |
| [Verifying my OpenPGP key: openpgp4fpr:691efd302f82dc4639a13829d3765c50a817d48b] |
I hereby claim:
To claim this, I am signing this object:
| # FOR VSCode # | |
| From multi-line package references, to single line: | |
| <PackageReference Include="(.+?)">\n\s+?<Version>(.+?)</Version>\n\s+?</PackageReference>/<PackageReference Include="(.+?)">\n\s+?<Version>(.+?)</Version>\n\s+?</PackageReference>/ | |
| <PackageReference Include="$1" Version="$2" /> | |
| ((raw) => { | |
| if(raw == null || raw === '') throw new Error('No data provided'); | |
| let data = raw.split(';'); | |
| if(data.length === 1) { | |
| data = raw.split(','); | |
| } | |
| if(data.length < 1) { | |
| throw new Error('No words to add...'); | |
| } | |
| if(!confirm(`Are you sure you want to add '${data[0]}' and ${data.length - 1} other words?`)) |