!!: Repeats the last command.!$: Last word of the previous command.!^: First argument of the previous command.!n: Repeats the nth command in your history.!-n: Repeats the command n places back in the history list.!string: Executes the most recent command starting with 'string'.
This file contains hidden or 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
| { | |
| "basics": { | |
| "name": "Mrugesh Mohapatra", | |
| "label": "Principal Cloud Architect & DevOps Leader", | |
| "website": "https://mrugesh.dev", | |
| "summary": "Principal Cloud Architect & DevOps Leader with 13+ years experience and 7+ years scaling freeCodeCamp.org infrastructure to 14M+ users with 99.99% uptime, specializing in multi-cloud architecture, IaC, and open-source project governance.", | |
| "location": { | |
| "city": "Bengaluru", | |
| "countryCode": "IN", | |
| "region": "Karnataka" |
This file contains hidden or 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
| { | |
| "basics": { | |
| "name": "Thomas Edison", | |
| "label": "Inventor and Businessman", | |
| "picture": "https://example.com/photo.jpg", | |
| "email": "thomas.edison@example.com", | |
| "phone": "(123) 456-7890", | |
| "website": "https://thomasedison.com", | |
| "summary": "Prolific inventor and businessman known for developing many devices that greatly influenced life around the world, including the phonograph, the motion picture camera, and the electric light bulb.", | |
| "location": { |
Apple Discussion: https://discussions.apple.com/thread/250720965?answerId=251575762022#251575762022 Most Active answer on StackOverflow: https://apple.stackexchange.com/questions/372025/missing-wifi-interface-after-upgrade-to-catalina?newreg=1904677ef3d840f0a87b73a2cd7bd342
- Download the modified files (thanks Alex!) and unzip > you get a folder named WiFi_kexts
- Boot into Recovery Mode: restart your computer while pressing and holding cmd-R
- Open > Utilities > Terminal via Menu Bar (detailed instructions here)
- Type
csrutil disableand hit return - Type
rebootand hit return > computer reboots normally - Open > Utilities > Terminal and enter cd and hit the space bar (don't hit return)
- Drag the folder WiFi_kexts onto the Terminal window and hit return
This file contains hidden or 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
| db.currentOp().inprog.forEach( | |
| function(op) { | |
| if(op.secs_running > 5) printjson(op); | |
| } | |
| ) |
This file contains hidden or 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
| A workflow of working with pull-requests. | |
| Following this you should be able to: | |
| - review, QA, test PRs locally | |
| - update PRs on freeCodeCamp's repository. |
This file contains hidden or 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
| function lambda_prompt_filter() | |
| clink.prompt.value = string.gsub(clink.prompt.value, "{lamb}", "λ") | |
| end | |
| --- | |
| -- Resolves closest directory location for specified directory. | |
| -- Navigates subsequently up one level and tries to find specified directory | |
| -- @param {string} path Path to directory will be checked. If not provided | |
| -- current directory will be used | |
| -- @param {string} dirname Directory name to search for |
I hereby claim:
- I am raisedadead on github.
- I am mrugesh (https://keybase.io/mrugesh) on keybase.
- I have a public key whose fingerprint is CDD0 D7EC 6F56 253A B5E0 6784 67F4 C520 0D5D A9B5
To claim this, I am signing this object:
This file contains hidden or 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
| Windows Registry Editor Version 5.00 | |
| ; Created by: Shawn Brink | |
| ; http://www.tenforums.com | |
| ; Tutorial: http://www.tenforums.com/tutorials/14312-windows-photo-viewer-restore-windows-10-a.html | |
| [HKEY_CLASSES_ROOT\Applications\photoviewer.dll\shell\open] | |
| "MuiVerb"="@photoviewer.dll,-3043" |
This file contains hidden or 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
| Fire up a PowerShell Window with admin priviledges and Execute: | |
| Get-AppxPackage *3dbuilder* | Remove-AppxPackage | |
| Get-AppxPackage *windowsalarms* | Remove-AppxPackage | |
| Get-AppxPackage *windowscalculator* | Remove-AppxPackage | |
| Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage | |
| Get-AppxPackage *windowscamera* | Remove-AppxPackage | |
| Get-AppxPackage *officehub* | Remove-AppxPackage | |
| Get-AppxPackage *skypeapp* | Remove-AppxPackage | |
| Get-AppxPackage *getstarted* | Remove-AppxPackage |