Creating a Virtual ENV in python
create env
mkvirtualenv createdenv
using System.Threading.Tasks; | |
using Microsoft.AspNetCore.Mvc; | |
using TempConvert.Models; | |
using TempConvert.Interfaces; | |
using TempConvert.Repositories; | |
namespace TempConvert.Controllers | |
{ | |
[Route("api/[controller]")] | |
[ApiController] |
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 | |
{ |
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 | |
{ |
using System.Threading.Tasks; | |
namespace TempConvert.Interfaces | |
{ | |
[System.ServiceModel.ServiceContractAttribute( | |
Namespace="https://www.w3schools.com/xml/", | |
ConfigurationName="TempConvert.Interfaces.ITempConvert")] | |
public interface ITempConvert | |
{ |
<?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', |
mkvirtualenv createdenv
<?php | |
$msg = 'Dear {{BNAME}}, your loan of KES {{AMOUNT}} has been fully repaid.'; | |
function wrap($str) | |
{ | |
return "{{{$str}}}"; | |
} | |
function parse($msg,array $placeholders) |
# 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!") |
## 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', |