Install Flutter on macOS and create cross-platform apps for Android and iOS.
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.Collections; | |
using System.Linq; | |
using UnityEngine; | |
/// <summary> | |
/// This script lets you play the live output of an input source in Unity. | |
/// It creates an AudioSource that uses 3D spatialization (Full 3D). | |
/// The intended use is to use the output from Discord or Slack | |
/// as the voice for the "other" player in a multiplayer application. | |
/// You can use VB-Cable (https://vb-audio.com/Cable/) |
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
#ifndef _MACARON_BASE64_H_ | |
#define _MACARON_BASE64_H_ | |
/** | |
* The MIT License (MIT) | |
* Copyright (c) 2016 tomykaira | |
* | |
* Permission is hereby granted, free of charge, to any person obtaining | |
* a copy of this software and associated documentation files (the | |
* "Software"), to deal in the Software without restriction, including |
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
from tkinter import Tk, Label, Button, Entry | |
def write_to_txt(rolle, ziel, nutzen): | |
string = "Als {} möchte ich {}, um {}.".format(rolle, ziel, nutzen) | |
print(string) | |
log_file = open('user_stories.txt', 'a') | |
log_file.write("{}\n".format(string)) | |
root = Tk() | |
root.title("Userstories to txt [DE]") |
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
def getCodes(url='http://orcz.com/Borderlands_Pre-Sequel:_Shift_Codes', cell=4): | |
source = requests.get(url).text | |
soup = BS(source, 'lxml') | |
table = soup.find('table') | |
redCodes = [] | |
reds = soup.findAll(style="color:red") | |
for red in reds: |
A collection of helpful git commands. This list will be expanded over time.
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.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class ObjectSpawner : MonoBehaviour | |
{ | |
[Header("Objects to spawn")] | |
public List<GameObject> objects = new List<GameObject>(); | |
[Header("Reference")] |