Movatterモバイル変換


[0]ホーム

URL:


Skip to content
Search Gists
Sign in Sign up

Instantly share code, notes, and snippets.

View ikem-krueger's full-sized avatar

Ikem Krueger ikem-krueger

Your friendly neighborhood programmer
View GitHub Profile
Loading
Sorry, something went wrong.Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@ikem-krueger
ikem-krueger /PHP mit Visual Studio Code.md
CreatedOctober 12, 2023 21:44— forked frommacx/PHP mit Visual Studio Code.md
PHP Server mit Visual Studio Code

Um mehrseitige, dynamische Websites mitVisual Studio Code zu erstellen, benötigst du eine Programmiersprache – wir verwenden hier im Beispiel PHP – und einen Server, der dir die Website im Browser bereitstellen kann.

This how to is based on theofficial build instructions.

Wherever I refer to "host" it means on the Linux PC native shell, "client" it means in the Qemu virtual machine.

Requirements

  • Debian/Ubuntu or similar Linux distro host system
  • Qemu installed on the host
module.exports={
highlight:true,
injectBody:true,
navigate:true,
port:5555,
root:"www/",
open:"index.php",
browser:"chrome",
php:"C:\\php\\php-8.0.13\\php.exe"
};
[core]
safecrlf=false
autocrlf=input
longpaths=true
[help]
format=web
[alias]
co=checkout
ci=commit
st=status
[wsl2]
memory=1GB
swap=0
localhostForwarding=true
# custom IntelliJ IDEA properties
editor.zero.latency.typing=true
idea.max.intellisense.filesize=3500
idea.cycle.buffer.size=2048
@ikem-krueger
ikem-krueger /c_sharp_for_python.md
Last activeMarch 8, 2024 02:45— forked frommrkline/c_sharp_for_python.md
An intro to C# for a Python developer. Made for one of my coworkers.

Syntax and core concepts

Basic Syntax

  • Single-line comments are started with//. Multi-line comments are started with/* and ended with*/.

  • C# uses braces ({ and}) instead of indentation to organize code into blocks.If a block is a single line, the braces can be omitted. For example,


[8]ページ先頭

©2009-2025 Movatter.jp