#development
1 messages · Page 485 of 1
obamium
julium
julesprism
need jtwerk pyramid
the more i look at that picture the more i hate that selfie
@narrow mason







































WOOF WOOF BARK BARK BARK ARF ARF ARF RRRR SNARL WOOF WOOF GRRRRRRR RUFF RUFF ARF BARK BARK WOOF SNARL SNARL GRRRRRR GRRRR WOOF WOOF ARF








relatable
nfr




issa good selfie tho tbf
u see ppl out posting selfies with the absolute worst angles
are you talking about patching an app or something else
not sure if thats a typo or just some complex thing i've never heard of
true
GOD DAMN CALM DOWN BRO!
furry shepgoba
updated with the new version of dyldextractor, properly laid out on disk, and updated to 14.5
using iPhone10,3/10,6 ipsw
I don't steal anything
I need to read the code thu
why did u nerds delete the screenshot they sent now i cant look
finally got ssl on headers.krit.me only took like 7 months
cloudflare exists
while im aware of the feature and it's already proxied, it was kind of a "well if i can put in the effort to set it up on cloudflare why not just do it right"
which resulted in it just not getting done at any point bc the site is effectively static and has no need for SSL
gm
^^
although cloudflare does let you download a cert from them for full ssl, or you can just do letsencrypt
certbot is usually easy enough
the specific centos 8 vps headers.krit.me runs on had some weird issues with it tho
speaking of bare metal
jupyter hub with SSL on bare metal macOS is pain
wtf
i think openbsd pf is actually what's causing problems
trying to get nginx to proxy it bc both nginx and jupyter work fine with the domain
cert-manager is so simple and it supports letsencrypt dns01 from a lot of providers
I just use certbot with cloudflare DNS (my sites are not proxied, I only use them for DNS)
gave up on nginx
got ssl working manually in jupyter
macos was not built for these things
next step: run headers site from PHP 5.0 running on Windows 2000

Is it possible to put Xcode on a USB 
yea probably
nah it’ll work, but your usb isn’t gonna have a blast
that usb is literally gonna die
xcode is pretty heavy on disk usage i guess
Oh W, would theos work tho? Like wouldn’t theos try to locate Xcode files on the HDD?

hm; what storage size should I get in terms of the USB?
Rip that USB then
still gonna try
Doesn’t it expand to like 50gbs
hm
So all I do is install the XIP, move it to the usb, and unzip it?
Xcode 13 is 35 iirc
Oh W
For safety I’ll get something like 64gb or 128gb USB
Evelyn said the USB would die so that’s the only thing I’m worried abt
Almost as big as the MacBook itself LOL
get a 64gb
make sure its usb 3
by the time xcode finished extracting on a usb 2 drive ios 16 would be out
and it'll expand to around 31GB by default
and since 32gb flash drives usually have slightly less than 32gb of capacity that's just not gonna work
cd /Volumes/YourFlashDrive && xip -x ~/Downloads/Xcodefilenamehere.xip to avoid unzipping twice and to also skip the codesign crap

Guys, am I a failure for fucking up a 14 line long python script?
Yeah
use jupyter it is too nice
writing a big module in it rn
probably
F
yes
Nvm it is now working, 18 lines long.
I mean, I’m just starting. It is my first real script ffs
Download Github Co pilot, write comments, watch it steal someone else's source and boom now it works.
Programming 101 ^
stackoverflow 101
I made it by hand and you come here tell me I can just steal others work?
yeah
Pretty much
thats programming for you
AHH FFS
Add x terms of the Fibonacci sequence
Where x would be given by the user
The shit is, I am dealing with a mathematical sequence I haven’t studied yet.
generating Fibonacci numbers is tho
6 lines
fib(n) returns the nth fibonacci number in the sequence
Yeh, so I took a look, made a similar function and worked my code around it.
[fib(i) for i in range(20)] calls that function 20 times and creates a list of the results
sum() adds all the items in a list
Theos doesn’t try to locate anything like that. It uses Xcode-select and similar, so it’s not looking around in your disks
@silver rampart if you remove the [] from that sum call you’ll use less memory
neat, didn't know you could do that
I smell a W
Got synesthesia?

