Skip to content

Instantly share code, notes, and snippets.

View ioslocaleidentifiers.csv
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
mr Marathi
bs Bosnian
ee_TG Ewe (Togo)
ms Malay
kam_KE Kamba (Kenya)
mt Maltese
ha Hausa
es_HN Spanish (Honduras)
ml_IN Malayalam (India)
ro_MD Romanian (Moldova)
View gist:e08be55a9ad0a8c73c4d48d6ecffd660
This file has been truncated, but you can view the full file.
global option -l with value `log.txt'
global option -c with value `Simucube2HECubeSQG29.xml'
controller #1: option -p with value `COM4'
now reading arguments for controller #2
subpos flag is set
force_updates flag is set
auto-grab flag is set
GIMX 8.0 x86_64
Windows 10 (or later) x64
@debjdas
debjdas / PY0101EN-3-2-Loops.ipynb
Created Jan 30, 2021
Created on Skills Network Labs
View PY0101EN-3-2-Loops.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ashb1
ashb1 / docker-compose.yml
Created Jan 30, 2021
Laravel docker-compose.yml with nginx / php-fpm / database
View docker-compose.yml
version: "2"
services:
database:
image: mariadb
environment:
- MYSQL_ALLOW_EMPTY_PASSWORD=1
- MYSQL_DATABASE=application
- MYSQL_USER=root
- MYSQL_PASSWORD=
View pipeline-challenge.php
<?php
function make_pipeline(...$funcs)
{
return function($arg) use ($funcs)
{
foreach ($funcs as $func) {
$arg = $func($arg);
}
View DB0201EN-Week4-2-2-PeerAssign-v5-py.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@zeux
zeux / clang27.md
Created Jan 30, 2021
How does clang 2.7 hold up in 2020?
View clang27.md

A friend recently learned about Proebsting's law and mentioned it to me off hand. I knew about the laws existence but I never really asked myself - do I believe in it?

For people who aren't aware, Proebsting's law states:

Compiler Advances Double Computing Power Every 18 Years

Let's test this

It occurred to me that I could try to do an experiment.

@cortes-gerardo
cortes-gerardo / md
Created Jan 30, 2021
README template
View md
# Project Title
## Description
please describe the purpose of the project, why it adds value to the business, and the terminology the user will find (usually associated with the main classes).
![screenshot](img/screenshot)
## Contributing
- [How to contribute](CONTRIBUTING.md)
---
@bhupendra212
bhupendra212 / RGB_LED_Firebase.ino
Created Jan 30, 2021
Connecting Arduino piece of code to Firebase Realtime Database
View RGB_LED_Firebase.ino
#include <ESP8266WiFi.h>
#include <FirebaseArduino.h>
// Setting firebase configuration.
#define FIREBASE_HOST "arduino-19b69.firebaseio.com"
#define FIREBASE_AUTH "EEzjM9REddlieBAS5E5FlG1em3pM1dxZX1Wg37Hv"
// WiFi connection details
#define WIFI_SSID "A 501"
#define WIFI_PASSWORD "Saurabh@12may"
// Setting RGB pin output
#define LED D0