#technology
1 messages ยท Page 38 of 1
WHAT HELL YES
Wait no not dual sim i meant a seperate storage micro SD
almost all phones with dual sims lets you use a sd card instead if you arent using that second sim
^
Ohhhhhh
the second sim is the size of a microsd slot
See the last nokia i used was the lumia 635 and it just had a dedicated storage microSD slot
lumia... haven't heard that model name in years
last nokia i used was the lumia 1020, it only had a single sim slot and no sd card slot
well back then almost all android phones got micro sd slot
and a removeable back cover and battery!
Yeah but this was when nokia went windows
yeah they were like the most well known windows phone manufacturer
but windows phone users were already very rare
Yeah the appstore wasnt great but other than that i loved the OS
I think my most played game was in japanese and i had to guess what it was saying
when i was 6 my mom used a nokia cell phone and i loved playing snake on it
Screwed part is: Metro design style works for a touchscreen form factor.
MS just didn't have enough shit out for the app ecosystem to click.
My mom had a nokia cell phone that looked like a landline handset
damn could you even call that a handphone lol
And they were already battling uphill vs. Droid/Apple
Like not a rotary but when you pick up the wireless landline handset, thats what the cell phone looked like
kek
Im looking at this nokia 7.1 and i think im in love
your 3T is better tho
I have a samsung note 5
honestly anyone who made a 3T purchase in 2016 and is still using it now made the most out of their money
that price doe
Micronization ain't cheap.
Yeah price wise the nokia 7.1 is a little over half what the note 5 costed
Some of what's in phones now is damn near laptop-level specs.
My 8 year old laptop is significantly worse in everyway except storage to every phone now
I mean half its processor is a raspberry pi 3, which i use AS a laptop
aaaa tech moves too quickly
tfw new tech comes out months after you bought the older gen
Lemme hook it up to a dvd drive and install homeworlds, play it in 60 fps
Anyone know if its possible to send a message over lan from a pc to a phone and having it show, without the phone needing a special app?
Ooh baby EK Vardar for dirt cheap
Would you recommend using it as a general purpose PC fan?
I drew loss lines in an applet
Even when not mounting on a rad? @subtle hawk
ye
Yeet
those look so good
They do.
And they're on big big sale too
From $26.65 down to four bucks.
How can I pass that up?
4 each?
Yes.
whats the rpm?
jeez i think i paid like 10 each for my glowy ones
no mine arent vardar
i think they may be rosewill, either that or some random brand
its been like 6 years since i got them
@severe falcon 10?
$10
I dropped 40 for each of my RGB fans
mine are just solid red glow
mine are LL series fans
i would have to rip off the front of my case to see what mine are so idk
fair enough
oh mine are rosewill i just looke up my order history on newegg
also apparently i got one for free(?)
cuz they are $10 but i paid 30
idk its newegg maybe there was some kind of sale or something
Installation complete
Yeah I know the unside of my computer is like a jungle of cables
And as for that unsightly white cable, that'll have to do for now since I have no way of extending it currently
@tame topaz wouldn't it be better to hook up the top fan to that header?
My 3 RGB fans are running off of a hub

And there's only 1 4-pin connector in my whole mobo
The hub controls the RGB
I am considering a mobo upgrade in the future however
yeah B350 boards are very lackluster
But I only got it because, once again, it's up for dirt cheap (probably clearance)
But hey at least I'm firmly on Team Red now
But still, I do see a slight improvement so that's nice
Gonna have to readjust later tonight
Hmm
team full red over here i bathe in the glow of satan
has anyone worked with the SDL2 library for game dev
well i can see if i can help
well her is the basis
my images duplicate every time and eats up my ram
i dont know if i need them to put it in the game loop
what do you mean by duplicate?
You know how SDL_Textures are a pointer
yeah
lemme open up my program
So SDL_RenderCopy just puts it onto the window
I put this function into the game loop
its probably why it duplicates this much. But i have a destroytexture
well lets go over it, where is optimizedImageLoad from?
well im thinking the destroy texture part isnt actually destroying it
can you send the code for the RenderCopy function?
well im just trying to see if the Destroy can even find the optimizedImageLoad AFTER it goes through RenderCopy, cuz if not its destroying a blank variable and then the variable is given the image
@severe falcon rendercopy is a built in SDL2 function
ah
yeah its just im not seeing how optimizedImageLoad is in the scope of the Destroy