mmmm synesthesia
Synesthesia is a neurological condition in which information meant to stimulate one of your senses stimulates several of your senses. People who have synesthesia are called synesthetes. The word “synesthesia” comes from the Greek words: “synth” (which means “together”) and “ethesia” (which means “perception).Oct 24, 2018
I can confirm I do not have this
a for a in b is a generator expression
(a for a in b) is a generator
[a for a in b] is a list
{a for a in b} is a set (as long as a is hashable)
And you can pass a generator expression to many functions that take iterators so you don’t waste time and memory making a list that you’ll never use
But you smelled a W. That’s sus
W as in Wing of chicken 
I am terribly out of my depths with these new expressions you kids use nowadays

u forgot dictionary comprehension ;)
How do I use the same generator expression from the first line to make a dictionary?
{a:a for a in b} is different from a for a in b AST wise
PSA
If you are using PayPal Business to receive payments for tweaks, make sure to get micropayments enabled on your account. Payment rates are changing.
If your PayPal Business account is using standard rates, and you’re selling a $1 tweak (so, right now, PayPal is taking ~33¢), you’ll be left with around 48¢ for every $1 purchase starting on the 2nd of August.
I don’t think I can do (a:a for a in b)
ah thought you were just listing a bunch of python syntax sugar, didn't knew u meant to list the interchangeable alternatives
It came from the suggestion of changing
sum([a for a in b])
To
sum(a for a in b)
ah okay, didn't read back enough
Also, it’s “didn’t know”, not “didn’t knew” ;P
:( That was my first guess, but I corrected myself wrong lol
In that case this would've worked too
from functools import reduce # required for python 3 :(
reduce(lambda x, y:x + fib(y), range(20))
That’s right. Although it requires an import :P
Sometimes you just want to sum(map(fib, X)) and be done
U want an import free way of doing it, but still want to overengineer it?
s if (s:=0) or [0 for i in range(20) if not (s:=s+fib(i))] else 0
Uhh


hmm while we're on the topic for the hell of it
say I have an OrderedDict subclass, and a dictionary object I want to load into self from within the class
what'd the most efficient way to do that be?
(I’m already worried at the “ordered dict subclass” part)
Normally I’d have my class and use an internal dict (ordered or otherwise) for storage/reference
Otherwise, self.update(otherDict) probably
had that as well and then realized the object was only self.dictionary and a method to load the values into said dictionary
You’re abstracting at the wrong level, I’d say
Py2 or 3?
3
tbh the stuff in the subclasses' load functions should honestly probably be moved into Loader
Likely dont need ordereddict either, was just a precaution
If you want to have a python class that is a 1:1 representation of a yaml/json file then I’d suggest pydantic
It’s on pypi tho, so it’d be an external module
since this project will be on pypi i'll likely use quite a few external modules
for once
You can also save time writing
if name in self.deivers.keys():
As
if name in self.drivers:
But there’s a more pythonic way
i may end up sticking with the subclasses just to enforce typing so I or an unfamiliar contributor doesn't mix up the two
since their names dont really indicate what they do unless you think about it for like 5 seconds
Just
try:
return self.drivers[name]
except KeyError:
pass
...
would having the generation code in the indented except block, or after, be the better way
Since it’s a bunch of lines, I’d place it after
technically for Python 3.7+ you can just use dict instead of OrderedDict (or 3.6+ if you're using CPython)
already swapped to regular dict bc i ran through the driver files and verified order isn't important
I would have load_X do the loading itself and make a new get_X that does the try/except
try:
driver = self.drivers[name]
except KeyError:
driver = load_driver(name)
self.divers[name] = driver
return driver
you could also use {}.get(), so that it doesn't raise an error, and so that you can provide a default value
When do you load the value for the first time then?
dont want defaults here so not horribly necessary
This is a lazy loading system
if it equals None for example
It’s easier to ask for forgiveness than permission (do google this)
Just try to get it from the dict, if not catch the exception and load it right. Otherwise you’re making the dictionary look up the value twice
This is not pretty, but would probably work
self.drivers[name] = driver if (driver := self.drivers.get(name)) is not None else (driver := load_driver(name))
return driver
Not py3.8:
self.drivers[name] = self.drivers.get(name, load_driver(name))
return self.drivers[name]
wouldn't this load the driver anyway?
I like it and abuse it in many ways, quite useful for oneliners lol
I know, but I like to make them for school exercises or just for fun
Almost everything can be written in one line
Please don’t ;_;
That's why I bought an ultrawide monitor lol
Try running black on the biggest one liner you have
well, it doesn't like +80 characters right? at least flake8 doesn't like it
By default, yes. At work we use 120
also tryna keep it as not-depending-on-bleeding-edge-python-features as possible
ideally shooting for as low as possible on 3.x compat, maybe somehow 2.x if I don't use far too many 3.x features
(this may end up running on armv7 iphones and telesph. only has a py2 bin)
There’s enums34, pathlib and six to cover most things I would use if I needed to support that far back
I don't support anything below 3.6 for any code I write anymore
3.5 is EOL, and 3.6 will be too in December
but I still tend to support 3.6 in stuff that I publish and not just make for myself
even though some features like := in 3.8 are very nice
targeting python3 but i wanna make py2 users lives easier especially given what the module does
Python 3.5 and below is also pain because no f-strings
why tf is anyone using py2
.
who is using this with a tele phone

it's not something you have
well maybe it is but usually it happens when ur tripping balls
can someone point me towards a UIAlertController example? My code is crashing and i'm unsure why
shut up
because ur an actual idiot
thank you!
UIAlertController* alert = [UIAlertController alertControllerWithTitle:@"My Alert"
message:@"This is an alert."
preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction* defaultAction = [UIAlertAction actionWithTitle:@"OK" style:UIAlertActionStyleDefault
handler:^(UIAlertAction * action) {}];
[alert addAction:defaultAction];
[self presentViewController:alert animated:YES completion:nil];
stop asking idiotic questions after the answer is given
real
hearing colors 
i dont hear colors, i taste colours
real men edit the sdk to remove the deprecated warning so you can still compile UIAlertView on 11+
real men just write objc_msgSend calls in C to avoid the compiler checking if an object responds to a selector
real men use zig with objc runtime bindings


@narrow mason @misty cradle @twilit jungle @lethal ice true
true
cock
gm
say hey siri in sentinel mode, and you will see the phone respond 
ok

solche hurensöhne

wtf deutsch
wtf deutsch
das war ein guter film
ok

DasBaby
yes
wzf*
wahr
wahr
jack's wife: so you traded in the family cow for magic beans?!?
jack: wait let me explain [deep breath in] you can transfer them just like traditional money, but what sets them apart is the magic behind them - the blockchain stored on a decentralized ledger
4813
33146
LOL
rip
Anyone know of classdumpios (or such tool), that can be ran on iOS 14
classdump-dyld worked for me, or try classdank-dyld
classdank 
dank classes
dank aarnav
dank Amy
_ _
Danke

Anyone here fluent in Spanish and able/willing to help me translate some part-spanish part-english code to English?
gm
send
si (verdad) {
termina()
}

@vivid dew cat girl
how can i hook a completion block ?
`
- (NSMutableURLRequest *)multipartFormRequestWithMethod:(NSString *)method URLString:(NSString *)URLString parameters:(NSDictionary *)parameters constructingBodyWithBlock:(void (^)(id <AFMultipartFormData> formData))block error:(NSError * __autoreleasing *)error{ `
i wanna get formData but its in block
You replace it with your own block
but how can i get orig data?
When you replace it with your own block, the orig function should call your new block with the data
i will check now o/
There is no orig data since you aren't replacing the data. Its just data that is usually passed around.
i got it. i will test and feedback ! 😄
most keywords are english words, so...
I mean
good luck understanding this
usually it's an english and native language mix
dilo en arabica
i know тетради is keyboards
всё is everything
i'm so cool
and карандаши is pencils wtf duolingo taught me all this
books
i'm actually fluent in russian or something
yep, this is the way
note, you may need to copy the original block depending on the memory management situation of the method you're hooking, the logic that calls that method, and the way your code is written
see here for an example: https://github.com/hbang/libopener/blob/master/client/SpringBoard.x#L69-L77
oops I should have tagged @untold drift
no
ARC moment
Mr. Gh0st, what are your opinions on the "language" Javascript?
people tend to forget ARC only replaces retain/release, not copy 🤷♀️

Whats javascript?
que es javascripto
Swift "fixes" that by literally just copying shit all the time whether you like it or not

Yeah but it would have added an extra release in this case, no? hence why you need to copy it?
it has upsides like making immutable --> mutable soooo much easier, but downside is half the time I'm pondering how many unnecessary copies my code is doing

:nfr:
making an array mutable in objc: ```objc
NSMutableArray <MyType *> *mutableStuff = [stuff mutableCopy];
making an array mutable in swift: ```swift
var mutableStuff = stuff```
oh actually true it doesn't need casting does it
it's only in swift it does because swift just ignores objc generics for SOME REASON
yes, but if you don't specify it you're throwing away type info you want to be there
f
true
if you have an NSArray <MyThing *> * and assign it to a var of type NSArray * it just goes "ok
" and doesn't question you throwing away the generic type
while Swift either infers it or yells at you to specify it
yo is there a guide anywhere on how to tweak apps and stuff. tryna mess with spotify
so gn
@primal perch ye i finished it
true
i did it. Thanks for all helps guys ❤️
can you download flex 3 beta by ipa?
what

Wanted to ask, what good resources are there to learn c++?
i feel so good rn bc my one trimester of russian taught me the words for books, notebooks, pencils, and "everything"
do not say book in russian
Adding the array or dictionary type also helps in autocomplete
jules
fr?
google or buy a book
yes but more people use C++ these days

C is kinda dead out of very low level stuff
Unless your writing some GTK app or somethin
Even then most people would use the GTK4 Rust Bindings
saying "C is better than C++" is
that makes no sense ur comparing apples and oranges
except the orange in this case is also made of apple
u use C++ when u need C++ or want object oriented stuff that's not limited to apple devices, u use C or another procedural language when ur not doing that
and u use rust when u have linux as ur main OS
u use rust when you are brainded
u use rust when btw u use rust
btw ur mother uses rust
btw I use ur mother and rust
@faint timber why everyone be hating rust bro
Because no one likes that guy anyway

Because no matter how much you use it everyday, you’ll always be rusty

because why not
I guess that’s how the devs of Gentoo had the brilliant idea of building portage in Python
the stans
gm
basically dream stan thing nowadays
for every dream stan u see there are 10x more exponentially annoying "bruh
dream stands be like
durr i am tdream stain"
same with, rust, arch, anything that exists with a fanbase, anything redditors look at whatsoever, etc





irónico
ironico
irónico
irónico

f
I love leaking memory
sounds about right ye

not really
of all the things you could make fun of about objc you picked one that isn’t a problem lol
ah yes where have we heard this
evergreen message
continued
ty
loss
and this year it was like 0%

i didnt at all expect to get in
wild
happy with my college though
@unkempt oriole basically what @gaunt mesa said, to answer your question
every time i ask the finger gets pointed elsewhere :p
i wonder if itll ever happen
yeah there's a lot of finger pointing
heh well, we’re a lot closer to the realm of possibility than we ever were before
I think it’s feasible very soon
only worry is by the time if/when it happens checkra1n will be "irrelevant"
http i hope
the only correct one
https is overrated
i found optimo
checkra1n irrelevant?
did i miss something
yeah kinda is rn
uh oh
its not really up to me 


it wouldn’t anyway because the tars are signed and verified by loader
I wish I had the key cause I have server access
beg sam
make the tweak have 90 more features instead of 90 more drm security points
The way i look at it theres gotta be some kind of discussion between both parties to get it going because every time i ask individually the finger gets pointed to the other side of the fence. Quite honestly I just wanted to see if it was even of interest on your guys' part.
?
¿
its definitely an interest of mine but its not really possible until aarnav finishes his elu support patches
bro it’s a couple mshookmessage calls why does everyone feel the need to secure the fuck out of it
capt
where is this convo
real bro
definitely, ill ask again in 9 months :p
like shut the hell up bro
get real
dw its not far off
that should be when your baby brother comes in

nah thats more like 1-2 months
it mostly works on elu now theres just some small things left

capt is white
:)
amy is gay
retweet
cameron is jewish
nice bro sorry i missed your bar mitzvah
sileo now works on tele
shabbat shalom brother KKomrade
anyone want to buy 0.05 eth
היהודים שולטים בעולם
wtf Jews
@unkempt oriole hey bro when am i getting carbridge 3.0 pre-release
2 busy with other projects

i didn't realize we were using windows 98
only now you realise this????
chariz runs on a win98 server
packix*
for maximum security
ffs how did you know
sorry i meant twickd
who
no packix uses windows 3.1
exactly
Oh shit
geometrics 
no?
yes
unironically windows 3.1 > all linux
kirb exposed security
it’s been confirmed
we run chariz on charizardOS
that OS is developed by the charizard slaves in the shed
just running latest node on windows 98 as ya do
is that a linux distro
@gaunt mesa is chariz hosted in the shed?
it’s your mom now
i wish
it’s actually based on TempleOS
@tepid olive moment
bro wtf?
chariz website should be in holy-c
when did we do that
you didn’t see all the HolyC files in the repo??
it’s about his malware he’s distributing on his packages
^
@lime pivot are you saying you got zebra bootstrap components done or something? I hadn't heard anything about that
well it can exist at any moment I guess?
real
you gotta pour holly water on your computer or It'll just throw vague compiler errors
Stumbled across a Mac virus
It installs vypervpn then redirects traffic to their host
hi
true
I’d like to ask for some help on something
Does apple have an API which I can fetch the latest release of an iOS or MacOS release (whenever it releases) and publish it in webhook form here on discord
I’ve seen it in a server somewhere
Unsupported Macs
There’s no public api but you can get that data if you look at the right endpoints. Alternatively you can use something like https://ipsw.me/api/ios/docs/2.1/Changelog
Download current and previous versions of Apple's iOS Firmware and receive push notifications when new firmwares are released
boba best
gm
gm
garbage
@restive ether
real
everyone on ios 13 still
look at this amazing discord image quality
awesome job furries
just remember some people are still on 11 waiting for an untether
talk about down bad
fr
unless we get another check rain im done with jb forever on my personal
stock is just so much better
semi untethers bad
real bro
real
@restive ether why is ur pfp like 140p

used to it at this point 
clearly those mfs have been using the same weeb pfps for 4 years now so they never checked
furry
they really want 10$ a month for broken shit javascript program
lol
500kb for stickers is a joke
literally to send certain image file totes lol
yea
how the fuck do you get a high quality apng in 500kb
You dont
that’s some extra compression
emojis i can kinda understand
i pay $10 and can’t even take advantage of apng quality
tf is the point of supporting apng if you can’t fit a full quality one in a sticker
true furry move
looks like junk
lol bro
i can’t tell if this is just fucked or discord being poor

weeb
@restive ether oh yeah cant forget apngs dont even render properly in the ios app
legit
thanks man
worth the $10
it doesn’t even sound like him
he did that drake BS man
hundreds of millions of dollars of revenue
i liked that song he did for pokémon
cant be assed to pay 10 devs 100k for 1 year to make a native ios app
the hootie cover
bro amy made a native ios client in under a month that’s better than their’s
these mfs simply do not care
stupid mfers
just give an ios one at least ong
since battery is actually important there
on desktop i dont care as much
they just don’t wanna deal with different platforms
but still do
let your users get 10 minutes of battery life and wreck their memory modules instead
write actual code or use one codebase
yeah lets take the javascript route

js is fine bro i have nothing against it
only when its used for desktop apps
good for web
not good for apps
we do a little writing
android apps arent even native
we do a little jvm

electron was one of development’s greatest mistakes
Soon it'll be so good that it will be negative
real furry energy
:pepeleave:
bro macos has the best fucking development ecosystem because its so easy to make non shit apps
tfw amy’s native client uses 15mb
something something appkit bug
just make linux users use wine 
yea based
use a library
thats the only real option
dont even try to use libxorg or whatever itis
libx11
linux users cant shit on nvidia anymore now oh noes
since theyre pretty close to full wayland support
knowing them it won’t even work
nvidia drivers are well made on linux too
people just hate them because "closed source"
@twilit jungle you ever had problems with nv on linux
its in their best interest to write good linux drivers because server / ai space uses cards
Nah
wayland just needs to git gud
true
not even really waylands fault anymore
the real reason nobody uses linux is because linux mfers cant even agree on what to use
its like the libertarian party
so you have lke 9 options for each system component and each is unsupported and shitty
i don’t really think it makes a difference in the end
as long as the low level stuff is the same
high level is whatever
as long as the dev’s stuff you’re using isn’t braindead and sticks with the mainstream stuff it’s whatever
like if you used some weird ass fork of openssl instead of openssl you’re just a dumbass
id be happy to daily drive it when my programs actually run on it
but nah the solution™️ to having any program that doesnt work is dual boot
too late bro windows 11 is the answer to all
which isnt a solution its just a pain in the ass
true bro
windows 11 unironically looks good
the good thing about that is you can sideload apks without amazon store
just get that shit from google play or whatev and ur gaming
clash royale on the pc
without some shit ass android emulator
yea but if you arent a tard then ur fine
ill probably only be getting very commonly used apps
or open source ones that are compiled or wahtever
the answer to all problems is to make BSD mainstream
because the FSF is wack
and windows is wack
and apple is uh
apple
real
real
its a cult
i believe GNU actually stifles linux adoption in a more mainstream audience
because they’re like those weirdos you find on the linux server who tell you what you should do when you didn’t ask
more people need to use firefox though ngl
its just slow
so google takes the mf hint
the lack of change in the chromium user base only makes them care less
mozilla he running out of money tho
homies need some support
their fault for shitty management but they can’t go under lol
bad for everyone
loss
truth
true
piss pack
never seen a project literally kill itself so fast
what did gimp do
suck
yea
real
gimp good bro 
linux users will unironically say to use gimp over photoshop
because linux is good
anyone that says that might have a mental disorder
bro i’m sorry but no amount of change will make me use photoshop
because fuck adobe
maybe pirate it fuck then
i just wanna know who is giving them money so they stay afloat
literally never met someone who pays for creative cloud
startups who have to be legal
tons of youtubers
real
like one company i wrote a project for
they paid for all their licenses and the mere suggestion that i use pirated illustrator made the guy go like "oh shit lets just stay all legal"

mfs better pay for your license then
if the pricing model wasn’t so shit i’d consider it
but it’s cancer
ye
just like if windows ever goes subscription based theyd lose a lot of users who dont know how to pirate / dont care to
they wont
because it would be suicide
all i know
is if i just bought a 2k computer
and couldn’t use windows 11
i’d sell it
and buy a macbook
right know microsoft is trying to push this linux inclusion on their platform because they know so many devs are leaving it for macos and linux
yeah that was pretty evident
quit being fucking pussies and just switch to the linux kernel
cant say im complaining

windows should just be a shitty linux distro instead of some wack NT shit
because i can build my tweaks without having to reboot to shit
they need to move to bsd kernel
linux bad
blah blah blah i need to use my windows 3.1 programs in 2021
intel based
unc0ver for windows
real
yeah just get rid of pac and mte so we get the 5% more performance
real
mte sure
windows oems are terrible
i’m cool with pac
shit hardware in their laptops
windows itself is plenty stable if you have decent hardware but whatever the oems use is terrible
we need build-a-laptop bro
shit drivers too
tryna make the hand warmer 3000 over here
if you want a good windows experience just buy intel/nvidia and enjoy rock solid stability
for desktop
dont even bother with windows laptop just buy a m1
i wanna buy ryzen so i can have a stroke using any usb device
dude ong
buy a windows arm book if you hate yourself so much
windows made the mistake of not being apple
yea so true bro
their driver team is literally A tier
gpu drivers are so good theyll save energy by blanking out the screen
its optimization
you gotta turn off the eco option bro
saving the earth by forcing neckbeards off their computer
amd gpu drivers on mac 
For a couple of days
Never fail, after 3 months or so it gets to where i open and close a stock menu and that menu will never open again till a reboot
Doesnt matter my usage or usecase
this is why we should all use BSD
Does a safari based jailbreak mean the jailbreak will stop when you quit your’e phone?
Safari JBs are semi-untethered like app-based ones unless chained with additional persistence exploits
only difference is no need to sign the app
Aight thanks bro
Ah, good old jailbreakme times when you could Slide to Jailbreak and get untethered jb
the only jb you can kind of trust to be stable now on all devices it supports is checkra1n tbh
u0 is a disaster
jailbreaking everything at apple store 
You know an even better technique? Use the things at the apple store to jb your even device

someone on r/jb jailbroke an iPhone 8 at the Apple Store with an iMac Pro
(checkra1n, nov 2019)
this is why we should all use LSD
no don't buy Intel CPUs
AMD CPUs + NVIDIA GPU is a good combo
real
real
my CPU socket just has a raspberry pi running a python program to translate all CPU instructions to GPU instructions. people who use CPUs are stupid, just run everything on your GPU
the raspberry pi does the same thing, it just has a smaller raspberry pi instead of the CPU
@rain prairie fun fact raspberry PI actually boots to the GPU first and then powers on the CPU after
that's the basis of my setup
except instead of powering up the CPU, it just boots up a smaller raspberry pi
it's kinda recursive but it does work as long as you don't think about the physics questions it raises
real
amd motherboards have awful usb controllers...
that's the only thing I don't like about amd :/
this
i’ve read the horror stories and i amd sounds great otherwise
yea
gotta stop those malicious messages that try to pretend they're from springboard

go get gordita
true tonight
friendly reminder from your neighborhood taco bell shill

why can't i write tweaks in html
it's my fav programming language and it's unsupported
how do I log an NSData* as hex? I thought it would do that by default passing it to os_log with %@ (which calls description) but that truncates it if it's too long
(I could write the code to convert it to hex myself, just wondering if there's some obvious framework method I'm missing)










