#development

1 messages · Page 590 of 1

grim sparrow
#

omg this file is nearly 1000 lines long

high citrus
#

wouldn't this limit you in the future?

#

like not being able to implement search in the items

grim sparrow
#

they're parsed straight into memory at launch

high citrus
#

or what happens when a item changes name

grim sparrow
#

thats never going to happen

high citrus
#

or price

grim sparrow
#

its a historic log of a transaction at that time

high citrus
#

oh in that case you would indeed want to make some kinda snapshot

grim sparrow
#

think fuel prices, if you bought some today for $50, your receipt doesn't change to $70 in a weeks time

#

because you know, fuel crisis

#

its essentially just a table of receipts, not things you can buy now

high citrus
#

I guess this isn't that bad then, but could've been prevented with a few extra tables and some fancy queries

grim sparrow
#

thats what I did for things like timetables

#

but they are far more complicated and can be manipulated because they're future data

#

such as a temporary room change

high citrus
#

i've seen legacy databases where there are massive tables with like 50 fields and where many things are stored at different places at the same time uhh

grim sparrow
#

this whole file is so convoluted

#

its just a bunch of different database structures

#

and this sorta stuff

high citrus
#

is that homework.updatehomework {} a method call with a callback?

grim sparrow
#

see now that I'm looking at it

#

I could just update completeTask to be a callback and just pass that in

#

to each one

ocean raptor
#

You should join

restive ether
#

oh wtf he’s here

#

i give developer

hardy glen
#

Can you tell someone to suck your dick in r/jailbreak under ur post

untold river
#

maybe

#

i dont recommend it

#

but probably

restive ether
grim sparrow
restive ether
#

oh right pj isn’t here anymore

tepid olive
#

Pee Jay

#

Lovely

restive ether
#

pee

grim sparrow
#

poo

soft wraith
#

does anyone know how to compile an ipa from github?

grim sparrow
#

I'm guessing they mean compile an app from source?

restive ether
#

change the file extension

grim sparrow
#

.zip -> .ipa

#

ezpz

restive ether
#

fr

grim sparrow
#

Trans Girl: Gets surgery
Penis -> Penwas

tepid olive
#

trans guy: gets surgery
boobi(e)s -> boobwas

primal perch
#

you can though

#

clang <files> --ipa -o App.ipa

#

will use your saved account in xcode

ocean raptor
primal perch
indigo peak
tepid olive
#

do ios apps use the same encryption as itunes movies

tepid olive
tepid olive
# tepid olive do ios apps use the same encryption as itunes movies

iTunes on Windows kinda does but that has been upgraded somewhat too
there was an open source tool up to iTunes 10.7 but Apple has blocked that version from getting anything higher than SD since then
there are closed source / paid tools up to iTunes 12.6 or so
but on macOS/iOS they now use a new FairPlay Streaming DRM which is quite different from the old FairPlay (and is the only way to get 4K)

#

what about for apps

#

apps still use the old FairPlay, since you don't stream apps fr

#

cool

primal perch
#

GET_HOES

stuck wyvern
#

how

ocean raptor
#

It will for dpkg-deb so I assume dm.pl too, I don't believe dpkg will allow mixed compression algorithms.

restive ether
#

i love when the tar doesn’t have the right extension

#

odyssey moment

ocean raptor
restive ether
#

decompress it with gzip and see if it fails idk

ocean raptor
#

Just run file on it...

restive ether
#

oh that’s true

#

what about the data

#

lol

primal perch
#

wheres the joke

#

triangle sent a message that seems to be unironic but that cant be

restive ether
#

i can’t tell

#

my brain doesn’t like that

primal perch
#

yea

vivid dew
#

i had this bootleg script once that produced gzipped control archives and lzma data ones

primal perch
#

i feel uncomfortable

prisma grove
#

Don't use objc_msgSend, I know, I know, but what am I doing wrong: This works [Animator pageFade:view : offset];, but this doesn't ((void(*)(Class, SEL, UIView *, float)) objc_msgSend) (Animator.class, @selector(pageFade::), view, offset); . The class is just ```@interface Animator : NSObject

  • (void)pageFade:(UIView * _Nonnull)page :(CGFloat)offset;
    @end```
vivid dew
restive ether
#

there we go

primal perch
#

thats bet ter

ocean raptor
#

Go ahead, PR the fix to dm.pl

#

Make it so that the data and control use the same compression

vivid dew
#

that won't work, dpkg doesn't support the same set of methods for control and data

#

from man 5 deb, control only supports gz and xz

ocean raptor
vivid dew
ocean raptor
#

It's correct, leave it

vivid dew
#

i can't read perl

prisma grove
#

Oh it was literally just float instead of CGFloat for why it wasn't working. How exactly does the compiler do type checking? The 2 colon thing is because Swift is weird, that wasn't an issue

#

Thank you for your help!

vivid dew
#

it doesn't since you explicitly casted objc_msgSend

#

also unnamed parameters are fine and legal in objc

#
  • (void)trolling:(id)obj :(id)obj2
ocean raptor
grim sparrow
#

^

vivid dew
#

[self trolling:nil :nil]

prisma grove
#

Also, what then is considered the "proper" way to use a primitive type for something like that. because performSelector make you do a bunch of casting to/from NSNumber

ocean raptor
#

I don't know Perl

