Skip to content

Instantly share code, notes, and snippets.

View ComFreek's full-sized avatar
💭
I may be slow to respond.

ComFreek ComFreek

💭
I may be slow to respond.
View GitHub Profile
@ComFreek
ComFreek / [email protected]
Last active May 4, 2021 16:32 — forked from lukas-zech-software/GeoCodingService.ts
TypeScript Definitions for official GoogleMaps API for Node.js (https://github.com/googlemaps/google-maps-services-js)
@ComFreek
ComFreek / Use-SSH-Keys-Comfortably-on-Windows.md
Last active October 22, 2023 09:03
Windows: Using SSH keys comfortably with Git, SVN, and remote servers

Windows: Using SSH keys comfortably with Git, SVN, and remote servers

also works for Git Bash and Cygwin users on Windows

  1. Be sure to have a recent version of Windows 10 (>= Windows 10 1809)

  2. Activate Microsoft's official OpenSSH feature

  3. Install

@ComFreek
ComFreek / How to use IO.js (with NPM and other tools relying on 'node' in PATH)
Created February 27, 2015 17:45
How to use IO.js (with NPM and other tools relying on 'node' in PATH)
1. Download `start-iojs-ps.bat` and put it in your project folder.
2. Download [IO.js](https://iojs.org/en/index.html) and put `iojs.exe` and `iojs.lib` into `[your-project-folder]/iojs`.
3. Rename `iojs.exe` to `node.exe`.
4. Whenever you want to use IO.js in a command line, simply start `start-iojs-ps.bat` by double-clicking it in Explorer.
@ComFreek
ComFreek / automail Notifier for Chocolatey package maintainers.md
Last active August 29, 2015 14:15
automail Notifier for Chocolatey package maintainers

What is this?

The audience is intended to be Chocolatey package maintainers who employ automatic packages with Ketarin. (Not already using automatic packages? Better start now!)

Such package mainatainers might wish to be informed when an application gets updated and/or pushed to Chocolatey in response to Ketarin's update procedure. The two scripts contained in this Gist accommodate that request.

How to use

  1. Download this Gist.
  2. Open Ketarin
@ComFreek
ComFreek / Useful Windows commands.md
Last active July 14, 2018 17:58
Useful Windows commands

Useful Windows commands

Repair Windows

  • Windows < 8: sfc /scannow
  • Windows >= 8: DISM /Online /Cleanup-Image /RestoreHealth (requires an Internet connection)

Repair a NTFS formatted hard drive

chkdsk C: /F /R

@ComFreek
ComFreek / How to use an older Node on a per-project basis
Last active August 29, 2015 14:15
How to use an older Node.js version on a per-project basis
How to use an older Node.js version on a per-project basis
@ComFreek
ComFreek / [Excel_VBA] Count occurrences of a range and list them
Last active October 28, 2020 17:51
[Excel/VBA] Count occurrences of a range and list them
German description of how to use the scripts: https://www.tutorials.de/threads/tabelleninhalt-nach-wert-summieren.399561/#post-2063424
The "Microsoft Scripting Runtime" must be added as a reference in Visual Basic when using the scripts.
@ComFreek
ComFreek / Bookmarklet: Show HTML tags occurrences
Last active August 29, 2015 14:04
Bookmarklet: Show HTML tags occurrences
Bookmarklet: Show HTML tags occurrences
Tested with:
- Google Chrome
- Mozilla Firefox
Does not work with (yet): IE 11
License: MIT
Author: ComFreek
@ComFreek
ComFreek / lo-dash-indexOfDeep.js
Created July 1, 2014 19:49
Lo-Dash indexOf with deep equality check
function indexOfDeep(arr, needle) {
return _.findIndex(arr,function (entry) {
return _.isEqual(entry, needle);
});
}