mkvirtualenv createdenv
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.Threading.Tasks; | |
using Microsoft.AspNetCore.Mvc; | |
using TempConvert.Models; | |
using TempConvert.Interfaces; | |
using TempConvert.Repositories; | |
namespace TempConvert.Controllers | |
{ | |
[Route("api/[controller]")] | |
[ApiController] |
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.ServiceModel; | |
using System.Threading.Tasks; | |
using System.Xml; | |
using Microsoft.Extensions.Options; | |
using TempConvert.Models; | |
using TempConvert.Interfaces; | |
namespace TempConvert.Repositories | |
{ |
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.ServiceModel; | |
using System.ServiceModel.Channels; | |
using System.ServiceModel.Description; | |
using System.Threading.Tasks; | |
using System.Xml; | |
using TempConvert.Interfaces; | |
namespace TempConvert.Clients | |
{ |
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.Threading.Tasks; | |
namespace TempConvert.Interfaces | |
{ | |
[System.ServiceModel.ServiceContractAttribute( | |
Namespace="https://www.w3schools.com/xml/", | |
ConfigurationName="TempConvert.Interfaces.ITempConvert")] | |
public interface ITempConvert | |
{ |
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
<?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', |
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
<?php | |
$msg = 'Dear {{BNAME}}, your loan of KES {{AMOUNT}} has been fully repaid.'; | |
function wrap($str) | |
{ | |
return "{{{$str}}}"; | |
} | |
function parse($msg,array $placeholders) |
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
# 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!") |
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
## 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 |
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
<?php | |
$http = new GuzzleHttp\Client; | |
$response = $http->post(url('oauth/token'), [ | |
'form_params' => [ | |
'grant_type' => 'password', | |
'client_id' => 2, | |
'client_secret' => 'SECRET_HERE', | |
'username' => '[email protected]', |
NewerOlder