lime pivot
#

hello

#

that's correct

#

control still uses gz, though recently they added xz as an option

#

but why?

#

lmao

#

you probably don't have the module installed?

#

IO::Compress::Xz isn't shipped by default, and it has native bindings to liblzma so we can't really vendor it ourselves

#

cpan IO::Compress::Xz

#

on macOS?

#

applerollingeyes it should work

#

is this cpan from pro or macOS

#

try macOS just in case

#

because at least I know that should work

#

as in invoke as /usr/bin/cpan

#

dammit

#

well either way, you prolly just want to copy paste the logic used just below for compressing data.tar

#

which uses a subprocess rather than native modules

#

that definitely needs to be refactored into its own func

#

yeah

#

well, there's more lines below close()

#

all of it up to the waitpid

#

change $indir --> $controldir and the rest should be totally fine as-is

#

well, to be more specific, just copy paste lines 116-156

#

in place of lines 107-110

#

and, obv, the print_ar_record() line will need some adjusting

#

$ADMINARCHIVENAME needs to be rewritten to end in .xz

#

yep

#

same as the last 2 lines of the data block effectively, just, obv, change the filename

#

also go to line 36 and take .gz out of the name

#

you can use ar x blah.deb to see what was actually generated

untold river
#

did you have debian-binary in your ar

#

ar t bruh.deb to list contents

lime pivot
#

yep there you go

#

yep

#

or just double click if you have the unarchiver

#

wish the unarchiver would extract as a deb with control stuff moved into a DEBIAN/ dir, but oh well

#

useful when you need to inspect the ar at least

primal perch
#

macOS 12.4 beta 1 is lauching on March 22, 10AM PST

#

ew perl

untold river
#

p*rl

#

🤢

zenith hatch
#

p*erl

#

wait fuck

lime pivot
#

mixing tabs and spaces 😱

#

don't use xcode 🙃

#

its tab/space width detection is still broken

#

actually even ignores tabs/spaces settings set in the xcodeproj, which if you didn't realise that feature exists, I don't blame you at all

primal perch
lime pivot
#

not wrong

#

@tepid olive stop breaking xcode

tepid olive
#

sorry im making it 10gb bigger and 10 minutes slower to extract

untold river
#

apple really made their own format and then fucked up at decompressing it

indigo peak
#

Average developer phone cord

tepid olive
#

what’s that? you want more simulators?

untold river
#

(i broke mine)

#

introducing xstd

#

the new xcode compression format

#

it compresses worse than xip and also extracts slower than xip

zenith hatch
#

beerpsi guess what

untold river
#

its only goal is to maximize developer's suffering

untold river
zenith hatch
untold river
zenith hatch
#

uhm

untold river
#

the shit that youtube uses nowadays

zenith hatch
#

probably not

#

but youtube has their own shit in the yt app for that

#

ofc

untold river
#

Pornhub client for watchOS when @zenith hatch

zenith hatch
#

no.

tepid olive
#

inutt for watchos

untold river
#

inutt jailed

zenith hatch
untold river
zenith hatch
untold river
#

obv

#

tr

zenith hatch
#

fully interactive page turns and all that

#

and a search engine

#

dont ask why

untold river
#

🤨

zenith hatch
#

someone asked.

#

anyways

untold river
#

overenginnered makefile just for git build metadata

zenith hatch
#

too lazy wholesome

untold river
#

it's just some git commands

zenith hatch
lime pivot
#

gold or silver contacts on that lightning connector? I think I see gold

#

the silver contacts are the new cables that don’t self destruct from merely existing

#

with the caveat of broken DFU mode (no checkrain)

tepid olive
#

the usb c ones?

zenith hatch
#

yeah

lime pivot
#

I assumed it’d be all cables now

#

also comes with a revised controller/auth chip

zenith hatch
#

i wonder if ios 15.4 is fucked on the studio display

#

maybe during the skinning of ios 15.4 they caused some vulnerabilities troll

#

jailbreak studio display

stuck wyvern
#

I wonder if it'stripped down or if it's hackable enough to get ios to output on the display itself

lime pivot
#

lmao

stuck wyvern
#

doubt it though

zenith hatch
#

true

lime pivot
#

is there any USB-C passthrough on the display?

zenith hatch
#

yes

indigo peak
untold river
indigo peak
#

straight violation

lime pivot
untold river
zenith hatch
#

and power

#

idk what other io is on the display

lime pivot
#

yeah that's exactly the studio display I was thinking of google

#

god ADC was an abomination

#

boy is it a good thing those days are over

zenith hatch
#

true

restive ether
#

white

zenith hatch
#

white

restive ether
zenith hatch
#

it pretty much is iirc

lime pivot
#

ever just wanted to send 24V through the same cable as your 1V display signal?

zenith hatch
#

adp does that?

restive ether
#

all the time

zenith hatch
#

bruh

untold river
#

apple doing apple things

lime pivot
#

yep that's why it's DVI with an intentionally-incompatible connector shape

stuck wyvern
#

daily

zenith hatch
#

hourly

restive ether
#

yes

untold river
#

i'd rather 10k volts through keto but toilet cat would also do

stuck wyvern
lime pivot
#

I have a graphics card out of a dead PowerMac G5 that has 1 DVI and 1 ADC

indigo peak
zenith hatch
#

keto

