Skip to content

Instantly share code, notes, and snippets.

View chelosilvero78's full-sized avatar

Marcelo Silvero chelosilvero78

  • freelance
  • Asunción-Paraguay
View GitHub Profile
@chelosilvero78
chelosilvero78 / RemoveWin10DefaultApps.ps1
Created June 17, 2021 10:03 — forked from tkrotoff/RemoveWin10DefaultApps.ps1
Remove Windows 10 default apps
# See Remove default Apps from Windows 10 https://thomas.vanhoutte.be/miniblog/delete-windows-10-apps/
# See Debloat Windows 10 https://github.com/W4RH4WK/Debloat-Windows-10
# Command line to list all packages: Get-AppxPackage -AllUsers | Select Name, PackageFullName
Get-AppxPackage Microsoft.Windows.ParentalControls | Remove-AppxPackage
Get-AppxPackage Windows.ContactSupport | Remove-AppxPackage
Get-AppxPackage Microsoft.Xbox* | Remove-AppxPackage
Get-AppxPackage microsoft.windowscommunicationsapps | Remove-AppxPackage # Mail and Calendar
#Get-AppxPackage Microsoft.Windows.Photos | Remove-AppxPackage
Get-AppxPackage Microsoft.WindowsCamera | Remove-AppxPackage

React Introduction: https://bit.ly/3cM7Acj

Setup

WIFI: Penguine House

Password: Penguin2019

  1. Have a recent version of node installed or download it now from nodejs
@chelosilvero78
chelosilvero78 / find.lodash.js
Created November 6, 2019 13:31 — forked from vldvel/find.lodash.js
find lodash
/**
* Main function
*/
function find(collection, predicate, fromIndex) {
let iteratee
const iterable = Object(collection)
if (!isArrayLike(collection)) {
collection = keys(collection)
iteratee = (key) => predicate(iterable[key], key, iterable)
@chelosilvero78
chelosilvero78 / ImageTools.js
Created September 25, 2019 16:25 — forked from SagiMedina/ImageTools.js
Resize and crop images in the Browser with orientation fix using exif
import EXIF from 'exif-js';
const hasBlobConstructor = typeof (Blob) !== 'undefined' && (function checkBlobConstructor() {
try {
return Boolean(new Blob());
} catch (error) {
return false;
}
}());