its been a while since ive done SDL2 but from just a basic programming standpoint these are some issues i see
Its alright 
i barely even see languages anymore, all the good ones seem to have similar syntax
so with what you said. oIL does not get get initialized, so it is always a null variable
the function just returns it
well its probably initialized, since its not giving some kind of error, but i dont think its actually getting the image
its a pointer right?
ok so maybe add a line before render copy when you have oIL point to returnLoadedImage() and then just put oIL in where rLI() is in the rendercopy arguments
like this?
it starts at about 30mb usage, and goes up like 3mb per seconds or two
and it doesnt stop?
huh its def a memleak but the problem is where
I do call the function in a while loop, because it needs to be re rendered after the screen clears
I know that when i put it outside of the while loop, it stops eating up ram
just that specific function?
yeah image create function
what's valgrind

brb, gotta clean the house for 5 min
yeah i cant really see whats causing the original issue
cuz rendercopy is just copying the texture to the render target
that could be the case but it appears to be freeing the old image so idk
returnLoadedImage does get called in the createImage function
maybe try to bypass returnLoadedImage and just put a hardcoded image in there?
well first get rid of my failed idea with oIL
got it, removed

i see
so instead of using
because it loads every time
in the loop
do you have it limited to a certain fps or is it just going as fast as possible?
and how big is the image youre loading?
but its freeing that image each time in the returnLoadedImage() though
the DestroyTexture does clear memory
but at the same time
it loads up again
thats what causes more ram usage
i think its loading faster than it is clearing
yeah it might just be it cant free fast enough
cuz if its only going up like 3 MB/s then it would seem to only be doing 6 fps if the image isnt clearing
yeah looks like i need to readjust loading image function and cap frame rate
actually i dont think it needs to repeatedly call rendercopy, if you can just redraw
ooof
rendercopy just puts it on the screen
yeah i think we are at the limit of my knowledge on SDL, i've been using just bufferedImage and pixel stuff with java for a while now
yeah i use that in my loop
oh i was just gonna run a test but then i dont have SDL2 library, oof me
cuz i have a tutorial code sample that has renderclear, rendercopy, and renderpresent all in the main loop, and im wondering why the renderclear is there
if it flushes the buffer
yeah it says do not assume the previous contents of the buffer are still there between calls to renderpresent
LOL
i put the loading function outside
and it takes 1gb of memory
@severe falcon
WHAT

SOMEONE PIN THAT AS THE DEFINITION OF BUG FIXING
and its supposed to use like what 20 at the most?
i mean i dont think we can mess it up further
so just remove the destroy part and see what it does
The console literally said: "Error: Insufficient memory"
and its not in the loop correct?
how much ram do you have?
8gb
WHAT
i think if you keep it running
it will just eat up all your ram
this is a good virus

its a better virus than Arma 3
is this what its for a vn?
an azur lane vn
i dont even know anymore
LOL
how have we broken this
i mean idk how far youve gotten but i know java and how to use buffered images soo if it comes down to sdl is cursed we can still fix it
kek
well another fix i can do is
remove them from the loop
and remove geometry rendering
because the only reason i neededto render the images in the loop because the geometry has to refresh
I have windows :^)
inb4 my raspberry pi sets on fire from that

OH CRAP I LEFT IT IN THE CAR BRBR
34ms delay is ~30fps
well 16.6666....
yeah i go with 17 when i do 60 for my stuff
just to be a weirdo
also my pi is now safe from the cold
added delay
still takes up memory
but slower
i added the 6ms delay
maybe i'll just remove the geometry rendering
i have SDL on my rpi but i think if i tried your code, i would run out of ram before the window popped up
lol
ok
it seems that the current code
i resetted everything
and i did piece by piece
with nothing, the program runs at 11mb ram
two image caps the program to 40mb ram
what is it doing
don't know 
"This is so sad, arduino, play despacito."
8-bit megalovania
this is how i feel about this entire ordeal
is this fine

because i took it out of the loop
i guess rendering it non stop in the loop was the problem all along
well ive found that no matter how small my program is, it always takes at least 25% cpu
even idling
so its good now
as a reward, here is a picture of unlimited power in the form of two credit cards
yes

