成功的敌人不是失败,而是无趣与无聊
成功的真正敌人 成功的敌人不是失败,而是无趣与无聊。因此,我们必须让它变得有趣。 产品开发的关键 做产品也是一样,必须从一开始就有人使用、有互动、有反馈。否则,你很难坚持下去。一定要从一开始就有种子用户,在开发过程中就有一群人在期待。 ...
成功的真正敌人 成功的敌人不是失败,而是无趣与无聊。因此,我们必须让它变得有趣。 产品开发的关键 做产品也是一样,必须从一开始就有人使用、有互动、有反馈。否则,你很难坚持下去。一定要从一开始就有种子用户,在开发过程中就有一群人在期待。 ...
If you can’t say nice things, say nothing. Don’t put people down.
You don’t need to follow the daily news. True breaking news will find you, and the rest isn’t urgent or just doesn’t matter.
Habit of Financial Discipline: Become someone who practices disciplined financial management. This could involve habits such as creating a budget, tracking expenses, and avoiding unnecessary spending. Habit of Continuous Learning: Embrace the identity of a lifelong learner in the realm of personal finance. Make it a habit to read books, articles, and attend seminars on financial literacy and investment strategies. Habit of Savvy Investing: Cultivate the identity of an informed and strategic investor. Regularly set aside time to research investment opportunities and make informed decisions about where to invest your money. Habit of Goal Setting: Adopt the identity of a goal-oriented individual. Set clear financial goals and break them down into actionable steps. Regularly review and adjust your goals as needed. Habit of Networking and Relationship Building: Become someone who actively seeks out connections in the financial world. Network with professionals, mentors, and like-minded individuals who can provide guidance and opportunities. Habit of Entrepreneurial Thinking: Develop an identity that embraces entrepreneurial thinking. This might involve exploring side businesses, investments in startups, or other ventures that can diversify your income streams. Habit of Long-Term Planning: Embody the identity of a strategic planner. Develop a habit of thinking about your financial future in the long term, which includes retirement planning, estate planning, and more. Habit of Resilience: Cultivate the identity of a resilient individual who learns from setbacks. Financial success often involves facing challenges; adopting the habit of bouncing back and learning from failures is crucial. Habit of Generosity: Adopt the identity of someone who values giving back. Allocate a portion of your financial success to charitable causes, reinforcing the idea that financial success enables positive impact. Habit of Risk Management: Become someone who is conscious of financial risks. Develop habits of managing and mitigating risks through insurance, emergency funds, and thoughtful decision-making. Habit of Negotiation and Assertiveness: Embrace an identity of someone who advocates for their financial interests. Develop the habit of negotiating for better deals, raises, and terms. Remember, the key is to start small and build gradually. Choose one or a few of these habits that resonate with you and incorporate them into your daily routine. As you consistently practice these habits, they will become ingrained in your identity, leading to more sustainable and impactful changes in your financial life. Over time, these small identity-based habits can accumulate and lead to significant financial success. ...
当你在结果层面解决问题时,你只会暂时解决它们。为了取得良好的进步,你需要在系统层面解决问题。修复输入,输出将自行修复。
1 - Understanding human nature People are, above all, interested in themselves. Yup. Sorry. No matter who you are people will always be a thousand times more interested in themselves than in you. No judgment here. People’s actions are governed by self-interest. In every human relationship, your counterpart will always think or ask themselves “what’s in it for me?” Remember this question “What’s in it for me?” By the way, you’re asking this question in all your interactions too, consciously or subconsciously. ...
In life, there are always some seemingly ordinary things that contain profound philosophical meanings. Take bees and sweetness as an example; we may rarely think about the story behind it. Bees are hardworking creatures in nature, diligently collecting nectar to transform it into sweet delicacies. These sweets then become delightful treats for people, allowing them to savor happiness. However, if we delve deeper, we might discover that there seems to be something hidden between the bees’ hard work and the sweetness enjoyed by humans. Perhaps there is a subtle yet profound implication behind this. We can recall scenes that seem familiar. ...
权力法则 1 永远不要盖过上司的光芒 在取悦他们或给他们留下深刻印象的同时,不要过分显露你的才华,否则会适得其反——引发他的恐惧和不安。 权力法则 2 永远不要太信任朋友,学会如何利用敌人 ...
Use ncnn to deploy pytorch model to Android phone Open graphics card support when compiling NCNN. Vulkan is for gpu -DNCNN_VULKAN=ON MobileNetV3 Open CMAKE 0091 feature when compiling into MT cmake_minimum_required(VERSION 3.20.0) cmake_policy(SET CMP0091 NEW) set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>") project("client-project") Train YOLO \Envs\torch\Scripts\activate.ps1 python train.py --batch 6 --workers 2 --imgsz 960 --epochs 300 --data "\Core\yaml\data.yaml" --cfg "\Core\yaml\cfg.yaml" --weights \ Core\weights\best.pt --device 0 Conversion model from torch import nn import torch.utils.model_zoo as model_zoo import torch.onnx from libs import define from libs.net import Net from libs.dataset import ImageDataset import os test_data = ImageDataset(define.testPath,False) test_loader = torch.utils.data.DataLoader( test_data, batch_size=1, shuffle=True) device = torch.device("cuda" if torch.cuda.is_available() else "cpu") model = Net(out_dim=19).to(device) model.load_state_dict(torch.load( "./widget/last.pt" )) model.eval() def saveOnnx(): for data, target in test_loader: data, target = data.to(device), target.to(device) label = target.long() y = model(data) # Export the model torch.onnx.export(model, # model being run data, # model input (or a tuple for multiple inputs) "./widget/best.onnx", # where to save the model (can be a file or file-like object) export_params=True, # store the trained parameter weights inside the model file opset_version=10, # the ONNX version to export the model to do_constant_folding=True, # whether to execute constant folding for optimization input_names = ['input'], # the model's input names output_names = ['output'], # the model's output names dynamic_axes={'input': {0:'batch_size'}, # variable lenght axes 'output': {0:'batch_size'}}) traced_script_module = torch.jit.trace(model, data) return saveOnnx() # Conversion os.system("python -m onnxsim ./widget/best.onnx ./widgetbest-sim.onnx") os.system("./bin/onnx2ncnn.exe ./widget/best-sim.onnx ./widget/best.param ./widget/best.bin") os.system("./bin/ncnnoptimize.exe ./widget/best.param ./widget/best.bin ./widget/best-opt.param ./widget/best-opt.bin 65536") python .\export.py --weights weights/best.pt --img 960 --batch 1 --train python -m onnxsim best.onnx best-sim.onnx .\onnx2ncnn.exe best-sim.onnx best.param best.bin ncnnoptimize best.param best.bin best-opt.param best-opt.bin 65536 Git clone ncnn repo with submodule $ git clone https://github.com/Tencent/ncnn.git $ cd ncnn $ git submodule update --init Build for Linux / NVIDIA Jetson / Raspberry Pi Build for Windows x64 using VS2017 Build for macOS Build for ARM Cortex-A family with cross-compiling Build for Hisilicon platform with cross-compiling Build for Android Build for iOS on macOS with xcode Build for WebAssembly Build for AllWinner D1 Build for Loongson 2K1000 Build for Termux on Android Build for Linux Install required build dependencies: ...
Mobile PUSH debug server to mobile adb push lldb-server /data/local/tmp chmod 755 /data/local/tmp/lldb-server Start the debugger service /data/local/tmp/lldb-server platform --listen "*:8888" --server +++ Computer side Port forwarding adb forward tcp:8888 tcp:8888 Start LLDB . \lldb.exe View supported platforms platform list Select ANDROID platform platform select remote-android Connect to the phone Phone serial number: 9643e0ec0604 To change to the current debugging phone, use adb devices to check the serial number platform connect connect://9643e0ec0604:8888 View the currently running process platform process list Attach to attach 9053 Breakpoint b send Run up c View the list of threads thread list View the call stack bt
The largest financial institutions are set up to make a profit for themselves, not their clients. What do I really want? (Vision.) 2. What is important about it? (Values.) 3. How will I get it? (Methods.) 4. What is preventing me from having it? (Obstacles.) 5. How will I know I am successful? (Measurements.) Money is certainly one of the ways we can turn the dreams we have into the reality we live. ...
好的,个人获取真正的利润(而非劳动报酬)的主要方式包括: 企业家型创业 - 独立或与合伙人创立公司,把商品或服务带到市场上,获取部分企业利润。 投资型创业 - 通过 angel investing 或风险投资,分享创业公司的成长收益。 证券投资 - 在股票市场购买证券资产,分享上市公司的营业利润。 生产资料所有 - 购买设备、房产等生产资料,出租获利。 知识产权运用 - 通过获得专利或版权,收取使用费。 经营商业活动 - 批发、零售等获得中间环节利润。 提供商业服务 - 如融资中介、房产中介等。 搭建投资平台 - 如 P2P 网贷平台获得利差。 综上,个人通过投资和商业手段,而非直接劳动,获取资本回报的方式可以视为获得真正的利润。获得这部分收益需要承担风险。 ...
在自由竞争的市场中,当某个职业或行业的工资水平高于该工作的劳动成果或技能所应得的价值时,会吸引更多的人学习这个职业,进入这个市场。随着供给的增加,市场上的工作人员数量增多,从而导致工资水平下降,最终趋近于劳动成果所应得的价值。 ...
当谈论经济学时,生产者剩余是一个重要的概念,它是指生产者或供应者在市场上以某一价格销售商品时,实际收到的收入与他们愿意以该价格出售商品时预期的最低收入之间的差额。 ...
公司希望你成为螺丝钉,可被替代。 你希望自己无可替代,甚至拥有独立盈利的能力,成为公司。 所以只会在某些阶段,双方的利益与目标一致,过了这个阶段就该分开了。 ...
Vanguard Total Stock Market ETF (VTI): Expense Ratio: Approximately 0.03% iShares Core S&P 500 ETF (IVV): Expense Ratio: Approximately 0.03% Schwab U.S. Broad Market ETF (SCHB): Expense Ratio: Approximately 0.03% SPDR S&P 500 ETF Trust (SPY): Expense Ratio: Approximately 0.09% Invesco QQQ Trust (QQQ): Expense Ratio: Approximately 0.20% iShares Russell 2000 ETF (IWM): Expense Ratio: Approximately 0.19% Vanguard Total Bond Market ETF (BND): Expense Ratio: Approximately 0.04% iShares Core U.S. Aggregate Bond ETF (AGG): Expense Ratio: Approximately 0.04%
陈述错误谬误(Fallacy of Assertion):在这种谬误中,陈述没有提供充分的证据或支持,而只是以断言的方式宣称事实。例如:“每个人都知道我是最聪明的人。” ...
在英语中,第三人称单数(Third person singular)是表示单个第三人称主语的形式。在英语动词中,动词的形式通常会因主语的人称和数而有所变化。特别地,第三人称单数是指以 “he”(他)、“she”(她)、“it”(它)或单个名词作为主语的情况。在现在时态中,动词通常会在第三人称单数时加上 “-s” 结尾。 ...
个人觉得获得幸福的最佳方法是把生活从网络游戏变成单机游戏。网络游戏比如吃鸡或者王者农药,你需要比别人技术好,装备比别人牛,连皮肤都要比一比。强中自有强中手,你失意是大概率事件。但是如果我们把生活换成单机游戏呢?比如塞尔达,你只要和自己比就可以了。每一步都幸福感满满。投射到现实就是,身材要比别人好,房子要比别人大,车子要比别人豪。 天天想着当人上人,要压过别人,注定很难幸福。个人认为正确的方法是:买了房不用老搬家了,开心。 买了车不用挤地铁了,开心。买了洗碗机不用洗碗了,开心… ...
大家好,欢迎收听深爱玩财的最后一期节目,我是 JS 静姝,那至于今后会是什么博客或者其他的内容,我会留在下一期,也就是新播客的第一期跟大家讲。那今天最后一期了,我就发个疯吧,我申请林博主的脸也不要了,反正也不做了。那我就来说一句我一直很想说的话,就是学霸猫有毒,那我今天也不想玩什么不评判,然后,唉,善意揣测这样一些身心灵语境下的游戏了,因为如果我抱着这样的想法当然没错,但是我话就说不明白,这句话也永远说不出来。 ...