Skip to content

Instantly share code, notes, and snippets.

View NimzyMaina's full-sized avatar

Nimrod Maina NimzyMaina

View GitHub Profile
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using TempConvert.Models;
using TempConvert.Interfaces;
using TempConvert.Repositories;
namespace TempConvert.Controllers
{
[Route("api/[controller]")]
[ApiController]
@NimzyMaina
NimzyMaina / TempConvertRepository.cs
Created June 8, 2020 10:38
Temp Convert Repository
using System;
using System.ServiceModel;
using System.Threading.Tasks;
using System.Xml;
using Microsoft.Extensions.Options;
using TempConvert.Models;
using TempConvert.Interfaces;
namespace TempConvert.Repositories
{
@NimzyMaina
NimzyMaina / TempConvertClient.cs
Created June 8, 2020 10:19
Temp Convert Client Class
using System;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.ServiceModel.Description;
using System.Threading.Tasks;
using System.Xml;
using TempConvert.Interfaces;
namespace TempConvert.Clients
{
@NimzyMaina
NimzyMaina / ITempConvert.cs
Last active June 8, 2020 10:13
Consuming WSDL Services Using ASP.NET Core
using System.Threading.Tasks;
namespace TempConvert.Interfaces
{
[System.ServiceModel.ServiceContractAttribute(
Namespace="https://www.w3schools.com/xml/",
ConfigurationName="TempConvert.Interfaces.ITempConvert")]
public interface ITempConvert
{
@NimzyMaina
NimzyMaina / service_providerV2.php
Last active February 7, 2020 11:57
New and improved way to Identify Kenyan Phone Number Service provider
<?php
// Gotten from https://en.wikipedia.org/wiki/Telephone_numbers_in_Kenya#Mobile_phone_numbers
$providers = [
'100' => 'Airtel',
'101' => 'Airtel',
'102' => 'Airtel',
'110' => 'Safaricom',
'111' => 'Safaricom',
'701' => 'Safaricom',
@NimzyMaina
NimzyMaina / virtual-env.md
Last active December 7, 2019 16:51
Creating a python virtual env with wrapper

Creating a Virtual ENV in python

create env

mkvirtualenv createdenv

set project dir

@NimzyMaina
NimzyMaina / sms_placeholder_parser.php
Last active December 6, 2019 15:03
How to replace place holders in an SMS template in PHP
<?php
$msg = 'Dear {{BNAME}}, your loan of KES {{AMOUNT}} has been fully repaid.';
function wrap($str)
{
return "{{{$str}}}";
}
function parse($msg,array $placeholders)
@NimzyMaina
NimzyMaina / decorators.py
Created September 19, 2019 11:40
How to create decorators in python
# A decorator is just a function that gets called before another function
import functools # function tools
def my_decorator(f):
@functools.wraps(f)
def function_that_runs_f():
print("Hello!")
f()
print("After!")
@NimzyMaina
NimzyMaina / virtual.sh
Created September 2, 2019 07:11
Virtual Env Commands
## Make virtual ENV
mkvirtualenv test
## Make virtual ENV in current DIR
mkvirtualenv -a $(pwd) test
## Make virtual ENV with Python version
mkvirtualenv -a $(pwd) python=python3 test
## Set project dir
<?php
$http = new GuzzleHttp\Client;
$response = $http->post(url('oauth/token'), [
'form_params' => [
'grant_type' => 'password',
'client_id' => 2,
'client_secret' => 'SECRET_HERE',
'username' => 'user@example.com',