- Google chrome beta
- JetBrains Mono Font
- Inconsolate Font
- Visual Studio Code
- Teamviewer
- Slack
- Notepad++:
sudo snap install notepad-plus-plus
- Intellij
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
USE master; | |
GO | |
ALTER DATABASE DATABASE_NAME | |
SET SINGLE_USER WITH ROLLBACK IMMEDIATE; | |
GO | |
ALTER DATABASE DATABASE_NAME | |
COLLATE Latin1_General_CI_AS ; | |
GO |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
KEY=<api_token_key> | |
HOST="http://localhost:3000" | |
if [ ! -d $SCRIPT_DIR/dashboards ] ; then | |
mkdir -p $SCRIPT_DIR/dashboards | |
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##https://stackoverflow.com/questions/5874317/thread-safe-listt-property | |
public class ThreadSafeList<T> : IList<T> | |
{ | |
protected List<T> _interalList = new List<T>(); | |
// Other Elements of IList implementation | |
public IEnumerator<T> GetEnumerator() | |
{ | |
return Clone().GetEnumerator(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#################################################### | |
## call CrossPluginName.IsSupported to check if it exists support for this plugin/library with net standard | |
## http://motzcod.es/post/162402194007/plugins-for-xamarin-go-dotnet-standard | |
#################################################### | |
if(!CrossGeolocator.IsSupported) | |
return; | |
var position = await CrossGeolocator.Current.GetPositionAsync(TimeSpan.FromSeconds(10)); |
- Node - a physical or virtual machine that hosts services
- Nodes also referred to as members.
- Examples
- Your computer
- An AWS EC2 instance
- A bare metal machine in your private data center
- Service - executing software that provides utility via an interface
- Typically long-lived process listening on a port(s)
- Examples
- A web server (nginx, apache, iis)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://askubuntu.com/questions/627899/nameserver-127-0-1-1-in-resolv-conf-wont-go-away | |
NetworkManager is the program which (via the resolvconf utility) inserts address 127.0.1.1 into resolv.conf. NM inserts that address if an only if it is configured to start an instance of the dnsmasq program to serve as a local forwarding nameserver. That dnsmasq instance listens for queries at address 127.0.1.1. | |
If you do not want to use a local forwarding nameserver then configure NetworkManager not to start a dnsmasq instance and not to insert that address. In /etc/NetworkManager/NetworkManager.conf comment out the line dns=dnsmasq | |
sudo nano /etc/NetworkManager/NetworkManager.conf | |
[main] | |
plugins=ifupdown,keyfile,ofono |
NewerOlder