and if christmas goes well, ill have a 2nd uno and a bunch of sensor things
i currently dont have a use for my uno since my pi is basically my programming center
except its network chip completely died so it has not seen the internet in about 2 years
and since the pi doesnt have a clock battery, the time is never correct
rip 
tfw rpi 4 is at phone level of power with 4GB
if she was centered on the screen id believe that was an in-game screenshot
cuz they start centered and then move over once another char exists
oh yeah
urright
thanks cyan
there we go
wait
isnt the name tag area darker
i need an ig sc
yes
its darker
its also a duller blue for the whole text box if you are trying to match the game
imma send a screenie in a sec
it is calibri
what the one you are using?
does calibri fix the letter spacing problem?
need the rgb? cuz its 169,245,72
yeah
๐
probably gonna have to just guess the textbox colors though, since its a slight gradient
what is kinkytime
the lewd time with enterprise
i figured
It's time to update to W10 fellas
i like how 70% of what you said was not included in that picture 
btw, is that wallpaper engine
im sticking with my win7 until they eventually break it for money
i do feel like downgrading to win7 cause win10 has a shit ton of unused crap taking my ram
I have to download it on .ISO format cuz my W7 is cracked af with RemoveWAT
yeah win7 doesnt have a bunch of background things eating ram
he says at 4GB usage
yeah its def the chrom e that i have open

i could install another 32gb of ram into my pc if wanted to but then i would also have to reduce the mhz from 2133mhz on my dominator sticks
pretty sure im still using 1600mhz
and with one dead i think thats the highest i can go
why is DDR3 still so expensive
shouldnt it have just plummeted by now?
ddr3 is still in a quite high demand for certain types of devices
and i think both samsung and hynix have switched over all its manufactory from ddr3 to ddr4 now
its still $30 for a single 4GB of DDR3 1600
so imma just save up for a new system
and college
more and more online game stores are released
discord just announced that they will let developers get 90%
even more than epic games
more competition to steam i guess
but then steam has regional pricing
and thats why i'm sticking with it
about the above
windows 10 is optimized greatly
but you might have to manually remove the bloat
then again I am working for microsoft so it might just have been my bias
THEY HAVE AN INSIDER TO GET US TO CONVERT TO W10

w10 is a great product
and it automatically get your drivers in order as well
that wasnt the case in w7

Does using vpn affect your downloaded games
All i know is that VPN is only affects the internet speed...
Not like you can't just VM a windows for most stuff. Main reason to dualboot anymore's games.
Folks want a pc for more than just games. And linux is sucking less on the gaming front, piece by piece.
linux
gaming
what
are you living in a mirror world or sth
pick a game on steam randomly
and 90% chances that you are not going to be able to play it on linux\
Proton is a thing. And you obviously didn't read where I distinctly said "piece by piece."
Hell. Go back even 3-5 years, and shit was considerably worse.
Alternative to sfc /scannow is using it but with a direction of a installed windows right? I'm having some problems recovering specific dlls
is anyone playing this game with razer phone
brushed dust away from vents
2C of temp reduction