indigo peak
#

not so funny now is it

#

🥲

zenith hatch
#

beerpiss

lime pivot
stuck wyvern
#

how is that an insult, Kirb is a fine looking man

lime pivot
indigo peak
#

its extremely hard to insult kirb

stuck wyvern
#

he's just that good

indigo peak
#

fr

restive ether
#

white

#

kirb FUCKS

stuck wyvern
#

ok &

undone nest
#

white

lime pivot
#

gonna have to if it's the only toilet in the house

indigo peak
#

guys

#

im learning swift

zenith hatch
indigo peak
#

nah

stuck wyvern
indigo peak
#

show me anyways

zenith hatch
lime pivot
#

actually thinking of growing out my hair again and this time, actually bothering to style it properly

indigo peak
zenith hatch
#

disclaimer this is not my watchface its made by someone else

stuck wyvern
zenith hatch
stuck wyvern
#

the only person I like in this server is Kirb

lime pivot
#

wait

#

I take that back

indigo peak
stuck wyvern
#

LOL

zenith hatch
#

lol

undone nest
zenith hatch
#

and me

undone nest
#

:(

lime pivot
zenith hatch
#

man

undone nest
stuck wyvern
#

I am going to delay Taurine 15's release by asking cs to play overwatch with me trol

zenith hatch
#

good

#

play for a good few months

restive ether
stuck wyvern
indigo peak
restive ether
#

not my fault your client is ass

indigo peak
#

i saw the live leak and thought the person was going to be hit by a car

zenith hatch
#

maths

indigo peak
#

@stuck wyvern fuck swift im going back to objc

#

i deadass just stopped typing before objc because i thought github copilot was going to finish the sentence

lime pivot
#

lmao

#

copilot is insane man

#

I've had moments where it's clearly taken code from something open source, but it's also tweaked it to match almost perfectly with my codebase, eg using the correct model types

#

writing logic that you know will only go a certain way is easier than reasoning about something I guess

#

I definitely get the same

#

yeah not knowing where to start is another thing

#

I figure part of it is because we do get blocked when writing code sometimes, but people like us tend to think a lot about that code all the time even when we're away from it

#

or what we have to do next at a high level, like oh yeah I know tomorrow I need to work on this class

#

writing an essay for school, probably not something you're actively thinking about

gentle grove
#

What might work is to learn about it and then find a more specific direction to go in

#

then find like a topic question sort of

#

right

#

put what exactly into worfs

#

Words

#

yeah so you need a more specific 'question' then

lime pivot
#

could take an approach like how does Apple connect to its potential customers by showing them unique features of iPhone, and at the same time even teach current iPhone owners some new tricks

primal perch
#

bro just like write it

#

if its double spaced its eeven easier

#

yeah you can shit that out in 30 mins then

#

at max

gentle grove
#

True

lime pivot
#

that was definitely a strategy they used in the first few years of iPhone ads

gentle grove
#

I wouldn't myself but

primal perch
#

i used to suck at writing but after my first year college writing class i can do 5-7 pages

#

of which im about to finish

lime pivot
#

show potential new customers why they want an iPhone, and show existing customers more reasons to appreciate their purchase

primal perch
#

ill do it for 25$

gentle grove
#

we did a research paper last few weeks in history class

lime pivot
#

and hopefully recommend it to friends

gentle grove
#

also like 5-7 pages sort of

#

roughly

#

Paragraphs acrually

#

why do i have so many drivers installed

#

why is this image not copying to clipboard

indigo peak
#

ong

#

yes

#

its absolutely amazing

#

i used it for calculator history

#

and im using it for something now

#

its the best thing ever

gentle grove
#

shut up

#

im trying to use wayland

#

trying to copy images to clipboard from specatacle

#

after taking screenshot

lime pivot
#

man wayland still makes me sad

gentle grove
#

oh of course it works with specatacle open

#

but not with keyboard shortcut

lime pivot
#

I tried to teamviewer to my machine the other day

gentle grove
lime pivot
#

gnome-shell crashed (it's a beta so whatever)

#

then TeamViewer just, broke

#

it took me half an hour to figure out it was sitting at the lock screen, which runs on Wayland

#

and that you have to edit gdm config to make it use Xorg

gentle grove
#

why does it work now

#

it works now but spectacle keeps opening

lime pivot
#

mostly unrelated, how the hell do I find out what's preventing my display from going to sleep

#

if I press win super+L, it just stays there

#

doesn't turn off

#

it randomly works and then randomly stops working

gentle grove
#

i am using kde

lime pivot
#

I keep trying to google but every result is "how do I stop my display from going to sleep"

#

no I want to stop my display from stopping sleep ffs

gentle grove
#

idk how gnome works

#

GRAPHICAL GLITCHES

lime pivot
#

the GNU Nome

gentle grove
#

how tf do i tell which programs are running as xwayland

tepid olive
gentle grove
#

or was that just for nvidia

indigo peak
#

i want to make a list of all the sites i found that i use for ios dev and just send it in hopes of it being pinned

#

🥲

gentle grove
#

Operating System: Arch Linux
KDE Plasma Version: 5.24.3
KDE Frameworks Version: 5.92.0
Qt Version: 5.15.3
Kernel Version: 5.16.15-arch1-1 (64-bit)
Graphics Platform: Wayland
Processors: 4 × Intel® Core™ i5-2310 CPU @ 2.90GHz
Memory: 15.6 GiB of RAM
Graphics Processor: NVIDIA GeForce GTX 1050 Ti/PCIe/SSE2

#

wholesome

indigo peak
#

but i never know what to pin

#

ive pinned 1 messag

lime pivot
#
lime pivot
gentle grove
#

nfr

#

i use searx

indigo peak
#

so then in 1 year ill go down in the pins of fame when i eventually leave/get banned and my name will be white

#

right up with tale and pixel

lime pivot
#

there's pins in there from tale, who's banned because he dared to open Discord from his school IP which is globally banned or something

indigo peak
#

L

lime pivot
#

fronkdifferent

#

fr == ThinkDifferent

#

I see no problems here

#

obv /s

gentle grove
#

discord is broken

#

oh nvm it's just internet being bad

#

omg

#

one pfp has loaded so far

#

stkc's

#

oh now everything loaded

tidal atlas
#

No

indigo peak
#

nah make it discussion

#

its how all the lowlifes farm karma

#

[Discussion] It's been exactly {time interval} since {major thing} has been released!

#

and bam 916 upvotes

tidal atlas
#

Ok?

indigo peak
#

smokin is not impressed

tidal atlas
#

I don’t get it tbh

#

It’s a shitpost

stuck wyvern
#

thanks I hate it

gentle grove
#

that's the wrong unity

sour halo
gentle grove
untold river
sour halo
gentle grove
#

im trying kde connect

ocean raptor
# untold river

punishing innocent civilians for actions by a government that goes against their interests and feeds them misinformation moment

gentle grove
#

nice

ocean raptor
#

npm developer don't write malware challenge (IMPOSSIBLE)

tepid olive
#

hello development channel

untold river
#

(ALSO IMPOSSIBLE)

#

is-even depending on is-odd which depends on is-number

tepid olive
primal perch
lime pivot
lime pivot
#

but is-number?

#

js has had typeof thing === “number” since the start

#

yes, for when you really really need it to be equal

#

too much equality

#

=== and !== are strict match

untold river
lime pivot
#

wasting == and != on non-strict equality is a shame

ocean raptor
#

============

lime pivot
#

can’t imagine how many bugs have happened thanks to that

#

== true or === true?

#

is that ES69?

ocean raptor
#

C devs will make the mistake of if (x = 0) instead of if (x == 0) js developers accidentally do x ===== 0 instead of x ======= 0

lime pivot
#

too bad js repeated that mistake too

#

assignment in if statement

untold river
#

js developers needing some extra strict equality

untold river
#

W tbh

lime pivot
#

walrus???

#

and I thought js was the weird language

#

unfortunately

ocean raptor
#

hopefully not troll

lime pivot
#

we’ll C about that

gentle grove
#

if wayland is so great why is there no waywater

ocean raptor
tepid olive
#

when eta

timid furnace
#

can i shove hooks inside an ifdef

untold river
#

probably

#

what's with objc's affinity for @

vivid dew
#

@

subtle grail
#

@

indigo peak
#

@

primal perch
#

@

primal perch
#

logos runs before it

timid furnace
#

rip

#

ig groups it is

lime pivot
#

bye

#

you tell me

#

I don't use it

#

I think it's fine

#

are you a club or an incorporation?

#

.xi or .xmi

#

yeah

#

I wonder why we used .xm

#

why not .xx lmao

untold river
#

.xxx

lime pivot
#

.mk pls

untold river
#

why does theos jailed delete all previous builds

lime pivot
#

mkay?

#

you can also look in .theos/obj/ for the processed .xi.m output

#

try a %hook as well

#

there we go

#

it's meant to prepend that for you

#

is that not in the generated output?

#

errr

#

I forget

#

whichever one looks like a preprocessor output mess

#

hah, oops

#

that would be a recent bug

#

we changed it from inserting includes at the end of the very first group of #imports, to just the very last #import

#

or, yeah

#

at the first logos directive I suppose

#

not sure why we aren't prepending the imports instead

#

considering we can just do #line 1 directly after, to reset the line numbers

untold river
#

if i wanted to use a swift framework in my objc tweak how do i go about it

misty cradle
#

just like how u would in an app

#

just a little different

#

all i remember is that its very pain

untold river
#

i read about something something bridging header but xcode aint generating anything for me fr

misty cradle
#

theos generates that

#

or well

#

the tweakname-Swift.h file

#

which u can import

untold river
#

theos does?

#

yet another theos feature i never knew fr

misty cradle
#

i think??

#

or wait

lime pivot
#

it does

misty cradle
#

thats only if u compile swift files

#

u gotta build the framework

#

put it in theos folder

#

link it

#

and then do some stuff

#

i forgor

lime pivot
#

well

#

assuming the framework exposes its API using @objc, you just need to put the .framework in $THEOS/lib/ and then @import the framework name

#

eg @import Alderis;

misty cradle
#

ALDERIS FELL OFF

lime pivot
#

that's how you're meant to import Swift frameworks in objc

misty cradle
#

when update

lime pivot
#

update why

#

it works

misty cradle
#

true

#

u just need to bump it up a version

#

readme changes™️

lime pivot
#

fr

misty cradle
#

idk what came into me

#

i woke up 6 am

lime pivot
#

my condolences

misty cradle
#

and decided to stay awake for once instead going back to sleep

#

time to code java for school Troll

#

icraze.

hasty ruin
hasty ruin
#

ghost msg uhh

misty cradle
#

?

#

who said that

hasty ruin
#

tr1 sus 🥶

misty cradle
#

rf

primal perch
#

@hasty ruin || troll ||

#

|| fr ||

#

when spoilers are allowed ig

#

true

hasty ruin
#

i think devs can use spoilers bc of OR

#

||

misty cradle
lime pivot
#

spoiler bypass

primal perch
#

true

misty cradle
#

true

zenith hatch
#

true

untold river
#

When are we getting HashbangKit

tepid olive
#

Hashed browns kit

lime pivot
#

definitely guilty of this

untold river
#

UIKit is trolling me fr

indigo peak
untold river
#

SORRY

glacial matrix
# zenith hatch

“Would you look at the time? It’s YouTube o’clock”

zenith hatch
#

time to watch youtube on my watch now

glacial matrix
# lime pivot walrus???

“:=“ as in makefile, allowing if a := b: as doing it like in c is not allowed if (a = b)

untold river
#

it looks like a walrus

#

:=

glacial matrix
#

C has the vertical walrus operator too
for (;;)

tepid olive
#

wtf

#

wait

#

brain moment

#

||test||

#

oh wtf

#

||penis||

indigo peak
#

||:(||

grim sparrow
#

|| girlcock ||

indigo peak
#

should i make an app like 3utools but without the sending your ecid to china

grim sparrow
#

No

indigo peak
#

like has most of the features

grim sparrow
#

Just patch 3utools to not phone home trol

tepid olive
#

but femboy cock better

grim sparrow
#

The feminine urge to suck cute cock

indigo peak
#

isnt 3utools just a fancy gui wrapper for libimobiledevice

grim sparrow
#

Girl cock

tepid olive
grim sparrow
#

It would be a man and a woman still, sounds straight to me

tepid olive
#

true

grim sparrow
#

And

#

Gender != Whats in your pants

tepid olive
#

cock doesn’t make it gay

restive ether
#

gayyyy

grim sparrow
#

I like cute people, ezpz

grim sparrow
tepid olive
#

that’s crazy

grim sparrow
#

Well

#

It can do

#

Basically

#

It doesn’t really do much other than remove self imposed social barriers

#

Which I feel like is what got me down

tepid olive
#

@ocean raptor you’re so wrong

restive ether
tepid olive
#

oh i canr send nsfw here

ocean raptor
tepid olive
#

i can’t prove my point

tepid olive
#

wrongfgg

#

a cute guy > a cute girl

#

plus it’s rare i find a girl attractive anymore idk why

ocean raptor
#

I'm not gay, therefor cute girl>cute guy

grim sparrow
#

I just like cute people who aren’t mean Shrug

tepid olive
misty cradle
grim sparrow
#

Estrogen is a wonderful thing

misty cradle
#

ban all estrogen

#

maybe we should make estrogen artificially scarce so i can resell it

ocean raptor
#

estrogen NFT

grim sparrow
#

Estrogen is actually very easy to home brew

grim sparrow
#

And very cheap

tepid olive
#

one of my friends apparently sells estrogen 🥸

grim sparrow
#

I’ve considered doing it

misty cradle
grim sparrow
#

You can buy estradiol powder for cheap as fuck and then you just need to do a bit of trolling with some other stuff

misty cradle
#

taking notes on what to not eat

grim sparrow
#

You can make years supply’s for just $100

misty cradle
tepid olive
#

what the fuck

misty cradle
#

no more sun for me

#

.

#

gn

tepid olive
#

100 dollars

glacial matrix
tepid olive
#

wow

grim sparrow
#

Puberty is a wonderful thing if you get the right one

misty cradle
#

🐦

grim sparrow
#

So far my review on feminising puberty is 9/10

tepid olive
#

puberty was not a wonderful thing

misty cradle
#

aint u like 14

#

🤨

tepid olive
#

nah

#

16 now

grim sparrow
tepid olive
#

it’s

#

I CANT TYPE STILL WHY

#

ish**

indigo peak
misty cradle
#

no but they were like 13 during 2021 ????

#

wtf aged 3 years

tepid olive
tepid olive
misty cradle
# indigo peak youre so young

Mother of 2 👶👶 Virgin😇
I love my husband💍💋 Lesbian🌈
Vegan🌿🍃🍄 Rancher🥩🔪🐔🐖
Atheist😏 God is my truth⛪
Escaped Convict👀 Alcoholic🍻🍹🍸💉💊 Straight edge✖️♌

tepid olive
#

14 at start of 2021

grim sparrow
#

I started estrogen in October tr

misty cradle
#

so how r u 16 now wtf

tepid olive
#

dude it’s almost april

#

shits crazy

grim sparrow
#

Tr1 do the math

#

I believe in you

#

You can do it

#

Shit works out

misty cradle
#

i cant calculate

#

.

tepid olive
misty cradle
tepid olive
#

my brain still can’t function

#

let’s goooo

grim sparrow
misty cradle
#

u need the app

tepid olive
#

i canr remember anything past what i messaged evelyn

#

speaking of which

grim sparrow
#

Can’t believe I need to download a 300mb app to pull something out of my recent

#

Because it got banned from google search

#

I should point out you shouldn’t follow this, I just think it’s very cool

restive ether
# misty cradle Mother of 2 👶👶 Virgin😇 I love my husband💍💋 Lesbian🌈 Vegan🌿🍃🍄 ...

Starin' at your 😍🏼 dress 👚 'cause 💋 it's see 🙈 through 🐲 Yeah, 👍 talkin' 😃 all 😆 the shit 👋🎃 that ❗🎢 you 👈 done 😳 been 🔎👍 through 🔛 Yeah, 🙋 say 💕 that 🧚‍♀️ you 👈🏼 a lesbian, 👩‍❤‍👩 girl, 👩‍👧 me 😃 too 🧍‍♀️ Ayy, 🆒 girls 👧🏿👧🏻👧🏾👧🏼 want 😋 girls 👱‍♀️ where 🍏 I'm 😂👌🏼 from 💋 Wait, 🙇😯 whoa, 😮😮 yeah, 🌴🎲👗⛔ girls 👩🏼😍 want 👏 girls 👧 Whoa, 😮 yeah, 👍 whoa, 😮 yeah, 👍 girls 👧🏿👧🏻👧🏾👧🏼 want 😭🙏 girls 👩🏼😍 where 👏❔🗺️ I'm 📢 from 💥👉 Oh, 😶 yeah, 👍 yeah, 🙌 girls 👨‍👩‍👧‍👦👩‍👧‍👧 want 👏 girls 👩 where 🏃 Ayy, 😈 whoa, 😮😮 girls 👭 want 🕑👍 girls 👨‍👩‍👧‍👦👩‍👧‍👧 where 🐉🐱🚀 I'm 😇 from, 👯👈 ayy 🆒

indigo peak
#

@grim sparrow libimobile device but a python wrapper

#

thoughts?

restive ether
grim sparrow
#

Ok ok ok hear me out

#

“Why”

indigo peak
#

ok ok ok

#

hear me out

#

fuck you

#

thats why

grim sparrow
#

Why would you need to make a python wrapper of a cli tool

indigo peak
#

so you can run it in a python cli

#

duh

misty cradle
#

@indigo peak help me ratio

high citrus
#

has anyone looked into detecting imsi catchers (fake cell tower mitm)?

misty cradle
#

thank u lov e @restive ether

restive ether
#

xoxo

indigo peak
#

surprised i havent been blocked yet

misty cradle
restive ether
grim sparrow
#

No I don’t

misty cradle
#

@grim sparrow

indigo peak
restive ether
#

she’s the cellular woman

misty cradle
#

thanks.

restive ether
#

shaking my head

grim sparrow
#

I am the nfc woman now

restive ether
#

find god.

indigo peak
misty cradle
#

find god

restive ether
high citrus
misty cradle
#

how bout u emulate imsi

#

so we can catch calls

high citrus
#

sounds kinda illegal though

misty cradle
#

that has never stopped me

restive ether
#

we had a teacher in our school who used a cell blocker

high citrus
#

like a jammer?

restive ether
#

guess which three letter agency ended up at the school no more than a week later

stuck wyvern
#

aren't these illegal trol

restive ether
#

incredibly illegal

stuck wyvern
#

L

misty cradle
#

fbi Troll

restive ether
#

the FCC will fuck you

stuck wyvern
misty cradle
#

why'd he have a cell blocker

#

?????????

restive ether
#

dude was hating

tepid olive
#

the fun police back at it again >:(

ocean raptor
#

A pure python implementation of limd

grim sparrow
#

Can’t do that with apple and baseband stuff

restive ether
#

i don’t really understand that stuff

restive ether
primal perch
tepid olive
#

jules twerk

zenith hatch
#

jules twerk

timid furnace
#

aight im trying and failing to understand how to do stuff with preferences
i have a switch cell that i would like disabled unless a specific condition is met
how would i go about doing that

ocean raptor
#

@amber bone lol, I almost opened an issue for a feature you already have again, good thing I checked the docs first

tepid olive
#

i got a great tweak idea

#

fr fr

#

if it exists already idc

#

i will make soon TrollFront

indigo peak
#

@tepid olive you should tell me what it is so I can make it for .99 on twickd

prisma spire
#

hi

indigo peak
#

hi

indigo peak
#

only thing is that the constraints for swift are kinda outdated

#

the site uses methods and shit that were renamed in newer swift versions

#

but it works 100% out the box for objc

indigo peak
#
function Constraints() {}
Constraints.prototype = {
    constraintWithVisualFormat: function (language, viewName, superviewName, constraintFormat) {
        if (language === 'objc') {
            return '[' + superviewName + ' addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"' + constraintFormat + '" options:0 metrics:nil views:NSDictionaryOfVariableBindings(' + viewName + ')]];';
        } else if (language === 'swift') {
            return superviewName + '.addConstraints(NSLayoutConstraint.constraints(withVisualFormat:"' + constraintFormat.replace(viewName, 'view') + '", options: NSLayoutConstraint.FormatOptions(rawValue: 0), metrics: nil, views: ["view": ' + viewName + ']));';
        }
    },
    align: function (language, viewName, superviewName, constraintName) {
        if (language === 'objc') {
            return '[' + superviewName + ' addConstraint:[NSLayoutConstraint constraintWithItem:' + viewName + ' attribute:' + constraintName + ' relatedBy:NSLayoutRelationEqual toItem:' + superviewName + ' attribute:' + constraintName + ' multiplier:1.0 constant:0.0]];';
        } else if (language === 'swift') {
            constraintName = constraintName.replace('NSLayoutAttribute', 'NSLayoutConstraint.Attribute.');
            constraintName = constraintName.replace('CenterX', 'centerX');
            constraintName = constraintName.replace('CenterY', 'centerY');
            return superviewName + '.addConstraint(NSLayoutConstraint(item: ' + viewName + ', attribute: ' + constraintName + ', relatedBy: NSLayoutConstraint.Relation.equal, toItem: ' + superviewName + ', attribute: ' + constraintName + ', multiplier: 1.0, constant: 0.0));'
        }
    }
};
Constraints = new Constraints();

thats the code that updates the swift constraints
replace: autolayoutconstraints.com/script/Constraints.js

indigo peak
#

it was annoying when i tried to use swift last night and it didnt work

#

so i made a fix

#

TRUE

vivid dew
#

use interface builder

indigo peak
#

not everyone has a mac

stuck wyvern
#

don't need to own a mac trol

indigo peak
#

not everyone has a pc

stuck wyvern
#

L

#

Just do like Amy and suffer with a vm without graphics acceleration

grim sparrow
stuck wyvern
#

trolley

indigo peak
#

whats a driver

grim sparrow
#

POV: You got HRT instead of a MacBook

stuck wyvern
#

Good priorities tbh

grim sparrow
#

Boobs.

stuck wyvern
#

Booba ame_pray

primal perch
#

or buy a rx 460 for 99$

#

cheapest mac ever

gentle grove
#

blobs

primal perch
stuck wyvern
grim sparrow
indigo peak
#

i have a rx570 and amd ryzen 5 2600 cpu according to krit/kat/cynder i can hackintosh

#

but i dont know how

stuck wyvern
#

Send me your full address in DMs trol

primal perch
#

yea

#

you can easily

indigo peak
#

will i get my pipe bomb?

stuck wyvern
#

fucking read mf

#

it's not hard

primal perch
indigo peak
#

I DONT KNOW HOW

primal perch
#

rx 460 not that good

primal perch
stuck wyvern
#

it's not that complicated especially nowadays with how patching AMD kernels is done

primal perch
#

or get intel and it’s even easier

stuck wyvern
#

I do not miss the days where a minor update would definitely break your system

primal perch
#

me when native power management

stuck wyvern
primal perch
#

my cpu idles at 25c but ite

#

70c load

indigo peak
#

@stuck wyvern the thing that was stopping me from hackintoshing last time i tried was bc my wifi adapter doesnt have drivers

#

and i dont have ethernet

stuck wyvern
#

oh

#

massive L

primal perch
#

buy a ax200 for 25$

stuck wyvern
#

I bought a mac pcie card for wifi + bluetooth

primal perch
#

would recommend

#

or a native one ig

stuck wyvern
#

plugged it in and got wifi + bt + airdrop working instantly

primal perch
#

openintelwireless is not bad tho

stuck wyvern
#

it's aight but can't be used for installation iirc

#

unless you make an offline installer

primal perch
#

no airdrop but it does what i want

#

wifi

#

it’s stable and fast Clueless

stuck wyvern
#

that's all that matters

primal perch
#

yea

#

plenty usable

#

but maybe i’ll get a fenvi card

grim sparrow
primal perch
#

it’s like 50$

#

not really much

stuck wyvern
indigo peak
#

i already have 2

grim sparrow
#

I’d much rather get a MacBook rn than make a hackintosh machine

stuck wyvern
#

I'll probably just get a motherboard with onboard wifi next time and just buy a compatible broadcom one

grim sparrow
#

Taking my 2015 air to college every day is not fun

stuck wyvern
#

ouch

primal perch
#

i have 2 technically but i turned off my mobo one

stuck wyvern
#

waiting till next gen Ryzen to upgrade my motherboard since it's going to be on a new socket

#

I'm still rocking a cheap b350 board trolldespair

primal perch
#

waiting for 13 series intel intjcum

stuck wyvern
#

all my pcie ports are used on it trol

primal perch
#

14 core i5

stuck wyvern
#

I'm kinda tempted to go intel since I hackintosh as a daily driver for work

#

but man

indigo peak
stuck wyvern
#

I don't know I've had not much issues with a Ryzen hackintosh

primal perch
#

intel is banger idk why everyone seems to hate it now

stuck wyvern
#

But having to fuck around to get docker working is annoying

primal perch
#

i mean it’s a company so they’re not friends

stuck wyvern
#

They've got better with 12th gen

primal perch
#

amd is just as bad with the zen 3 prices anyhow

stuck wyvern
#

Anyways just chugged down some Taurine™️ time to get some programming done

#

shit I forgor the programmer socks, programming time has been cancelled

primal perch
grim sparrow
stuck wyvern
#

No maid outfit ⁉️

primal perch
grim sparrow
#

I really want one ngl

stuck wyvern
#

I've bought two a few weeks ago, no regrets

grim sparrow
#

Omg

stuck wyvern
#

They're my go to clothes for vrchat now lowkey

#

they're super lightweight so it's extra comfy for vr gaming

grim sparrow
#

Where Zoey maid

stuck wyvern
#

Not sure if I posted pictures of it on my main account

grim sparrow
#

I haven’t been able to play vr in ages

stuck wyvern
#

going through old screenshots LOL

grim sparrow
#

First got mono which wiped me out and now new meds

stuck wyvern
#

standing up in vr for a few hours every friday is about the only amount of physical activity I get going nowadays sadge

grim sparrow
#

I spent the past week in bed

stuck wyvern
#

depends though, sometimes I do dance a little bit in vr

grim sparrow
stuck wyvern
grim sparrow
#

Yeah I got mono around my birthday

#

Great birthday present, kissing disease

stuck wyvern
#

finally I found the picture I was looking for lmfao

#

funny taurine name teaser image I did a while back

grim sparrow
#

I do not need caffeine in my life

primal perch
#

same

#

except for the rare 3am i gotta write a paper or i’m fucked moment

grim sparrow
#

Ice cream is my coping food

#

Ate 3 pints over 3 days last week tr

stuck wyvern
#

I used to eat a ton of ice cream last year

primal perch
#

i ate almost a whole quart yesterday alone

grim sparrow
#

I started SSRI’s a week and a bit ago and the side effects hit real hard

primal perch
#

for breakfast

grim sparrow
#

Sentraline

primal perch
#

escitalopram 10mg has been pretty good for me

grim sparrow
#

Ended up taking a week off and shovelling ice cream down me

primal perch
#

basically no side effects here

#

except like fatigue bc i went to 20

#

but i’m going back down to 15 rn

grim sparrow
#

Dude I have been tired constantly, my head hasn’t stopped hurting, eating has been real fucked from nausea, sharp increase in bad thoughts

#

So far I’ve just hated everything about it

primal perch
#

i do remember the first week or two not being fun

grim sparrow
#

25mg right now

primal perch
#

that’s low isn’t it

grim sparrow
#

Eeeeerrrrrrr

#

Yeah

primal perch
#

maybe just got unlucky i guess

#

rip

grim sparrow
#

My doctor said she would probably give me more next time I go

#

On

#

Whenever

stuck wyvern
#

Good luck hug

grim sparrow
#

I don’t actually remember the date she told me

#

I feel like it’s the 1st of April

primal perch
#

but yea i can actually cope day to day now without existential ocd

#

for the most part

grim sparrow
#

I just want to have less crippling depression and anxiety

primal perch
#

HaVe you tried Taking a walk???

grim sparrow
#

Ddddduuuuuuddddeeeeee

#

I walked in

#

Sat down

#

And she goes

#

How’s your exercise been recently because that’s what I think you need most

#

It’s the best thing we can give you

primal perch
#

i did exercise regularly for a bit last year and it helped a bit but not as much as meds

#

in combination it’s probably better

#

alone it doesn’t fix it though

grim sparrow
#

I asked for meds and she said ok

indigo peak
#

i felt like sharing

primal perch
#

nice

grim sparrow
#

Congrats

indigo peak
#

thank you

stuck wyvern
#

I should get back to grinding beat saber daily like I used to

primal perch
#

i like my apple watch a lot

stuck wyvern
#

my cardio's been fucking ass lately

indigo peak
#

my apple watch left a really bad tanline on my arm

grim sparrow
#

Fortunately I can’t get that

#

I am the palest mfer there is

stuck wyvern
#

you should see the sunburn I get yearly whenever I go to the music festival

#

It leaves a mark of the bracelet on my arm for weeks

primal perch
#

anyway good luck tho hope you feel better @grim sparrow

undone nest
#

have you considered using sunscreen

indigo peak
#

rjb developer meet up at @lime pivot's house?

primal perch
#

true

stuck wyvern
#

that was in 2019 trolldespair

#

we sat outside at +30 degrees waiting for the show

#

from like 10am till 5-6pm

#

show got cancelled due to a massive thunderstorm trolldespair

grim sparrow
#

The only mark on my wrist is from the band

#

Like

#

The pressure

ocean raptor
stuck wyvern
#

July 2018 trolllaugh

#

I should really put sunscreen this year

grim sparrow
#

Yes

stuck wyvern
#

surprisingly 2018 didn't hurt that much

#

but man 2019 was really fucking painful

indigo peak
#

man 2005-2022 was is really fucking painful

stuck wyvern
grim sparrow
undone nest
primal perch
#

2005

#

same

#

2005 mfs kinda young

undone nest
#

true

stuck wyvern
#

y'all young

indigo peak
#

and for @next wadi 2010-2022

stuck wyvern
#

born in 1999 sadge

undone nest
stuck wyvern
indigo peak
grim sparrow
#

I’ve only wanted to die for 4 of those years

primal perch
#

i only wanted to die in 2020 mostly

undone nest
indigo peak
#

2019-2022 ive wanted to die

#

i want to die less now though

primal perch
#

objc_msgSend(
&OBJC_CLASS___UIColor,
"colorWithRed:green:blue:alpha:",
0.176470593,
0.172549024,
0.188235298,
1.0);

indigo peak
#

so thumbsUp

stuck wyvern
#

2020 lockdowns fucked me up a little bit

primal perch
#

a lot bit

grim sparrow
#

Mhm

stuck wyvern
#

not being able to see my friends caused me a little bit of depression trol

indigo peak
#

not for me