This file contains hidden or 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
120920210225150310/v2/subscription/customers{ | |
"name": "test", | |
"surname": "test", | |
"identityNumber": "11111111111", | |
"email": "[email protected]", | |
"gsmNumber": "+905346118505", | |
"billingAddress": { | |
"address": "Nidakule Göztepe, Merdivenköy Mah. Bora Sok. No:1", | |
"zipCode": "34742", | |
"contactName": "test test", |
This file contains hidden or 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
version: '3.1' | |
services: | |
mongo: | |
container_name: ertisauth_mongo | |
image: mongo | |
restart: always | |
volumes: | |
- ${HOME}/.docker/volumes/ertisauth:/data/db | |
ports: |
This file contains hidden or 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
;===SARI_KAFA.ASM==== | |
LIST P=16F628A | |
INCLUDE "P16F628A.INC" | |
__CONFIG _INTRC_OSC_NOCLKOUT & _WDT_OFF & _PWRTE_ON & _MCLRE_ON & _BODEN_OFF & _LVP_OFF & _DATA_CP_OFF & _CP_OFF | |
;----------------------------------------------------------- | |
CBLOCK 20h | |
AL,AH,BL,BH | |
ENDC | |
ORG h'00' ;Entrypoint | |
CLRF PORTB ;Reset PortB |
This file contains hidden or 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.Linq; | |
namespace Homework4 | |
{ | |
public static class Question2 | |
{ | |
public static void Run() | |
{ |
This file contains hidden or 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.Net.Http; | |
using System.Threading.Tasks; | |
using CmsMigration.LeagueAndTeamMigrationAPI.Helpers; | |
using CmsMigration.LeagueAndTeamMigrationAPI.Models.Net; | |
namespace CmsMigration.LeagueAndTeamMigrationAPI.Services | |
{ | |
public abstract class BaseRestService | |
{ | |
#region Fields |
This file contains hidden or 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.Linq | |
@using Raven.Component.Extensions.DateTimeExtensions | |
@using Raven.Core.CommonWeb | |
@using Raven.Core.CommonWeb.Helpers | |
@using Raven.Core.CommonWeb.ActionFilters.MetaTagsModels | |
@model Raven.UI.FanatikWeb.Models.ViewModels.TextNews.TextNewsDetailViewModel | |
@using Raven.Core.CommonWeb.Extensions | |
@using Raven.Data.Core.Model.Shared | |
@using Raven.UI.FanatikWeb.Helpers |
This file contains hidden or 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
public class Solution | |
{ | |
public int Reverse(int number) | |
{ | |
try | |
{ | |
int[] digitArray = GetDigitArray(number); | |
return ConvertDigitArrayToInteger(digitArray.Reverse().ToArray()); | |
} | |
catch (OverflowException) |
This file contains hidden or 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
{ | |
"matchId": 1181715, | |
"comments": [ | |
{ | |
"MatchId": 1181715, | |
"CommentaryType": 17, | |
"TeamSide": 0, | |
"Minute": 1, | |
"Commentary": "Hakemin düdüğüyle maç başlıyor.", | |
"IsDeleted": false, |
This file contains hidden or 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
{ | |
"code":75615, | |
"matchDate":"2020-04-01T20:30:00", | |
"tournamentName":"Hazırlık Karşılaşmaları", | |
"homeTeam":"FF Sodertalje", | |
"awayTeam":"", | |
"matchName":"FF Sodertalje - ", | |
"matchResultOdd":[ | |
{ | |
"id":1032223, |
This file contains hidden or 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; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Runtime.CompilerServices; | |
namespace ObssConsoleApp | |
{ | |
public static class PerfectNumber | |
{ |