oof
So yeah memtest86
what does memtest do?
A bootable utility specializing in testing RAM for errors and stability.
You're gonna need an USB for that
https://www.memtest86.com/technical.htm#win @severe falcon
been a while since i booted from usb, does it need to be blank?
Yes, you'll need to burn the contents onto there
Change the boot order or just select the USB as boot device from BIOS
Be sure you're plugging the USB in from the mobo's back IO
hammer F10, F11, F12 and Del while booting and hope one of them gets you into the quickboot menu 
Or F2
yeah
The download package includes a burn utility so you don't have to download one
Lenovo laptops and PCs sometimes also use Enter.. because why not
Also don't download Plus; Plus hasn't been updated for a long time
The utility runs a series of 13 tests, taking around 15 minutes or longer in my experience
4 times
(you can cancel at any point)
welp see you in like 20 min
Recommended you do all 4 passes since errors can crop up any time
But just do 1 if you don't have the time
doing it on servers with half a TB of ram is a lot of fun [insert image of skeleton in server room here]
oof
well i stopped it early because i saw it only said i have 12 GB, however my BIOS, OS, and MSI Afterburner can all detect i have 16, so i dont think it can help
also it was only going to test 12 G
But then again you suspected that your other sticks are gonna die soon after too
So might as well do it just to be sure
well i mean just based on i got them all at the same time
no idea what the MTTF on ram is but i had to send 2 back when i first got the ram cuz one was dead in the package, and now another has died 5/6 years later
Damn
i might do some checking to see which stick is dead my bets on the one without its heatsink
no they are all the same
but i had to remove a heatsink cuz my previous CPU heatsink was too big
and i have no idea where it put the ram's heatsink
I can feel the struggle even if I never had a heatsink that big
well it wasnt that big, but the ram's heatsink isnt flush with the top, it goes over quite a bit
Huh.
although the CPU heatsink was basically an engine block with a fan
What kind? Also what CPU?
Still pretty surprised at just how many people are stil rocking FX
its a great lil processor
Well hey, Team Red all the same huh?
but my whole system is at its limit so im waiting to do an entire new build
limit meaning i cant get newer parts to work with mobo
i mean i wont have the money for a few years cuz college and everything, but basically excatly the same but in the current generation
so AMD cpu, 16GB ram, nvidia graphics
might swing for two graphics cards though
my PSU is ready for 2 possibly 3, so rn its just idling for this system
What GPU do you have right now?
its a crappy GTX 950
i usd to have beautiful jet engine dual ATI cards that worked so well
Blower cards have always looked cool
Too bad Nvidia axed it in their Founders Editions
and then they kept crashing warthunder, the only game i was playing at the time
Also just a sidenote but dual cards are getting rather unfavorable unless you're going for used
High costs (especially with the RTX cards) and all that
i think ill just go with 2 lower 10 series
Or go AMD
No bridge required and support even on lower end cards
We'll have to see how their next gen cards do first tho
amd kinda burned its own bridge though
cuz the reason i finally got nvidia is that one week before just cause 3 came out, they dropped support for my ati cards and then my PREORDERED JC3 would go at 4 fps when i could do ultra rocket league at 60
Oh wow that sucks
yeah
Also I really should have found out more about the used market before pulling the trigger on the GT 730
my cards were from 2010, but i have a 2009 nvidia card that can still get all its drivers straight from nvidia
Could've easily bought an used 750 for the same price back then
But I don't care much about that anymore since I have my new rig for a good while now
R3 2200G and 1060 3 gig... sounds like silky smooth 1080p60
also couldnt find exact heatsink but heres something closeish
Though I do have to say mobo is rather limiting.
But hey, it was on sale; who am I to complain
Damn that thing has beef
AMD space heater jokes intensify
Glad AMD is doing so much better in the heat department now
but my precious ati card are probably dead now, LOOK AT THEIR GLORY
Damn that looks fine
also that old 2010 card has better cooling than my 2016 950
80% fan speed was loud
oofers
like i could hear it through the case, through my headphones
meanwhile my 950 at 100% idk what its even doing
i have to throttle it so it doesnt kill the processor from heat bleed
What is even that model
look at this ugly nvdia card
oh the model for the ati card is a radeon hd 5870, but its from sapphire
PNY hm? Cool.
Do have to feel bad for my cousin
Bought a system with a 950 weeks before 1050 came out
oof
cya
I had to fukin nuke my Cortana
Itโs so stupid how when I try to remove Cortana, Microsoft takes control and doesnโt allow you to delete it
yeah i kinda feel like it would benefit them more if they let the user have full control and then charge for having to fix their stupidity
"i accidently deleted cortana" "thatll be $159.99"
cain?
Password recovery tool
ikr 
Hell. Why does using a Microsoft account put yer bitlocker key on their servers?
tfw you have "100 Mbps" internet
Mmmm. Tasty Arch.
The difference between Nvidiaโs constant barrage of driver updates and AMDโs lack thereof is stunning
I have a Vega in my tower and a 1060 in my laptop and my laptop always offers a new update at least thrice a month
Whereas my Radeon GPU is relaxing
Depends on which OS. AMD's been releasing new AMDGPU versions regularly, Linux-side.
my radeons will never get another update to fix all the games it cant work with
Only time a radeon update ever only did mostly good was when Vulkan wasnโt running well on DOOM 2016 and New Colossus until a few updates fixed the initialization
I had to restart once for each update
even for major ones
what kind of potato do u ha- wait
are you dual booting by chance
oh good lord
how did you set up the dual boot
do you have 2 separate bootloaders in EFI
or one in EFI and one in MBR

