from | to | description |
---|---|---|
0 | 10,000 | System items (including junkyards and other special purpose items |
500,000 | 1,000,000 | Factions |
1,000,000 | 2,000,000 | NPC corporations |
3,000,000 | 4,000,000 | NPC characters (agents and NPC corporation CEO's) |
9,000,000 | 10,000,000 | Universes |
10,000,000 | 11,000,000 | NEW-EDEN Regions |
11,000,000 | 12,000,000 | Wormhole Regions |
12,000,000 | 13,000,000 | Abyssal regions |
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
# First step, perform "pmbootstrap install" locally once for your device, | |
# to get the initramfs file generated by pmbootstrap. | |
# Then copy it into build dir (this is done only once!): | |
$ ./cp-initfs.sh | |
# Then regular build process: | |
$ ./menuconfig.sh or ./make.sh oldconfig | |
$ ./make.sh && ./modules-install.sh && ./replace-modules-in-initfs.sh xiaomi-lavender-tianma && ./create-bootimg.sh xiaomi-lavender-tianma && ./upload-modules-rsync.sh |
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
#pragma once | |
#ifndef LINENOISE_CONVERT_INC | |
#define LINENOISE_CONVERT_INC | |
/* | |
Copyright 2020 [email protected] -- turned into single header C lib | |
inevitably some name clashes will | |
start becuase of this header. | |
Thus renaming is very likely not finished | |
Licence: CC BY SA 4.0 |
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
[Rules] | |
org.kde.kwindowsystem.info=true | |
org.kde.kwindowsystem.warning=true | |
org.kde.kwindowsystem.critical=true | |
org.kde.kwindowsystem.debug=true | |
kwin_core.info=true | |
kwin_core.warning=true | |
kwin_core.critical=true | |
kwin_core.debug=true | |
kwineffects.info=true |
People
:bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
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
# taken from http://www.piware.de/2011/01/creating-an-https-server-in-python/ | |
# generate server.xml with the following command: | |
# openssl req -new -x509 -keyout server.pem -out server.pem -days 365 -nodes | |
# run as follows: | |
# python simple-https-server.py | |
# then in your browser, visit: | |
# https://localhost:4443 | |
import BaseHTTPServer, SimpleHTTPServer | |
import ssl |
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
# | |
# original: http://code.activestate.com/recipes/65287/ | |
# | |
# place in lib/python2.x/sitecustomize.py | |
import bdb | |
import sys | |
def info(type, value, tb): | |
if hasattr(sys, 'ps1') \ |