Skip to content

Instantly share code, notes, and snippets.

View davutg's full-sized avatar
🎯
Focusing

Davut GÜRBÜZ davutg

🎯
Focusing
View GitHub Profile
@webprofusion-chrisc
webprofusion-chrisc / launch.json
Last active May 13, 2018 21:40
Debugging an Ionic 2 app using Visual Studio Code
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach Ionic 2 App with sourcemaps",
"type": "chrome",
"request": "attach",
"port": 9222,
"sourceMaps": true,
"url": "http://localhost:8100/"
@DanDiplo
DanDiplo / JS-LINQ.js
Last active November 27, 2024 07:48
JavaScript equivalents of some common C# LINQ methods. To help me remember!
// JS array equivalents to C# LINQ methods - by Dan B.
// First: This version using older JavaScript notation for universal browser support (scroll down for ES6 version):
// Here's a simple array of "person" objects
var people = [
{ name: "John", age: 20 },
{ name: "Mary", age: 35 },
{ name: "Arthur", age: 78 },
{ name: "Mike", age: 27 },