Skip to content

Instantly share code, notes, and snippets.

View HASPIMA's full-sized avatar

Harrison Pinto HASPIMA

  • Universidad Nacional de Colombia
  • Bogotá, Colombia
  • 00:27 (UTC -05:00)
  • LinkedIn in/harrison-pinto
View GitHub Profile
@SGman98
SGman98 / ns3.md
Last active December 3, 2024 02:38

NS3 + opengym manual installation

references: ns3 ns3-gym

Run the one line command or follow the step by step guide

One line command

@Myndex
Myndex / GitHubFlavoredMarkdown.md
Last active March 15, 2026 03:31 — forked from joshuapekera/markdown
GitHub Flavored Markdown Cheat Sheet
@slightfoot
slightfoot / appbar_demo.dart
Created July 2, 2018 01:50
Demonstrate how to change the AppBar from within a PageView.
import 'package:flutter/material.dart';
void main() => runApp(TestApp());
class TestApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
theme: ThemeData(
primaryColor: Colors.green[900],
@jimschubert
jimschubert / Markdown-JavaScript.markdown.js
Last active April 1, 2025 17:51
DataGrip (IntelliJ) output SQL results to Markdown
if (!String.prototype.repeat) {
// polyfill from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat
String.prototype.repeat = function(count) {
'use strict';
if (this == null) {
throw new TypeError('can\'t convert ' + this + ' to object');
}
var str = '' + this;
count = +count;
if (count != count) {
@labnol
labnol / google-apps-script.md
Last active October 1, 2025 19:50 — forked from junaidk/resources.md
How to Learn Google Apps Script

Learning Google Apps Script

Find the best resources for learning Google Apps Script, the glue that connects all Google Workspace services including Gmail, Google Drive, Calendar, Google Sheets, Forms, Maps, and more.

A good place to learn more about Google Apps Script is the official documentation available at developers.google.com. Here are other Apps Script resources that will help you get up to speed.

  1. Google Apps Script Code Samples by Amit Agarwal
  2. Google Apps Script Development - Create Google Apps Script projects locally inside VS Code - video tutorial
  3. Awesome Google Scripts by Amit Agarwal
  4. Google Developer Experts - Follow Apps Scr