Donations to the archive would be appreciated to help fund our server hardware & storage drives. We are looking for developers to help build new software and archives, discuss here.

/aicg/ - AI Chatbot General

No.100087700 View ViewReplyOriginalReport
/aicg/ - A general dedicated to the discussion and development of AI chatbots

Maid to Skate Edition

>News
Meta AI released Llama 3 8B and 70B https://llama.meta.com/llama3
Claude Opus on Amazon Bedrock https://aws.amazon.com/blogs/aws/anthropics-claude-3-opus-model-on-amazon-bedrock
OpenAI released the gpt-4-turbo as stable
Anthropic released the Claude 3 family https://www.anthropic.com/news/claude-3-family

additional info: https://rentry.org/aicg_extra_information

>Bots
https://chub.ai
https://chub-archive.evulid.cc
https://booru.plus/+pygmalion
https://rentry.org/meta_bot_list
https://rentry.org/charcardrentrylist

>Guides
https://rentry.org/tavern4retards - https://rentry.org/agnai_guides

>Jailbreaks
https://rentry.org/jb-listing

>Frontends
https://sillytavern.app [SillyTavern]
https://agnai.chat [Agnai]
https://risuai.xyz [RisuAI]
https://docs.miku.gg [Miku]
https://character.ai [Cai]

>Models
gpt: https://platform.openai.com/docs
claude: https://docs.anthropic.com
gemini: https://ai.google.dev/docs
local: >>>/g/lmg
https://rentry.org/meta_golocal_list

>Botmaking
https://rentry.org/meta_botmaking_list
https://desune.moe/aichared
https://agnai.chat/editor

>Meta
OP templates: https://rentry.org/aicgOP
services assessment: https://rentry.org/aicg_meta
try these -> https://rentry.org/weirdbutfunjailbreaksandprompts - https://rentry.org/jinxbreaks
old slaude stuff: https://rentry.org/meta_claude_list
logs: https://chatlogs.neocities.org
aicg botmaking events: https://rentry.org/meta_event_list

maid 2 bake: >>100083936
20 posts and 6 images omitted

/lmg/ - Local Models General

No.100085253 View ViewReplyLast 50OriginalReport
/lmg/ - a general dedicated to the discussion and development of local language models.

Previous threads: >>100081628 & >>100077829

►News
>(04/18) Llama 3 8B, 70B pretrained and instruction-tuned models released: https://llama.meta.com/llama3/
>(04/17) Mixtral-8x22B-Instruct-v0.1 released: https://mistral.ai/news/mixtral-8x22b/
>(04/15) Microsoft AI unreleases WizardLM 2: https://web.archive.org/web/20240415221214/https://wizardlm.github.io/WizardLM2/
>(04/09) Mistral releases Mixtral-8x22B: https://twitter.com/MistralAI/status/1777869263778291896
>(04/09) Llama 3 coming in the next month: https://techcrunch.com/2024/04/09/meta-confirms-that-its-llama-3-open-source-llm-is-coming-in-the-next-month/

►FAQ: https://wikia.schneedc.com
►Glossary: https://archive.today/E013q | https://rentry.org/local_llm_glossary
►Links: https://rentry.org/LocalModelsLinks
►Official /lmg/ card: https://files.catbox.moe/cbclyf.png

►Getting Started
https://rentry.org/llama-mini-guide
https://rentry.org/8-step-llm-guide
https://rentry.org/llama_v2_sillytavern
https://rentry.org/lmg-spoonfeed-guide
https://rentry.org/rocm-llamacpp

►Further Learning
https://rentry.org/machine-learning-roadmap
https://rentry.org/llm-training
https://rentry.org/LocalModelsPapers

►Benchmarks
General Purpose:
https://hf.co/spaces/HuggingFaceH4/open_llm_leaderboard
https://hf.co/spaces/lmsys/chatbot-arena-leaderboard
Programming: https://hf.co/spaces/bigcode/bigcode-models-leaderboard
Censorbench: https://codeberg.org/jts2323/censorbench

►Tools
Alpha Calculator: https://desmos.com/calculator/ffngla98yc
GGUF VRAM Calculator: https://huggingface.co/spaces/NyxKrage/LLM-Model-VRAM-Calculator
Sampler visualizer: https://artefact2.github.io/llm-sampling/index.xhtml

►Text Gen. UI, Inference Engines
https://github.com/oobabooga/text-generation-webui
https://github.com/LostRuins/koboldcpp
https://github.com/lmg-anon/mikupad
https://github.com/turboderp/exui
https://github.com/ggerganov/llama.cpp
317 posts and 67 images omitted

/spg/ - Smartphone General

