Skip to content

Instantly share code, notes, and snippets.

@sisteamnik
sisteamnik / Form1.cs
Created February 27, 2017 13:31
C# form background gradient and dragable framless window
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
using System.Runtime.InteropServices;
namespace WindowsFormsApplication3
{
public partial class Form1 : Form
@sisteamnik
sisteamnik / gosubstring
Created December 1, 2014 08:52
Golang substring for multi byte characters
//simple substring algorithm for multi byte characters written in golang
//try it http://play.golang.org/p/whbzj3VgSG
package main
import (
"fmt"
"strings"
)
func main() {
@sisteamnik
sisteamnik / remove-whitespices
Created November 25, 2014 21:06
Greedy algorithm for removing whitespaces from text
package main
import (
"github.com/sisteamnik/GoOse"
"io/ioutil"
"regexp"
"strings"
)
var u = "http://www.itnews.com/drives/86430/want-100tb-disk-drive-youll-have-wait-til-2025"