Skip to content

Instantly share code, notes, and snippets.

View SergXIIIth's full-sized avatar

Sergey Makridenkov SergXIIIth

View GitHub Profile
class Object
def blank?
self.nil?
end
def present?
!blank?
end
end
@SergXIIIth
SergXIIIth / task_1.cc
Last active August 29, 2015 13:57
Lab_1
#include <iostream>
#include <conio.h> // В этой библиотеке "живет" - getch();
/*
Исходные данные
---------------
Сумма вклада
Срок вклада, в месяцах
*/
@SergXIIIth
SergXIIIth / task_1.cc
Last active August 29, 2015 13:57
Lab_2
#include <iostream>
#include <conio.h>
using namespace std;
int main()
{
int period, interest;
float interest_in_period, amount, income;
@SergXIIIth
SergXIIIth / header.sass
Created September 13, 2014 05:19
Sass with @extend - no additional class in HTML
.header
@extend .container
.brand
float: left
span
+text-hide
.links
<object id="videoplayer354" type="application/x-shockwave-flash" data="http://localhost:3000/player/uppod.swf" width="500" height="375">
<param name="bgcolor" value="#3333" />
<param name="allowFullScreen" value="true" />
<param name="allowScriptAccess" value="always" />
<param name="movie" value="http://localhost:3000/player/uppod.swf" />
<param name="flashvars" value="comment=Video&amp;st=http://localhost:3000/player/st/video205-524.txt&amp;file=http://localhost:3000/video.mp4" />
</object>
@SergXIIIth
SergXIIIth / gist:862396
Created March 9, 2011 15:32
live search
search = () ->
textboxs = $(".live_filter").add $("[data-live-cnt]")
textboxs.keyup ->
textbox = $(this)
cnt = textbox.attr("data-live-cnt")
cnt = "" unless cnt?
pattern = $.trim textbox.val()
@SergXIIIth
SergXIIIth / gist:862391
Created March 9, 2011 15:27
js help functions
window.log = (obj) -> if window.console then window.console.log(obj)
// usage
// var x = 42;
// var map = function (x) { return eval(x); };
// alert(f("x $x", map));
window.f = function (s, map) {
return s.replace(/\$(\w+)/g, function (dummy, v) { return map(v);} );
};
@SergXIIIth
SergXIIIth / gist:882923
Created March 23, 2011 10:37
c# cool string extend
public static class StringExtentions
{
// example "Controls_Admin_AdminDocument_EditDocumentList load IsPostBack={0}".debug(IsPostBack);
public static void debug(this string str, params object[] args)
{
var args_json = args.Select(a => a.json()).ToArray();
Console.WriteLine("********************************");
Console.WriteLine(str.f(args_json));
Console.WriteLine("********************************");
@SergXIIIth
SergXIIIth / AspMvcViewToString.cs
Created March 23, 2011 14:32
asp mvc view to string
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Web.Mvc;
using System.Web.Mvc.Html;
using System.Web;
using System.IO;
namespace Msa.Common
@SergXIIIth
SergXIIIth / gist:1004230
Created June 2, 2011 10:39
Mongo gridfg upload test
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NUnit.Framework;
using MongoDB.Driver;
using System.Web.Mvc;
using System.IO;
using MongoDB.Driver.GridFS;