No.100051128 View ViewReplyLast 50OriginalReport
Folding edition

>What phone has X and Y feature?
Don't ask, use these!
https://www.gsmarena.com/search.php3
https://www.kimovil.com/en/compare-smartphones
https://phonedb.net/index.php?m=device&s=query

Good Resources:
>Reviews
https://www.gsmarena.com
https://www.phonearena.com
https://www.notebookcheck.net

>Frequency Checkers
https://www.frequencycheck.com
https://kimovil.com/en/frequency-checker
https://willmyphonework.net

>Visual Phone Size Comparison
https://phonesized.com/
https://www.phonearena.com/phones/size

>Everything rooting and custom ROM related
>Beware carrier variants with locked bootloaders
https://www.xda-developers.com/

>Debloat your stock ROM
https://github.com/0x192/universal-android-debloater

>Open source Android applications
https://f-droid.org/

>Android App compatibility list for de-googled phones
https://plexus.techlore.tech/

>Custom ROMs suggestions, privacy guides
https://gearjail.neocities.org/

>Recommended Chinese phones
https://pastebin.com/GMxbc1XB

>Try out Android on your iToy
https://trygalaxy.com

>Post a mini-review of your phone
>Anyone aggressively promoting iPhone is an underage micropenis shill who should be ignored
>Discuss upcoming and current models
>Ask for help related to phones
>Tell us how many shekels you spent on a good/bad phone

Previous thread: >>100009346
290 posts and 35 images omitted

C++

No.100085905 View ViewReplyOriginalReport
Please explain this
int main(){

vector<int> numbers = {5,2,8,1,50,20,14,22};

cout << "Array:" << endl;
copy(numbers.begin(), numbers.end(), ostream_iterator<int>(cout, " "));

sort(numbers.begin(), numbers.end());

cout << "\nThe array is now sorted" << endl;
cout << "Sorted vector:" << endl;
copy(numbers.begin(), numbers.end(), ostream_iterator<int>(cout, " "));

return 0;
}


~ ./test 
Array:
5 2 8 1 50 20 14 22
The array is now sorted
Sorted vector:
1 2 5 8 14 20 22 50 %

int main(){
vector<int> numbers = {5,2,8,1,50,20,14,22};

cout << "Original vector:" << endl;
copy(numbers.begin(), numbers.end(), ostream_iterator<int>(cout, " "));

sort(numbers.begin(), numbers.end());

cout << "\nThe array is now sorted" << endl;
cout << "Sorted vector:" << endl;
copy(numbers.begin(), numbers.end(), ostream_iterator<int>(cout, " "));
cout << "\n";

return 0;
}
int main(){
vector<int> numbers = {5,2,8,1,50,20,14,22};

cout << "Original vector:" << endl;
copy(numbers.begin(), numbers.end(), ostream_iterator<int>(cout, " "));

sort(numbers.begin(), numbers.end());

cout << "\nThe array is now sorted" << endl;
cout << "Sorted vector:" << endl;
copy(numbers.begin(), numbers.end(), ostream_iterator<int>(cout, " "));
cout << "\n";

return 0;
}


~ ./test2 
Original vector:
5 2 8 1 50 20 14 22
The array is now sorted
Sorted vector:
1 2 5 8 14 20 22 50


How is this okay?
30 posts and 3 images omitted

/tpg/ - ThinkPad General

No.100043389 View ViewReplyLast 50OriginalReport
>>100030777
Don't buy anything OTHER THAN IBM/Lenovo ThinkPad T, X, and W/P Series if you want the Real Business Experience™
>Other business laptops are welcome in /tpg/ (Dell Latitude/Precision, HP EliteBook/ZBook)

Why ThinkPad?
>Used machines are plentiful and cheap
>Excellent keyboards, tactile feel and quiet
>Great durability: magnesium roll cage for structural integrity, with high quality plastic body panels
>Utilitarian design: e.g. indicator LEDs, 7 row keyboard layout on older models
>Docking stations that easily turns your laptop into a desktop
>Easy to repair (most models), upgrade & maintain thanks to readily available service manuals for every model, spare parts easy & cheap to obtain
>Excellent Linux & *BSD support

ThinkWiki - General info about ThinkPads/specs
https://www.thinkwiki.org/wiki/ThinkWiki

Model generations:
>Classic IBM: T40, T41, T42
>IBM/Lenovo Transition: T43, T60, T61 (T42 - T43: significant difference in specs)
>"Classic" Lenovo: T400, T410, T420 (T61 - T400: 4:3 to 16:10)
>Transition to old modern: T430, T440, T450 (T420 - T430: membrane to chiclet)
>Old modern: T460, T470, T480 (T450 - T460: significantly less thick)
>New modern: T490, T14g1, T14g2 (T480 - T490: design change)
>New new modern: T14g3, T14g4, ... (T14g2 - T14g3: second design change)

