A ZSH theme optimized for people who use:
- Solarized
- Git
- Unicode-compatible fonts and terminals (I use iTerm2 + Menlo)
For Mac users, I highly recommend iTerm 2 + Solarized Dark
I have moved this over to the Tech Interview Cheat Sheet Repo and has been expanded and even has code challenges you can run and practice against!
\
SSH stands for Secure Shell. This is a cryptographic network protocol that's used for operating network services securely over an unsecured network. An SSH key is a way of connecting and authenticating yourself to networks.
Scrum is a form of agile methodology that is iterative and incremental. It focuses on approaching a project in a flexible manner as the team works towards it's goal. Scrum encourages close collaboration and constant communication from each member in the team.
axios({ | |
url: 'http://localhost:5000/static/example.pdf', | |
method: 'GET', | |
responseType: 'blob', // important | |
}).then((response) => { | |
const url = window.URL.createObjectURL(new Blob([response.data])); | |
const link = document.createElement('a'); | |
link.href = url; | |
link.setAttribute('download', 'file.pdf'); | |
document.body.appendChild(link); |
import 'package:flutter/material.dart'; | |
import 'package:http/http.dart'; | |
import 'package:web3dart/web3dart.dart'; | |
void main() { | |
runApp(MaterialApp( | |
home: EthApp(), | |
theme: ThemeData( | |
primaryColor: Colors.orange, | |
typography: Typography( |