that's the win 7 and xp way
it doesn't
ur windows boot manager is royally fucked
that's why it's restarting without success
and they don't apply after update
because it can't patch the microcode
grub is preventing that
separate them
windows with WBM
and linux with whatever bootloader u want
both installed on the EFI boot partition
with secure boot enabled
and CSM disabled
this way they can do whatever they want
and not interfere with each other
I thought secure boot invalidates Linux entirely
but you'll have to pick which to boot when you turn on the pc from the BIOS boot selector
@tame topaz unless you have the keys installed
which is like 4 commands
then rebuild the bootloader and you're good to go
mac UEFI BIOS is super neat
it'll detect what is available and if u have more than one valid boot point it will prompt you to pick
XP and linux?
XP and 10
yeah
Becaise I am a pleb
80 gig drive already has XP but is clearly running into BIOS-related issues
unless you want to change 4 BIOS settings every timevyou want to boot XP
Jeez
you're better off keeping it in a VM with direct pass through of devices
like the HDD
Elaborate?
basically you give the VM full control over the device
and the host can't do anything about it
Well all I want to do on XP is to just fuck around anyway so bleh
then you can just create a virtual disk
Tru
Now I have 2 spare 80 gigs, one IDE and one SATA just lying around
Asked it from the comp sci teacher for shits and giggles
Wow. I can't even imagine using a drive that small, anymore. My hecking music is 100 Gb and change, by itself.
Mbr holding grub, which chainloads windows = legacy mode trick.
UEFI uses an ESP (the 200 Mb Fat partition) to hold each OS's bootloader directly.
I don't get any of this, but I'm still interested 
The "hard" part with some linux distros is if they don't have the signed bootloader.
then you'd have to disable secure boot.
Another potential issue is how yer OEM set the BIOS up. Sometimes, even a signed distro won't boot in anything but legacy, at first. Then you gotta redo GRUB from the
inside to account for it.
Frankly, just research yer machine, first. So you know what issues might crop up.
You partitioned in mbr style, didn't you?
@mental coyote not really
if the keys are valid and the board is from a reputable brand you're all good
and yes in UEFI mode you have a ESP that has all the bootloaders, microcode and etc
when you POST you have to select the OS to boot then proceed to boot normally
Heh. All I can say to that is one situation that happened to me:
Last laptop, only distro that'd even boot in UEFI mode was Fedora. No such issue with this one.
(Mind you, that's laptops. At least for desktops, you pick yer own board to work with)
@mental coyote had 3 laptops, all booted Arch, Debian and Ubuntu just fine
one of them had a dead 3D GPU
still worked
just had to tell the kernel to ignore the GPU mux circuit
Coulda just been that cheapass Toshi.
probably
Never again do I buy their shit, mang.
for laptops I only trust MSI, Asus, Acer (mid-high end), Microsoft, Apple and Dell
I used to dig HP, but fuck hardware whitelisting.
I like MSI design, but the price in my country is nono
Yer gonna give Grub a complex, sayin that. 
at what point can i conclusively say my ISP is a filthy scumbag company who rips people off? advertised speed is 100 Mbps down and 10 Mbps up
should be when you have had around 80mbps or less for over 24 hours in a month that you can claim some money back, thats at least how it is in sweden
wanna see them now? 
my isp, telia, are marketing their internet in my area as 12-24mbps adsl, i get out ~13mbps on an average day, ~14mbps on a good one
That's really low
the highest ive seen, based on steam's download rate, is 35 mbps
its adsl so it doesnt go above 24mbps unless you have one of the more advanced and expensive dsl connections like vdsl
that's because the gaming LAN is limited to 200Mbits per device
meanwhile I'm trying to solve a god damn docker container problem
yeah when i was in college in another town i got even higher than that even though i shouldve only gotten 50mbps @subtle hawk
I'll have to stay until 2 AM and I have to wake up early tomorrow, help
Gl, I'm just trying to install w10 clearing previously all my shit from w7 oof
Moved all the important things first to another HDD and made some captures from the 160+ programs i had installed 

right now, amd is just completely trolling both intel and nvidia with their product names
tfw buffering on 144p
Gtx 2050 
I didn't heard of that
well TUL
And on your pic we can read RTX2060
Aaah ok
then stop fucking w10 and go to sleep
Almost there
Tomorrow gonna setup everything but now just finish installation and preconfig and go to sleep 4 hours at least
i have never had any win10 installs take longer than ~30 minutes at most
I've been waiting 3 fucking hours to format a big ass HDD
though all of them have been on ssds or fresh, 6gbit 7200rpm hdds
Holy shit, atleast I hsve my 600 GB steam games
I can pass them easy if I have the data
I've been living in 2009 for almost 8 years with W7 and some trashy HDDs lmao
took 15 minutes on my 2x 256gb 840 pro ssds in raid0
then it's a long ass time waiting for cortana to speak or for the fuking introduction slideshow bullshit
"Hi. Welcome to ur new pc"
bitch get me to desktop now
Gn bois, 2 AM and I have to get up at 7
that slideshow... like... why did they even introduce that thing?
sata ssd, myself. not the highest end stuff, but worlds ahead of the 5400 rpm shitbucket the laptop came with.
Hell of windows, u p d a t e s
on win7 you can completely disable updates 
well i got used to disabling updates since win7 would turn my laptop on in the middle of the night, where it was on the floor with its vent not able to get air and then update for a while
did i mention the laptop already had an overheating issue?
Never disable updates on a winbox. Way too much malware anal-reaming that OS.
still it was better than the win 8.1 update that happened to my friends' and teachers' laptops. it said "whippity woken, your built in wifi adapter is now broken"
@mental coyote ex-fuking-actly
Only arguable exception is VM Windows, since you can just resume that fucker from a prior snapshot.
i mean i still update my win7 its just that i killed auto updating
so i just set it to update when im at work one day
instead of in the middle of playing a game
ok so tech people, i have a friend who has win 10 and after looking up the error code, that needs installation media to recover, it happens when the computer is booting up. Weird part is that we were both playing destiny 2 and talking on discord when it happened. Any ideas as to what couldve caused that? error code: 0xc000000e
repair windows
yeah i know how to fix it, but i was wondering more on HOW it happened considering its only supposed to appear when booting
some critical windows file got corrupted while the pc was in use
ah so suicidal computer it is
So i went over with a win 10 usb and uhhhh, after saying it needed the usb 20 mins ago it now just started up no problem. Am i a beacon of technological luck or is there something else behind the crash?
i dont know, maybe you are
First rule of fixing technology: nothing will make sense, just accept rng-sama's technical blessings
power cycling also often helps basic tech problems
there is a reason tech supports often suggest "have you tried turning it off and on again?"
True.
well see i told him that before i went over there and problem didnt go away
I see there's a little gold piece sticking out of my audio jack, is there anything I can do? I suspect it's the cause of various pairs of my headphones messing up on me
It appears to be coming out of the inside of the jack
can you send a picture of it?
no it doesn't
that golden part is the ground of the jack
your headphones won't work without it
I don't see it sticking out of other things though
Is it possible it's damaged? My volume goes up randomly and the voice search turns on with seemingly any pair of headphones plugged in
It seems a small piece of it is sticking out more than it should
that's probably because you use phone earbuds that have a damaged control
happened to me before
but headphone jacks are VERY hard to break
So im trying to solve an issue for a friend, his desktop randomly black screens and dies. I checked the event logs and it apparently happens right before the comp shuts down, in addition to the random times. Another friend said it might be psu related, any other ideas about what could be happening?
motherboard?
Apci?
Well its random enough where i dont think its the apci, cuz oower draw doesnt seem to affect when it happens
Would having a beefier power supply than he needs contribute to the problem or does that not matter?
Or at least to psu problems in general
@severe falcon
Beefier power supplies generally only help towards future upgrades if one is going to get more parts for their build that equate to more wattage consumption. An 80+ bronze rated 300W PSU should function the same as an 80+ bronze rated 600W PSU, for example. If this problem is most likely stemming from your power supply, then it all comes down to the quality of the individual unit and generally not its wattage. Better to have a "weaker" PSU that actually works than a more powerful one with questionable up times
What the hell
Now my EK Vardar is vibrating like hell in my computer
2k RPM even when the system has just booted
A $171.5 case that goes for $8.5 on sale?!
Holy fuck how am I supposed to pass that up?!

check logs
oh wait...
for me it was installing fuckin updates at night when pc is hibernated and i'm sleeping
so i wake up in the morning and turning pc on and all of open windows/programs/anything unsaved is gone
and i turned off that updates group policy that windows cannot wake my pc up from hibernation anymore
F
Wonder if an UV cathode is bright enough on its own
Wallpaper engine is better than I expected
Friend gifted it to me yesterday, was surprised by how well it performs
Isnโt a resource hog either
because it almost shuts off completely when you you maximize a program
though it also depends on which wallpaper you are running, some are heavier on your machine than others
Anyone have experience with autohotkey or maybe scripting in general? Im running into a problem that i cant find anything about online
win10 is wonderful restarts randomly when I have it doing something that takes a long time making me lose some or all progress
I accidentally Overclock my father's PC GPU -_-
I'm soo dead rn...
I deleted the driver after i disable the GPU on safe mode...
( the screen graphics goes glitching out which forcing me to unplug the power cable )
But after that, some part of the wallpaper screen color goes inverted, and i have to unplug the cable once more...
And when i boot it up, it just won't boot up to BIOS, it's stuck in powering mode ( the electric status from power supply dropped every 6 second, preventing some stable electric supplies to the motherboard for booting up to BIOS )
( you guys can ignore that if you want )
the card will reset to factory if the OC is unstable
Is that actually bad or no?
And what is the meaning of it will reset to factory if it's unstable?
@broken ivy Meaning the card will go back to stock speeds if your overclock is unstable.
Is it?
Because when i accidentally overclock it and causes a graphical glitch ( like random pixel color block on screen ) i have to quickly unplugged the power cable because of my freakout reaction...
When i boot up, 2 minutes later,the screen got the same glitch, so i have to unplug it again, it happens 3 times...
So i decided to disable the GPU via Device manager on safe mode, and delete the driver, when i finish deleting it, some part of the screen got it colors inverted or turned into 8 bit color, so i unplug it one last time, when i try to boot up again, the PC won't boot up to BIOS, leaving a blank screen...
I put my ears closer to the PC when it's on, i hear that the eletric flow is stable ( by the sound of the fan ) suddenly went low then turns to normal ( the fan goes like power down, resulting a slower fan speed and quieter noise ) it happens non stop till I unplugged the power cable...
Reboots when it wants?
How come I never get that?
And somehow I never get the "update while still working" thing like many still complain either
Probably because I never do the sort of work you do
Dammit this is like the second or third pair headphones I've broken this year
I don't get free software.
Never have, never will.
not that I've ever cared about privacy anyway 
that sounds like potato laptop with hard drive
This tee definitely wasn't well thought out.
Nothing wrong
Na looks cool
T-shirt
Christmas
Can't you see anything wrong?
I mean at least they're kinda subtle about it so it's fine I s'pose.
Most heavy computer freaks ain't exactly "outside" people. t-shirt seems valid enough, imho
some people, like myself, like to keep my room/apartment cold and wear warm clothes instead of keeping it hot enough to only wear a tshirt
Does it actually really dangerous to increasing the MHZ of the GPU?
Cuz that's what I actually did to the GPU when i accidentally overclock it
increasing it too much maybe but todays gpus are smart enough to go into safe mode if it detects problems
@past bison If you don't know they accidentally borked their dad's GPU yesterday by OCing
Did you ever fix it though?
Is he angry?
First things first: what CPU is it?
it was the gpu, not cpu
AMD huh? Nice.
So my curiosity is telling to check it out
uninstalling gpu drivers should reset the gpu to stock speeds unless it flashed the bios to the new speeds
I already reinstall it...
Now my father is trying to unplug the GPU and check it's condition...
try using a driver cleaner such as ccleaner
there are other driver cleaners as well that are made for cleaning up just the gpu drivers
When the graphical glitch happen, i can't boot back into normal boot, since it will cause the glitch again, so i deactivate the GPU on safe mode first then i uninstall the GPU driver
Sheesh. Did you get whacked by the 4.19 data loss bug?
no
the drive finally died
latest backup is of 2 months ago
thank fuck data is rarely written to it
Hey. At least you followed good backup proceedure.
Imagine never backing that shit up at all.
JESUS!!!
I FINALLY FIXED MY FATHER'S PC!!!
Nice so what was the problem
This is why I leave OCs to the professionals
OCs are a gamble; high risk, high reward
By the time i tried to slide the MHZ thingy to the right...
And apply
It causing screen graphical glitch
Man, i was freak out on that time...
My instinct telling me to immediately unplug the power cable...
I got a virus once so I executed a purge of almost all my files though no "heavy" damage was sustained except my game data.
Oof
That's gonna took me my 5 years of my lunch money to buy that
its a good feature for when you dont use a plugged in hard drive
AMD GPU drivers?
Try running DDU over that and unistalling the AMD Drivers
going to check if I have turn off hard disk on my win10, might be the cause for the various freezes I've been experiencing at random
Finally got it (the light is too bad af to take a good picture atm)
Woah that looks cool
Shiny

hi im planning to buy a budget phone
what specs do i have to look for to run AL smoothly
@full quartz mine is using snapdragon 625
It's quite smooth, but sometimes it lags a bit
Overall it's playable
not really familiar with these
but i guess android 7 is playable and android 9 is the goal

Android version doesn't affect performance, tho you might want to buy at least version 7 for future proofing
4 gb ram is enough for now
What's most important in performance is the cpu specs
More ram only means more apps that you can open at the same time
i see
I have not so good CPU
so for cpu specs, any recommendations?
Snapdragon 660 or 636 is good budget cpu, an upgrade from snapdragon 625
If you have more budget, go for flagship specs (835, 845, or higher)
Dunno for equivalent of exynos, kirin, or mali
It's not as straightforward as snapdragon in naming 
Try watching the phone with said spec in youtube, it's easier to understand 
did some searching and yea they are saying kirin 659 is atleast better than snapdragon 626
so i guess thats fine
thanks!
hmm actually found another one with kirin 710 
i still using my old old phone, Samsung S4
Android One, yeet
Tried out Pie on my dad's Nokia 6.1 and it looks and feels mighty fine.
Kirin 960 is at pair with Snapdragon 820 I think
they didn't even bother putting an actual lid on the m7
that's not a MacBook board that's for sure
it's a dead GPD Win 2
there's glue and scribbles all over that board for some reason.. I think I got an actual prototype
Ay, may I ask
Can a stock Lenovo Ideapad 330 run emulator games?
A Nokia 8.1 for 88% off.
Mission com-FUCKING-plete!
That was one wild ride.
WOOOOOOOOOOO
How do I know if it's my headphones making my phone randomly switch volume and activate voice search or the port?
@vagrant yacht It is your headphones.
Happens when the wiring is screwed enough.
All my headphones that broke broke the same way.
@granite dagger what's the specs and what emulator? Searching on google shows multiple specs under the same name 
Fyi my laptop is asus x450c with i3-3217U, 2GB RAM, and intel 4000HD
It can run handheld (gba, nds), ps1, and some ps2 games. Can't run android games 
I'm referring to general emulators
I think it can, as my 5 years old laptop can run some of it too
Anything up to ps1 can be run by even a quad-arm phone. Yer lappy should be fine. PS2, you might need a bit more beef behind you.
why emulate when you have the original hardware
Some folks lack it.
my PS2 is still in mint condition
Ooooor, their games are scratched to fuck & back.
I dont have a PS2
couldve got my uncle's PS2, but he replaced it with a Xbox 360
like, goddamnit
I have unlimited power, fear me
The screen mounted to the block of wood is a raspberry pi "laptop" i can make it do the same thing XD
@severe falcon if you manage to edit the git binary to have a gud subcommand then props to you
oh wait, i forgot git was like a command
then i can do the same thing, with difficulty
only problem is that i dont think the UNOs can communicate with both the pi and each other at the same time
or can they
i mean they can, but they cant use the usb cables
who say u need the USB cables
true but i only has one battery with the right cable
what are even trying to make
i mean basically just mess around with all the things
first goal is remote control tic tac toe
cuz that actually seems doable
for that I have my development box
has a rpi, uno and a ton of sensors and motors
and some proto boards
yeah i had an rpi and an uno with some ancient resistors and chips from an old kit, but now i have the new one to use with it
i could always steal the big lcd from my 3d printer if i wanted to
you mean a brick of clay with some wire,s a keypad, and the display?
yes
XD
well technically that's C4
in its transportation wrapping
I had fun making one of those
requires a uno, a small buzzer, a 7 segment display and a keypad
oh and some styrofoam for the bulk of it
i dont think i have a buzzer, unless the ultrasonic thing can go low enough
yeah unfortunately the old kit had the speaker built into it
if you get a audio board as well then you can play the sound queues from the game
gonna dabble in some AI and then turn the pi and both unos into the MAGI from evangelion and have them decide everything for me

or get a array of small and big pis and turn your entire home into a almost fully autonomous building
OH WAIT i do have buzzers, one active, one passive
whatever that means
wait is the passive one a mic?
no
having a fully autonomous home without amazon or google listening to everything would be pretty good
cough