BIOS replacement:
https://coreboot.org/downloads.html
https://libreboot.org/docs/hardware/
https://canoeboot.org/docs/hardware/

Additional resources:
https://dankpads.com/tpg/
https://biosimage.booru.org
https://1vyra.in

Patches:
https://github.com/digmorepaka/thinkpad-firmware-patches
https://github.com/hamishcoleman/thinkpad-ec

Chat:
##ibmthinkpad on libera
#/tpg/ on rizon
101 posts and 11 images omitted

No.100079238 View ViewReplyLast 50OriginalReport
slippery little fella running through the 'log
67 posts and 18 images omitted

No.100078276 View ViewReplyOriginalReport
The internet has gone to shit.

>quora now shows retarded irrelevant answers and AI shit
>every other website is forcing useless AI chatbots down your throat
>everything asks you to download an app
>all websites are owned by investors
>all UIs and OSs are shit now
>short content and onlyfans thots everywhere
>normies and coomers ruining everything
19 posts and 2 images omitted

/cyb/sec/pri/: Cyber-Punk/Security & Privacy

No.100019893 View ViewReplyLast 50OriginalReport
>>99900957
This isn't your jobs thread or cert thread, it's a group therapy session. /Cyb/er/sec/urity/pri/vacy general is for the discussion of anything and everything related to cyberpunk culture, cybersecurity, and digital privacy.

--[/Cyb/erpunk]-----
The FAQ: https://sizeof.cat/post/cyberpunk-faq/
What is /cyb/erpunk? https://pastebin.com/pmn9vzWZ
How do I into /cyb/erpunk? https://pastebin.com/5tpNFQds
Huge list of cyberpunk media: https://sizeof.cat/post/cyberpunk/
The cyberdeck: https://pastebin.com/7fE4BVBg
Cyberlife: https://jinteki.industries/files/cyberlife.7z
Bibliothek: https://www.mediafire.com/folder/4m5hd2065hde8/Bibliothek

--[/Re/verse Engineering]-----
Getting into /re/: https://wiki.installgentoo.com/wiki/Reverse_Engineering

--[/Sec/urity]-----
"Shit just got real": https://pastebin.com/rqrLK6X0
Cybersecurity basics: https://wiki.installgentoo.com/wiki/Cybersecurity_-_/sec/_guide
and armory: https://wiki.installgentoo.com/wiki/Cybersecurity_-_basics_and_armory
learning: https://wiki.installgentoo.com/wiki/Cybersecurity_-_Learning/News/CTFs
Reference books (PW: ABD52oM8T1fghmY0): https://mega.nz/#F!YigVhZCZ!RznVxTiA0iN-N6Ps01pEJw
/sec/ PDFs: https://mega.nz/#F!zGJT1QQQ!O-8yiH845GN26ajAvkoLkA
EFF anti-surveillance: https://ssd.eff.org/
Other library: https://mega.nz/file/UCgEGAjb#rwNcnMAQCUUbSp8supsFvn9QEHCWUW86eLcZa16ZG4Y

--[/Pri/vacy]-----
Tools: https://www.privacyguides.org/en/tools/
Hitchhiker’s Guide: https://anonymousplanet.org/guide.html
Hardware: https://ryf.fsf.org/products
Frontends: https://wiki.installgentoo.com/wiki/Privacy_friendly_frontends
OSINT Guide: https://inteltechniques.com/index.html
Firmware: https://libreboot.org/
RMS: https://stallman.org/facebook.html

--[/hmg/ Hackerman General]-----
VM/CTFs:
http://overthewire.org/wargames/bandit/ - easy beginner
https://www.vulnhub.com/ - prebroken images
https://www.hackthebox.eu/ - super secret club
Huge info dump: https://hmg.neocities.org/
178 posts and 23 images omitted

/sqt/ - Stupid Questions Thread

No.100062135 View ViewReplyLast 50OriginalReport
>GNU/Linux questions >>>/g/fglt
>Windows questions >>>/g/fwt
>PC building >>>/g/pcbg
>Programming questions >>>/g/dpt
>Good, cheap laptops >>>/g/tpg
>Cheap electronics >>>/g/csg
>Server questions >>>/g/hsg
>Buying headphones >>>/g/hpg
>Best /g/ archive: https://iqfy.com/tech/
>Best way to build a media collection: >>>/g/ptg

How to find/activate any version of Windows?
https://rentry.org/installwindows

Previous thread: >>100014157
173 posts and 34 images omitted