2023年12月4日 星期一

2023年12月1日 星期五

javascript, python

package的入口>>

js:

index.js

py:

__init__.py
-------------------------------------------
import 的差異>>

js:

impot {...} from '...'

import XX as XX from '...'

py:

import package as nickName

import dir.package

from package import component

-------------------------------------------

 檔案當前路徑>>

py:

os.getcwd() 

php:

$_SERVER['PHP_SELF'], __FILE__

-------------------------------------------

專案當前路徑>>

-------------------------------------------

數值類型>>

js:

typeof(...)

py:

type(...)

php:

gettype()

-------------------------------------------

undefined, null>>

js:

... == null

typeof(...) == 'undefined'

py:

... is None

php:

isset(...), empty(...), is_null(...)

-------------------------------------------

2023年11月4日 星期六

game

http://www.k73.com/down/psp/3854.html http://www.k73.com/down/psp/2049.html http://www.k73.com/down/psp/1810.html http://www.k73.com/down/psp/1726.html http://www.k73.com/down/psp/1700.html http://www.k73.com/down/psp/971.html http://www.k73.com/down/psp/975.html http://www.k73.com/down/psp/866.html http://www.k73.com/down/psp/821.html http://www.k73.com/down/psp/755.html http://www.k73.com/down/psp/754.html http://www.k73.com/down/psp/717.html http://www.k73.com/down/psp/467.html http://www.k73.com/down/psp/4148.html http://www.k73.com/down/psp/4257.html http://www.k73.com/down/psp/4252.html http://www.k73.com/down/psp/4373.html http://www.k73.com/down/psp/4370.html http://www.k73.com/down/psp/4405.html http://www.k73.com/down/psp/4399.html http://www.k73.com/down/psp/4442.html http://www.k73.com/down/psp/4451.html http://www.k73.com/down/psp/4703.html -http://www.k73.com/down/psp/4632.html -http://www.k73.com/down/psp/4483.html http://www.k73.com/down/psp/7097.html http://www.k73.com/down/psp/6919.html http://www.k73.com/down/psp/7078.html http://www.k73.com/down/psp/7304.html http://www.k73.com/down/psp/7327.html http://www.k73.com/down/psp/7089.html http://www.k73.com/down/psp/7077.html http://www.k73.com/down/psp/7357.html http://www.k73.com/down/psp/8385.html http://www.k73.com/down/psp/8150.html -http://www.k73.com/down/psp/8519.html -http://www.k73.com/down/psp/9191.html http://www.k73.com/down/psp/11817.html http://www.k73.com/down/psp/11872.html http://www.k73.com/down/psp/12524.html http://www.k73.com/down/psp/13217.html http://www.k73.com/down/psp/13038.html http://www.k73.com/down/psp/13459.html http://www.k73.com/down/psp/15474.html http://www.k73.com/down/psp/14921.html -http://www.k73.com/down/psp/17799.html -http://www.k73.com/down/psp/19344.html http://www.k73.com/down/psp/25980.html http://www.k73.com/down/psp/29341.html http://www.k73.com/down/psp/37114.html http://www.k73.com/down/psp/29400.html http://www.k73.com/down/psp/47660.html --------------------------------------------- http://www.k73.com/down/psp/160153.html http://www.k73.com/down/psp/66468.html http://www.k73.com/down/psp/66580.html

2023年10月20日 星期五

atom keybind

 # Your keymap
#
# Pulsar keymaps work similarly to style sheets. Just as style sheets use
# selectors to apply styles to elements, Pulsar keymaps use selectors to associate
# keystrokes with events in specific contexts. Unlike style sheets however,
# each selector can only be declared once.
#
# You can create a new keybinding in this file by typing "key" and then hitting
# tab.
#
# Here's an example taken from Pulsar's built-in keymap:
#
# 'atom-text-editor':
#   'enter': 'editor:newline'
#
# 'atom-workspace':
#   'ctrl-shift-p': 'core:move-up'
#   'ctrl-p': 'core:move-down'
#
# You can find more information about keymaps in these guides:
# * https://pulsar-edit.dev/docs/launch-manual/sections/using-pulsar/#customizing-keybindings
# * https://pulsar-edit.dev/docs/launch-manual/sections/behind-pulsar#keymaps-in-depth
#
# If you're having trouble with your keybindings not working, try the
# Keybinding Resolver: `Cmd+.` on macOS and `Ctrl+.` on other platforms. See the
# Debugging Guide for more information:
# * https://pulsar-edit.dev/docs/launch-manual/sections/core-hacking/#check-your-keybindings
#
# This file uses CoffeeScript Object Notation (CSON).
# If you are unfamiliar with CSON, you can read more about it in the
# Pulsar Launch Manual:
# https://pulsar-edit.dev/docs/launch-manual/sections/using-pulsar/#configuring-with-cson

'atom-text-editor':
  "ctrl-space": "unset!"
  'alt-/': 'autocomplete-plus:activate'