Skip to content

Instantly share code, notes, and snippets.

@schmich
schmich / virtualbox.md
Last active September 26, 2018 18:08
VirtualBox/CentOS setup

Setup host-only networking

This creates a dedicated network between the host and guest, allowing you to SSH and use other network services without the need of an external router.

  • In VirtualBox, edit VM settings and add a second host-only network adapter
  • Log into the guest VM
  • Run ifconfig, note the new adapter's interface name (like enp0s8)
  • Run nmtui
    • Edit a connection > Add > Ethernet
  • Profile name: Host-only Adapter
@gunnarx
gunnarx / gist:527fbc385a2e76f89609d837b6447f85
Last active December 3, 2024 07:45
Docker to Virtualbox
@SvenAelterman
SvenAelterman / Configure-Sql2017RS.ps1
Last active September 18, 2024 06:09
PowerShell script to configure SQL Server 2017 Reporting Services
<#
#>
function Get-ConfigSet()
{
return Get-WmiObject –namespace "root\Microsoft\SqlServer\ReportServer\RS_SSRS\v14\Admin" `
-class MSReportServer_ConfigurationSetting -ComputerName localhost
}
# Allow importing of sqlps module
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Force
@timvisee
timvisee / falsehoods-programming-time-list.md
Last active April 2, 2025 09:44
Falsehoods programmers believe about time, in a single list

Falsehoods programmers believe about time

This is a compiled list of falsehoods programmers tend to believe about working with time.

Don't re-invent a date time library yourself. If you think you understand everything about time, you're probably doing it wrong.

Falsehoods

  • There are always 24 hours in a day.
  • February is always 28 days long.
  • Any 24-hour period will always begin and end in the same day (or week, or month).
@Fidouda
Fidouda / SqlExceptionCreator
Last active November 28, 2018 01:33 — forked from benjanderson/SqlExceptionCreator
Creates SqlException through reflection and sets ErrorMessage and ErrorCode. Be aware this reflects private functionality which is likely to change, do not use this in production code
using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
using System.Runtime.Serialization;
using System.Data.SqlClient;
public static class SqlExceptionCreator
{
public static SqlException Create(string message, int errorCode)
@eqhmcow
eqhmcow / README
Last active July 9, 2022 12:54 — forked from anonymous/README
docker wrapper
slightly-less-insecure-docker
wrapper around docker that perhaps makes it slightly less insecure
example usage:
DOCKER=/path/to/docker-wrapper
sudo $DOCKER run -it -v /etc/passwd:/etc/passwd -v /tmp:/tmp ubuntu
NOTE:
@dentechy
dentechy / WSL-ssh-server.md
Last active October 8, 2024 10:48
A step by step tutorial on how to automatically start ssh server on boot on the Windows Subsystem for Linux

How to automatically start ssh server on boot on Windows Subsystem for Linux

Microsoft partnered with Canonical to create Bash on Ubuntu on Windows, running through a technology called the Windows Subsystem for Linux. Below are instructions on how to set up the ssh server to run automatically at boot.

  1. Edit the /etc/ssh/sshd_config file by running the command sudo vi /etc/ssh/sshd_config and do the following
    1. Change Port to 2222 (or any other port above 1000)
    2. Change PasswordAuthentication to yes. This can be changed back to no if ssh keys are setup.
  2. Restart the ssh server:
    • sudo service ssh --full-restart
  3. With this setup, the ssh server must be turned on every time you run Bash on Ubuntu on Windows, as by default it is off. Use this command to turn it on:
@mishrsud
mishrsud / CsProjUpdater
Created October 22, 2017 11:47
Modify Csproj Programmatically
// Add Refernce to Microsoft.Build.BuildEngine
// SO: https://stackoverflow.com/a/8492560/190476
using Microsoft.Build.BuildEngine;
namespace UpdateVsProjects
{
class Program
{
static void Main(string[] args)
{
@480
480 / gist:3b41f449686a089f34edb45d00672f28
Last active January 23, 2025 16:11
MacOS X + oh my zsh + powerline fonts + visual studio code terminal settings

MacOS X + oh my zsh + powerline fonts + visual studio code (vscode) terminal settings

Thank you everybody, Your comments makes it better

Install oh my zsh

http://ohmyz.sh/

sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
@markwhitaker
markwhitaker / MimeTypes.cs
Last active December 29, 2023 16:42
Standard MIME type constants ready to use in a C# project. Now a NuGet package: see https://github.com/markwhitaker/MimeTypes.NET
public static class MimeTypes
{
public static class Application
{
public const string AtomXml = "application/atom+xml";
public const string AtomcatXml = "application/atomcat+xml";
public const string Ecmascript = "application/ecmascript";
public const string JavaArchive = "application/java-archive";
public const string Javascript = "application/javascript";
public const string Json = "application/json";