/sci/ - Science & Maths

0/2000

options

*not required

Recent Posts

/aaa/ - ask /sci/ anything

View

Math Book Recommendation Thread

View

Github projects thread

View

View

2+4+8+16+......= S 2+2(2+4+8+....)= S 2+2S= S 2= -S S= -1/2

View

View

science of city planning - /scp/ general

View

UwU loves snakes

View

Bio 101

View

Any sfs players here?

View

indian space general /isg/

View

View

View

the god gene

View

/help/ - Advice General

bros, am about to start college at university in the US (100% scholarship mila tha) now i have to choose. My parents don't care what I choose as long as I get some job in the next 5-10 years, but my relatives are pressuring them to tell me to choose ...

View

/mpg/ - math problems general

View

india #4 at international mathematical olympiad

View

Astronomy - Maria Mayer edition

View

View

Indian research that you all look for

http://www.bikashsantra.byethost7.com/Anubhav/anubhav.html?i=1 >indian research >this guy is currently as professor at some new IIT >reserved chamar over.

View

Vasuki indicus

View

View

welcome to /sci/ - science and

View

/mpg/ - math problems general

Bhangali ka chela Indranil

GJ

EP22Bm

No.5105

Post 'em

Bhangali ka chela Indranil

GJ

EP22Bm

No.5107

Bhangali ka chela Indranil

IN

EP22Bm

No.5108

Detective Goonkesh Hawshi

!yTQNrLpqwaYmMYk

IN

gSQdxI

No.5128

Saale jeebhangi teri behen kaa hazaar baar balatkaar ho saale naali ke keede wapas apne gutter me bhaag jaa

anonymous

TS

No.5138

>>5107

I asked you before, and I'll ask you again, post the solutions as well faggot

anonymous

IN

EP22Bm

No.5152

>>5128

Ye sci-math board hai chutiye, apne containment board me wapas ja

anonymous

IN

nPorvN

No.5624

>>5128

AS USUAL SHIT REPLY BY MR GOOJEET

DGH

!yTQNrLpqwaYmMYk

IN

gSQdxI

No.5710

>>5624

You want a good reply? Here:

You motherfuckers will never be IITians lmaoooooooooo

anonymous

IN

THMVFD

No.5848

>>5710

here is another one : goo(jeet)

DGH

!yTQNrLpqwaYmMYk

IN

YJcCwc

No.5853

>>5848

Beta ye attitude rakhoge to tumhe GFTI tak bhi nhi milegaa

anonymous

IN

THMVFD

No.5856

>>5853

GOOJEET College of Technology me admission chahiye mujhe.

DGH

!yTQNrLpqwaYmMYk

IN

gSQdxI

No.5860

>>5856

Haan deta hun admission pehle apni maa bhej

anonymous

IN

pzIygS

No.6064

>>5710

>brings out his college name out of no where on an anonymous forum

Absolute state of this niggér

anonymous

IN

S3SEYN

No.6222

>>5710

Bhai tu konsa IITian hai

DGH

!yTQNrLpqwaYmMYk

UP

No.6739

>>6222

https://bharatchan.com/post/b/view/3317

anonymous

AS

OELKfL

No.8362

lo bhai

anonymous

IN

LAoyuu

No.11079

>>5107

Post soon to 1.20 plz

anonymous

IN

LAoyuu

No.11080

>>11079

*Soln

anonymous

IN

WHOdRD

No.15576

Michael Spivak's calculus > all these memes

Btw which book are you pasting these questions from?

mathsfaggot

!Lwi6lhYBPX8V6qi

IN

y1fW9M

No.19097

>>5105(OP)

I'm back, bitches

anonymous

ARYA

DhzyrT

No.33541

>>5105(OP)

https://www.andreinc.net/2024/02/23/20-algebra-problems-part-1#hint-1

anonymous

IN

tNVWqf

No.76973

vim.g.mapleader = " "

vim.opt.number = true

vim.opt.relativenumber = true

vim.opt.tabstop = 4

vim.opt.shiftwidth = 4

vim.opt.smartindent = true

vim.opt.termguicolors = true

local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"

if not vim.loop.fs_stat(lazypath) then

vim.fn.system({

"git",

"clone",

"--filter=blob:none",

"https://github.com/folke/lazy.nvim.git",

"--branch=stable", -- latest stable release

lazypath,

})

end

vim.opt.rtp:prepend(lazypath)

local plugins = {

{ "catppuccin/nvim", name = "catppuccin", priority = 1000 },

{

'nvim-telescope/telescope.nvim', tag = '0.1.8',

dependencies = { 'nvim-lua/plenary.nvim' }

},

{"nvim-treesitter/nvim-treesitter", build = ":TSUpdate"}

}

local opts = {}

require("lazy").setup(plugins, opts)

require("catppuccin").setup()

vim.cmd.colorscheme "catppuccin"

local builtin = require("telescope.builtin")

vim.keymap.set('n', '<C-p>', builtin.find_files, {})

vim.keymap.set('n', '<leader>fg', builtin.live_grep, {})

local config = require("nvim-treesitter.configs")

config.setup({

ensure_installed = { "c" },

highlight = { enable = true },

indent = { enable = true },

})