100
101
---
100
100
101
---
101
import sys, os | |
import turtle as tt | |
screen = tt.Screen() | |
class Lsystem: | |
"Class to compile and draw lsystem with turtle" | |
def __init__(self, save_every_frame=False, | |
speed=0): | |
self.name = '' |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
aph·o·rism /afəˌrizəm/ noun
a pithy observation that contains a general truth, such as, “if it ain't broke, don't fix it.”.
how did i get here?
⬇ Luddite
<?php | |
session_start(); | |
$code = $_GET['code']; | |
$url = 'https://github.com/login/oauth/access_token'; | |
$client_id = 'xxxxxxxxxxxxxxxxxxxxxxx'; | |
$client_secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'; | |
// echo $code; | |
$postdata = http_build_query( |
using System.Drawing; | |
using System.Runtime.InteropServices; | |
using System.Security; | |
using System.Threading.Tasks; | |
namespace System.Windows.Forms | |
{ | |
using Point = Drawing.Point; | |
/// <summary> |
// Unity C# Cheat Sheet | |
// I made these examples for students with prior exerience working with C# and Unity. | |
// Too much? Try Unity's very good tutorials to get up to speed: https://unity3d.com/learn/tutorials/topics/scripting |
Collection of License badges for your Project's README file.
This list includes the most common open source and open data licenses.
Easily copy and paste the code under the badges into your Markdown files.
Translations: (No guarantee that the translations are up-to-date)
having a web server turned on doesn't necessarily mean you are serving pages on the world wide web. its what allows you to load your own static files (.html
, .js
etc.) in a browser via http://
.
if you're not sure whether or not you have a web server running, no problem! its easy to confirm.
by xero updated 10.29.24