Skip to content

Instantly share code, notes, and snippets.

View Dzmuh's full-sized avatar
🙃
get crazy

Ilya Fralkou Dzmuh

🙃
get crazy
View GitHub Profile
@Dzmuh
Dzmuh / install-svnserve.cmd
Last active April 24, 2020 06:34
install-svnserve #cmd #service #windows
CLS
@echo off
echo Идет установка службы Subversion - SVN
start /wait sc create svnserve binpath= "%cd%\bin\svnserve.exe --service --root c:\svn" displayname= "Subversion" depend= tcpip start= auto
sc start svnserve
pause
EXIT
@Dzmuh
Dzmuh / gist:8122897
Last active January 1, 2016 09:09
Список штатов США. Значения представлены сокращениями которые соответствуют сокращениям принятым USPS (https://www.usps.com/) - The United States Postal Service (U.S. Postal Service)
<select>
<option value="AL">Alabama</option>
<option value="AK">Alaska</option>
<option value="AZ">Arizona</option>
<option value="AR">Arkansas</option>
<option value="CA">California</option>
<option value="CO">Colorado</option>
<option value="CT">Connecticut</option>
<option value="DE">Delaware</option>
<option value="DC">District Of Columbia</option>
@Dzmuh
Dzmuh / web.config.xml
Created December 31, 2013 14:09 — forked from kipusoep/web.config.xml
SEO ориентированные правила для модуля URL Rewrite (IIS).
<!-- SEO rules (from: http://www.seomoz.org/blog/what-every-seo-should-know-about-iis#chaining) -->
<!-- SEO | Section 1 | Whitelist -->
<rule name="Whitelist - Resources" stopProcessing="true">
<match url="^(?:css/|scripts/|images/|install/|config/|umbraco/|umbraco_client/|base/|webresource\.axd|scriptresource\.axd|__browserLink|[^/]*/arterySignalR/.*)" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
<action type="None" />
</rule>
<!-- SEO | Section 2 | Rewrites (chaining) -->
<rule name="SEO - Remove default.aspx" stopProcessing="false">
<match url="(.*?)/?default\.aspx$" />
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
using NSubstitute;
using Moq;
namespace NewTools
{
@Dzmuh
Dzmuh / dabblet.css
Created April 1, 2014 11:48 — forked from LeaVerou/dabblet.css
MathML with CSS fallback
/**
* MathML with CSS fallback
*/
math {
font-family: 'Cambria Math', Cambria, MathJax_Main,
STIXGeneral, DejaVu Serif, DejaVu Sans,
Times, Lucida Sans Unicode, OpenSymbol,
Standard Symbols L, serif;
}
@Dzmuh
Dzmuh / dabblet.css
Created April 1, 2014 14:50
MathML with CSS fallback
/**
* MathML with CSS fallback
*/
math {
font-family: 'Cambria Math', Cambria, MathJax_Main,
STIXGeneral, DejaVu Serif, DejaVu Sans,
Times, Lucida Sans Unicode, OpenSymbol,
Standard Symbols L, serif;
}
# From Brad Wilson
dir -r | %{ [System.IO.Path]::GetExtension($_) } | sort | group
Download the following ZIPs:
ARM Translation Installer v1.1 (http://www.mirrorcreator.com/files/0ZIO8PME/Genymotion-ARM-Translation_v1.1.zip_links)
Download the correct GApps for your Android version:
Google Apps for Android 5.0 (https://www.androidfilehost.com/?fid=95784891001614559 - gapps-lp-20141109-signed.zip)
Google Apps for Android 4.4.4 (https://www.androidfilehost.com/?fid=23501681358544845 - gapps-kk-20140606-signed.zip)
Google Apps for Android 4.3 (https://www.androidfilehost.com/?fid=23060877490000124 - gapps-jb-20130813-signed.zip)
Google Apps for Android 4.2 (https://www.androidfilehost.com/?fid=23060877490000128 - gapps-jb-20130812-signed.zip)
Google Apps for Android 4.1 (https://www.androidfilehost.com/?fid=22979706399755082 - gapps-jb-20121011-signed.zip)
@Dzmuh
Dzmuh / gulpfile-image-resize-one.js
Last active June 2, 2023 12:53
gulp-image-resize #gulp
// Если редактор показывает сообщение о ошибке в данном файле, выствите совместимость с ES6.
// Внимание! В системе должен быть установлен ImageMagick.
//
var gulp = require('gulp');
var imageResize = require('gulp-image-resize');
var rename = require('gulp-rename');
gulp.task('default', ['images:resize-one-image']);
gulp.task('images:resize-one-image', function () {
@Dzmuh
Dzmuh / nginx.conf
Created March 13, 2017 02:07 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048