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
<?xml version="1.0" encoding="UTF-8"?> | |
<project version="4"> | |
<component name="Kotlin2JvmCompilerArguments"> | |
<option name="jvmTarget" value="1.8" /> | |
</component> | |
<component name="KotlinCommonCompilerArguments"> | |
<option name="apiVersion" value="1.2" /> | |
<option name="languageVersion" value="1.2" /> | |
</component> | |
</project> |
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
//the readline function reads data input by the user into the keyboard | |
//this is similar to the scanner class in java. | |
fun main(args :Array<String>){ | |
print("Enter a number") | |
val dataInput = readLine() | |
println() | |
print("Enter the second number") | |
val secondNumber = readLine() | |
println(dataInput) |
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
Empty file |
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
class Shape { | |
var numberOfSides = 0 | |
fun simpleDescription() = | |
"A shape with $numberOfSides sides." | |
} | |
var shape = Shape() | |
shape.numberOfSides = 7 | |
println(shape.simpleDescription()) |
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
# users/admin.py | |
from django.contrib import admin | |
from django.contrib.auth import get_user_model | |
from django.contrib.auth.admin import UserAdmin | |
from .forms import CustomUserCreationForm, CustomUserChangeForm | |
from .models import CustomUser | |
class CustomUserAdmin(UserAdmin): | |
add_form = CustomUserCreationForm |
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
import africastalking | |
username = "africa username" # use 'sandbox' for development in the test environment | |
# use your sandbox app API key for development in the test environment | |
api_key = "africa's talking api key" | |
africastalking.initialize(username, api_key) | |
# # Use the service synchronously |
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
# Stop all containers | |
docker stop `docker ps -qa` | |
# Remove all containers | |
docker rm `docker ps -qa` | |
# Remove all images | |
docker rmi -f `docker images -qa ` | |
# Remove all volumes |
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
from rest_framework.authtoken.views import ObtainAuthToken | |
class CustomAuthToken(ObtainAuthToken): | |
def post(self, request, *args, **kwargs): | |
serializer = self.serializer_class( | |
data=request.data, context={"request": request} | |
) | |
serializer.is_valid(raise_exception=True) | |
user = serializer.validated_data["user"] |
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
const axios = require('axios').default; | |
const { GAME_CONFIG } = require('./Config'); | |
const { ACCOUNT_INFO, ROOM_HAVE_BOT } = require('./Config'); | |
const { BOT_STATE } = require('./Bot'); | |
const Bot = require('./Bot'); | |
var usersAtRooms = Bot.usersAtRooms; | |
var gameConfig = null; | |
const fs = require('fs'); | |
//-------------------------------------------------------------------------------------------- |
OlderNewer