ЕИК | Име на фирма [състояние] | дял |
---|---|---|
202582245 | Куизенс ООД [заличена] | 80 лв. |
202726418 | Грувит ООД [заличена] | 80 лв. |
202724560 | Волофай ООД [заличена] | 80 лв. |
202270847 | Юлимпикс ООД [активна] | 140 лв. |
202727922 | Хангрио ООД [заличена] | 80 лв. |
202739821 | Бииклауд ООД [активна] | 140 лв. |
202727192 | Паруди ООД [заличена] | 140 лв. |
202724335 | Дейта Крафт енд Меджик ООД [активна] | 140 лв. |
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
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel.DataAnnotations; | |
using System.Net; | |
using System.Net.Http; | |
using System.Text.Json; | |
using System.Text.Json.Serialization; | |
using Microsoft.Extensions.Configuration; |
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
using System; | |
using System.Linq; | |
using System.Collections.Generic; | |
using System.Text; | |
namespace ExpressionEvaluator | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
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
namespace SimpleHttpServer | |
{ | |
using System; | |
using System.Net; | |
using System.Net.Sockets; | |
using System.Text; | |
public static class Program | |
{ | |
public static void Main(string[] args) |
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
namespace DotaLeaderboardsUpdates | |
{ | |
using System; | |
using System.Linq; | |
using System.Net.Http; | |
using System.Text; | |
using System.Threading; | |
using Newtonsoft.Json; |
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
private readonly IViewRenderService viewRenderService; | |
private readonly IHtmlToPdfConverter htmlToPdfConverter; | |
private readonly IHostingEnvironment environment; | |
public DashboardController( | |
IViewRenderService viewRenderService, | |
IHtmlToPdfConverter htmlToPdfConverter, | |
IHostingEnvironment environment) | |
{ | |
this.viewRenderService = viewRenderService; |
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
using System; | |
using System.Diagnostics; | |
using System.IO; | |
public interface IHtmlToPdfConverter | |
{ | |
byte[] Convert(string basePath, string htmlCode, FormatType formatType, OrientationType orientationType); | |
} | |
public class HtmlToPdfConverter : IHtmlToPdfConverter |
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 strict"; | |
var page = require('webpage').create(), | |
system = require('system'), | |
address, | |
output; | |
console.log('Usage: rasterize.js [URL] [filename] [paperformat] [orientation]'); | |
address = system.args[1]; | |
output = system.args[2]; |
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
using System; | |
using System.IO; | |
using System.Threading.Tasks; | |
using Microsoft.AspNetCore.Http; | |
using Microsoft.AspNetCore.Mvc; | |
using Microsoft.AspNetCore.Mvc.Abstractions; | |
using Microsoft.AspNetCore.Mvc.ModelBinding; | |
using Microsoft.AspNetCore.Mvc.Razor; | |
using Microsoft.AspNetCore.Mvc.Rendering; |
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
namespace LinearRegression | |
{ | |
using System; | |
using System.Diagnostics; | |
public static class Program | |
{ | |
public static void Main() | |
{ | |
var xValues = new double[] |
NewerOlder