top of page

Standing On The Shoulders Of Giants

Resource Collection

Choose File

An error occurred. Try again later

Your content has been submitted

Title
Category
web_link
description
Last Updated
image
About Marine Tank
Aquaponic
https://joejaworski.wordpress.com/2008/05/09/does-a-reef-tank-need-carbon/
08/27/2018
过滤系统的辩论
Other
https://www.cnblogs.com/steadfast/p/5473170.html
06/25/2018
硝化菌培养 氨循环
Other
http://scyu.logdown.com/posts/87651-build-nitrification-system-of-fish-tank
06/25/2018
fish tank aquarium maintenance
Other
https://www.algone.com/aquarium-maintenance-tips-and-fish-care-guidelines
06/24/2018
Highlight Typo in Jupyter Notebook for Markdown cell
Python
https://stackoverflow.com/questions/39324039/highlight-typos-in-the-jupyter-notebook-markdown
06/24/2018
煲仔饭
Other
https://www.xiachufang.com/recipe/103024/
06/24/2018
X201 tablet setting in Ubuntu
Other
https://ubuntuforums.org/showthread.php?t=1656632
05/29/2018
Thinkpad x201 driver list
Other
https://download.lenovo.com/eol/index.html
05/28/2018
configuring bootable menu in Unbuntu
Other
http://www.psychocats.net/ubuntu/bootmenu
05/27/2018
create mac OS usb installer in Linux
Other
https://superuser.com/questions/505821/making-a-bootable-osx-usb-from-dmg-on-linux?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa
dmg2iso dd method
05/25/2018
fix signiture problem in installing mac os
Other
https://www.macworld.com/article/3097533/macs/installing-os-x-what-to-do-when-this-copy-of-the-install-os-x-application-cannot-be-verified.html
How to fix the problem The installer checks the date on the computer. If the date isn’t current, you get the error above. The fix involves correcting the date on your Mac. If you have an older OS on the Mac If you have a complete OS on the Mac already, boot into it. Fix the date in the Date & Time system preference (Apple menu > System Preferences). Reboot using the USB boot disk, and you should be able to proceed with the installation. If you don’t have an OS on the Mac If you are in a situation like I was, and you don’t have a complete OS on your disk (you reformatted it), you’ll find that there’s no way to access the Date & Time system preference when you use an external USB boot installer drive. The Apple menu doesn’t give you access to System Preferences. You have to use the Terminal to set the date and time. osx boot install error terminal How to access the Terminal when you boot from an external boot drive installer. If you use an external boot disk, you Mac starts up into OS X Disk Utilities. You can access the Terminal by clicking on the Utilities menu and selecting Terminal. Once the Terminal has launched, follow these steps.
05/24/2018
UCA Webpage
Other
05/04/2018
Mac Unix reset PATH
Other
https://apple.stackexchange.com/questions/22859/bash-ls-command-not-found
03/18/2018
Python **kargs *args
Python
https://pythontips.com/2013/08/04/args-and-kwargs-in-python-explained/
03/17/2018
Mongo - too many open file problem
Python
https://dba.stackexchange.com/questions/144911/make-mongodb-close-open-files
03/17/2018
Python Display
Python
http://blog.juliusschulz.de/blog/ultimate-ipython-notebook
03/15/2018
Python APIs
Python
https://github.com/realpython/list-of-python-api-wrappers#robinhood---free-stock-trading
03/15/2018
Python Basic -- List
Python
https://www.programiz.com/python-programming/list
03/14/2018
selenium get hidden content
Python
http://yizeng.me/2014/04/08/get-text-from-hidden-elements-using-selenium-webdriver/
03/14/2018
Pandas Dataframe append
Python
when you do dataframe append: if you want to add columns, use: dataframe.append([some_elements]) if you want to add rows, use another list wapper outside: dataframe.append([[some_elements]])
03/11/2018
selenium wait method
Python
http://selenium-python.readthedocs.io/waits.html
03/10/2018
Property in Python
Python
https://www.programiz.com/python-programming/property
03/10/2018
Add new key to dict
Python
dict[label]=value
03/10/2018
Remove unicode characters
Python
>>> s 'This is some \\u03c0 text that has to be cleaned\\u2026! it\\u0027s annoying!' >>> print(s.decode('unicode_escape').encode('ascii','ignore')) This is some text that has to be cleaned! it's annoying!
03/10/2018
selenium cheat sheet python
Python
https://codoid.com/selenium-webdriver-python-cheat-sheet/
03/10/2018
Pandas Dataframe
Python
select column you can use data["col_name"] but select index, need to use data.loc["index_name"]
03/09/2018
Financial disaster
Python
03/09/2018
ERM
Finance
03/03/2018
Corporate governance
Finance
03/03/2018
Hedging concepts
Finance
03/03/2018
Risk concepts
Finance
03/03/2018
Risk Measurement and assessment
Finance
Scenario Stress ERM
03/03/2018
Calculate VaR
Finance
The net return at the 95% level, usually negative
03/03/2018
wirte csv using with menthon
Other
https://code.tutsplus.com/tutorials/how-to-read-and-write-csv-files-in-python--cms-29907
write line by line
03/03/2018
Water pump out of containers
Other
03/02/2018
Programming standard- TODO mark
Other
/*TODO*/ to mark a place for you to do next. (It's a C++ symtax)
03/02/2018
good Japanese class
Python
https://www.freejapaneselessons.com/lesson06.cfm
03/01/2018
github post code in blog
other
https://gist.github.com/
03/01/2018
Python- second to the largest
python
https://geyikenli.wixsite.com/pyfin/my-lab-1
print df['High'].nlargest(2)
02/27/2018
Python - pass by reference
python
https://www.python-course.eu/passing_arguments.php
02/27/2018
Pymongo- Delete duplicates
python
https://geyikenli.wixsite.com/pyfin/my-lab-1
def delete_duplicates(collection): cursor = collection.aggregate( [ {"$group": {"_id": "$TimeStamp", "unique_id": {"$addToSet": "$_id"}, "count": {"$sum": 1}}}, {"$match": {"count": { "$gte": 2 }}} ] ) response = [] for doc in cursor: del doc["unique_id"][0] for id in doc["unique_id"]: response.append(id) collection.delete_many({"_id": {"$in": response}})
02/26/2018
convert json to datetime
python
https://stackoverflow.com/questions/10805589/convert-json-date-string-to-python-datetime
02/26/2018
Removing duplicates
python
https://stackoverflow.com/questions/34722866/pymongo-remove-duplicates-map-reduce
02/26/2018
convert BSON date int64 to python datetime
python
https://stackoverflow.com/questions/6999726/how-can-i-convert-a-datetime-object-to-milliseconds-since-epoch-unix-time-in-p
02/26/2018
Pymongo tutorial
python
http://api.mongodb.com/python/current/tutorial.html#range-queries
02/25/2018
Avoiding error in pandas dataframe seletion
python
https://www.shanelynn.ie/select-pandas-dataframe-rows-and-columns-using-iloc-loc-and-ix/
02/25/2018
Mongodb sorting
python
https://docs.mongodb.com/manual/reference/method/cursor.sort/
02/25/2018
Barchart Market Data API
finance
https://www.barchart.com/ondemand/api/getQuote/free
02/25/2018
Pymongo insert dataframe
python
https://stackoverflow.com/questions/20167194/insert-a-pandas-dataframe-into-mongodb-using-pymongo
02/25/2018
Data Analyst, Data Engineer or Data Scientist?
python
https://automatemylife.org/2017/12/are-you-a-data-analyst-data-engineer-or-data-scientist/
02/25/2018
Python3 import change
python
https://stackoverflow.com/questions/12172791/changes-in-import-statement-python3
02/25/2018
bottom of page