#development

1 messages · Page 578 of 1

pearl sail
#

I haven't even merge the upstream branch I have since I last PRed something

#
remote: Counting objects: 100% (762/762), done.
remote: Compressing objects: 100% (381/381), done.
remote: Total 810 (delta 511), reused 580 (delta 376), pack-reused 48
Receiving objects: 100% (810/810), 270.67 KiB | 1.76 MiB/s, done.
Resolving deltas: 100% (516/516), completed with 101 local objects.
From github.com:ProcursusTeam/Procursus
 * [new branch]        autogenerate-conffiles -> origin/autogenerate-conffiles
 + 5685d0c5...c2dc99bb ck/cron                -> origin/ck/cron  (forced update)
 * [new branch]        ck/llvm-12             -> origin/ck/llvm-12
   5929c20a..8eaae113  main                   -> origin/main```
#

nvm wasn't that bad

lime pivot
#

calvin klein cameron katri

#

or ChatKit, as it goes sometimes

untold river
lime pivot
silver rampart
#

just find / -name clang

#

theos is already slow enough nobody would notice

lime pivot
lime pivot
silver rampart
#

pog

silver rampart
#

was it a sleep(10) call

untold river
lime pivot
#

I respect that the perl approach is far cleaner (that’s saying a lot considering it’s perl), but man

silver rampart
#

ooooo comments

lime pivot
#

I hate that Theos startup was inherently bound to having an external script write make to disk, and then have it immediately read in

#

the leading perf issues continue to be make startup speed being trash and xcrun just being slow on first launch after reboot/xcode update/routine or low disk $TMPDIR cleanup

untold river
#

dumb question but where would i put a third-party framework in theos

#

theos/lib doesn't work, ld complains about missing framework

#

theos/vendor/lib works though uhh

lime pivot
#

wherever you want, then add it to CFLAGS + LDFLAGS with eg -Fvendor

lime pivot
#

ok that’s not meant to happen

#

make sure it’s being set in blah_EXTRA_FRAMEWORKS

untold river
#

oh there's _EXTRA_FRAMEWORKS? i was declaring it in _FRAMEWORKS

ocean raptor
pearl sail
untold river
faint timber
#

and so it begins... @grave sparrow

lime pivot
#

it’s only meant to insert the -F/-L flags if you use the EXTRA flags

untold river
#

For the three people who'll probably need it

hasty ruin
untold river
#

true i should figure it out

#

i havent done much caching to be fair

#

reads through actions/cache for 2 minutes should be easy enough

#

also is there any reason for not caching /opt/procursus directly but making a separate __cache folder

untold river
#

I think I got caching covered now

harsh needle
#

yeah but why arent the other inputs also highlighted?

faint timber
#

Nah just disassembler

faint timber
#
#include <chrono>
class Timer {
    public:
        Timer(std::string function) {
            m_StartTimepoint = std::chrono::high_resolution_clock::now();
            m_Function = function;
        }

        ~Timer() {
            this->stop();
        }

        void stop()
        {
            auto endTimepoint = std::chrono::high_resolution_clock::now();
            auto start = std::chrono::time_point_cast<std::chrono::microseconds>(m_StartTimepoint).time_since_epoch().count();
            auto end = std::chrono::time_point_cast<std::chrono::microseconds>(endTimepoint).time_since_epoch().count();
            auto duration = static_cast<double>(end) - static_cast<double>(start);
            auto ms = duration * 0.001;
            std::cout << "[*] Timer: " << m_Function << ": " << duration << "us (" << ms << "ms)\n";
        }
    private:
        std::chrono::time_point<std::chrono::high_resolution_clock> m_StartTimepoint;
        std::string m_Function;
};

Timer timer(std::string("funcname"));
#

already got a timer

#

@grave sparrow this good?

primal perch
#

pass your strings by reference dawg

hardy glen
#

^

#
Timer(const std::string &function) 
#

and this if you care enough lmao```cpp
void stop() const

#

why not

#

yea true unless he is planning on using templates i think he might not have a choice. i usually put const at the end so i know i didn't touch the object called

faint timber
#

I really wish I could use c++20 but I don't think xcode supports it yet

#

then I could entirely abandon c code

faint timber
hardy glen
# faint timber whats const do

its basically to make sure you are not editing the object in that function. Let's say that you edited the private members in that function, then you would not need it there

#

if the function stop is called, it would not change the object that is calling it.

#

lets say if stop was modifying a private member, then compiler will not be happy```cpp
void stop() const
{
auto endTimepoint = std::chrono::high_resolution_clock::now();
auto start = std::chrono::time_point_caststd::chrono::microseconds(m_StartTimepoint).time_since_epoch().count();
auto end = std::chrono::time_point_caststd::chrono::microseconds(endTimepoint).time_since_epoch().count();
auto duration = static_cast<double>(end) - static_cast<double>(start);
auto ms = duration * 0.001;
std::cout << "[*] Timer: " << m_Function << ": " << duration << "us (" << ms << "ms)\n";
m_Function = "blah"; //not allowed
}

#

if you care enough to use it lmao

primal perch
#

its pretty based

hardy glen
#

got my lsp set up for c++20

primal perch
#

C++11 is the real goat

hardy glen
#

clang-tidy is the goat ngl

primal perch
#
class TableViewCell : public View {
private:
    std::string reuseIdentifier;
    TableViewCellStyle style;
    Property<Strong, Label *> textLabel;

    void _SetupTextLabel();
public:
    TableViewCell();
    TableViewCell(const std::string &reuseIdentifier);
    TableViewCell(TableViewCellStyle style);
    TableViewCell(TableViewCellStyle style, const std::string &reuseIdentifier);

    Label *GetTextLabel() const;
    void SetTextLabel(Label *textLabel);

    virtual ~TableViewCell() = default;

    void SetFrame(const Rect &frame) override;
};```
hardy glen
primal perch
#

c++ mfs be like const :: const :: const ::

hardy glen
#

true

#

its because my fucking teacher instilled it in me

#

const and passing everything by reference. one time i called him out for not passing a string by reference and he said "it won't make that much of a difference" frcoal

primal perch
#

for shame

hardy glen
#

"just discovered that you can go into the C++ Language Dialect setting under Build Settings, select Other.. then type c++2a and press Enter. Tested with new string functions starts_with/ends_with from C++20 and the program compiled/ran."

#

yea i use it alot

faint timber
#

Im refering to xcode cli tools not xcode @hardy glen

faint timber
#

I use clion not xcode

#

it didn't have std::format last time I checked

#

@grave sparrow ldr imm be adding 0x38 in front woeisme

primal perch
#

lmao std::format shouldve been in C++ ages ago

faint timber
#

its supposed to be 0x300

primal perch
#

its hilarious that it took them that long

hardy glen
#

is that supposed to be a disassembler?

faint timber
#

@grave sparrow its a ptr thats fine bro its correct

#

no its not sp

#

its ldr literal

#

ldr literal accesses the addr from the label pointer

hardy glen
#

the emojis make it faster

faint timber
#

0x300 is a valid pointer @grave sparrow

hardy glen
#

the only time i built a diasm was a chip8 disasm and it was the easiest shit in the world

faint timber
#

mine officially doesn't do anything properly yet

#

here is da code

hardy glen
#

arm64 disasm is on my list once i finally start fucking with arm

#

never, just in a disassembler. i watched courses on x86 if that counts

primal perch
#

i have sadly

faint timber
#

pc relative™️ @grave sparrow

hardy glen
#

for a disassembler, do you guys use switch statements/if statements/ or lookup tables

faint timber
#

Im never touching x86_64 lol

primal perch
#

everyone loves 15 byte instructions

faint timber
#

only doing arm

hardy glen
#

i finally started using m1, i should start writing some shit in arm

faint timber
#

my a15 is my pac test device TrollFront

tardy narwhal
#

then gg

primal perch
#

even linux has less spaghetti code than x64

#

me when x64 decoding

tardy narwhal
#

rip-relative address be with u

primal perch
#

inshallah

tardy narwhal
primal perch
#

c++ mfs be like: everything is a class

#

yea

#

use cuda

#

gpu backed disassembler

tardy narwhal
#

probably, can't tell u what i'm doing for shep's project just yet

primal perch
#

wtf massive is working on [redacted]?

tardy narwhal
#

yeah the x64 disassembler works as intended, just the rip-relative addressing sucks ass rn and simd

primal perch
#

oh bet

#

so i dont need to write x64 for it after all

#

?

tardy narwhal
#

basic vector operations are there though such as movss

primal perch
#

bc i was going to

tardy narwhal
#

wouldn't count on finishing it tbf, just started it for shits

primal perch
faint timber
#

@grave sparrow fucking typo

primal perch
#

well feel free to commit to it

tardy narwhal
primal perch
#

we still need to get an actual handle on the UI

#

text rendering still sucks ass

tardy narwhal
#

oh fuck me

primal perch
#

its not gonna be pretty either way

#

not to mention all the prefix parsing before that

#

amd actually wrote the x64 instruction set

#

so blame them

#

intel got a license to it in exchange for intel giving amd an x86 license

#

and thats why we have a duopoly

#

when did amd get bought

#

they picked up ati

#

armv6/v7 goes pretty hard

#

ok

inner maple
#

Any free Xcode alternatives?

primal perch
hardy glen
#

noob question, why is it important to .align2 or 4

hardy glen
#

lmaoo

inner maple
#

Does it have like the simulation thingy?

indigo peak
#

@primal perch when can i get birdpoop source

primal perch
#

tomorrow

#

be less broke

inner maple
primal perch
faint timber
#

@grave sparrow we do a little trolling

#

discord is stupid wtf was that

inner maple
#

Why is Xcode 10Gigabytes 😩

faint timber
primal perch
#

eta wen ida 7.7 crack

#

dee ghost dot github dot io

faint timber
#

Im already using 7.7 but you are blocked so u ain't getting it

hardy glen
#

@grave sparrow okay question, why do we have to load the syscall # in X16 opposed to X8

#

really? i thought it was x8

restive ether
#

neovim, thanks

#

freak

hardy glen
faint timber
#

base address support frstache

hardy glen
#

okay i guess i got confused by the rasp pi/linux syscall tables

#

yea ik that. i guess i am just confused why we have to load it into X16 and X8 on other platforms

hardy glen
#

Fuck this where is the helloworld syscall

primal perch
#

nvm found it

hardy glen
#

docker-wine-ida

primal perch
#

trolle

hardy glen
#

Did you run it in docker because of the malware shit?

primal perch
#

nah it just says that

hardy glen
#

I thought docker-wine-ida ran in docker

#

Weird

primal perch
#

idk ive never even used docker

hardy glen
#

Now you just need to set up the dark theme fr

primal perch
hardy glen
#

Virtualizing w11 with utm on my m1 air so smooth asf

#

Except i haven’t done any heavy tasks. Doesn’t really get hot

primal perch
#

pp

hardy glen
primal perch
#

a few times

hardy glen
#

I remember i had a onion link that came with all ida tools on their website that locked behind the authentication

primal perch
#

i usually just use it for static analysis

hasty ruin
#

at least..

#

i don't think I am

sour halo
#

make sure to check it's safe

hardy glen
#

@torn helmge pageoff

#

No clue

gentle grove
#

who's pa

hardy glen
#

Idk

#

Idk what that means

gentle grove
hardy glen
#

Ik lmao

gentle grove
#

trol

hardy glen
#

Wait so would i declare my string in the data segment?

#

Makes no sense to me

#

I thought we were supposed to allign before the _start

#

Im just gonna read the reference manualfr

#

There’s so much shit in that code idk. I thought it was just write and exit syscall

faint timber
#

@grave sparrow any advice?

untold river
#

what is the best way to check for procursus on an unknown macOS machine

restive ether
#

look for /opt/procursus

faint timber
#

isFile: /opt/procursus/.procursus_strapped

#

@untold river

untold river
#

nice ty

pearl sail
faint timber
#

for reference idx is the index of my dylib

#

its valid

misty cradle
#

Group masturbation starts in 10 min in #general feel free to join

faint timber
#

@grave sparrow this is just stupid lol

#

lol of course

#

dylib is arm64e

faint timber
#

@grave sparrow app is non fat btw too

next wadi
hasty ruin
#

2 mins left dw

faint timber
#

well this dylib is arm64e so I need to load it into arm64e app @grave sparrow

#

ok it works after abi flag

faint timber
#

I'm running on my phone

hardy glen
#

Does this mean you can do this on zefram too lmfao

#

@grave sparrow

#

You know how you have to set the boot flag. Could you take it out and use the flag in the compiler for zefram

#

Lmao

faint timber
#

clang is an AI bootloader @grave sparrow

#

how do I symbolicate this

#

wtf

#

its crashing on

faint timber
#

why is exit crashing

hardy glen
#

What is a AI Bootloader?

faint timber
#

@grave sparrow after adding args it no longer crashes

ocean raptor
silver rampart
#

that's actually really neat but why did u ping me specifically

ocean raptor
#

cause I remembered you mentioning using yes and lldb to get a makeshift repl

pearl sail
#

yllacificeps em ginp u did yhw tub tean yllear yllautca s'taht

silver rampart
pearl sail
#

lper tfihsekam a teg ot bdll dna sey gnisu gninoitnem uoy derebmemer I esuac

gentle grove
gentle grove
#

why

#

i hate you stupid dog

pearl sail
#

No one cares

hardy glen
#

Those type of dogs r dirty fr

#

Ik because my aunt owns one

pearl sail
#

The stupid ones?

hardy glen
#

These ones

#

She had 2 of them

pearl sail
#

Shih Tzus?

hardy glen
#

One of them died because their neighbor pitbulls broke the fence

#

And played fetch with him

pearl sail
#

That sucks

hardy glen
#

Fax

pearl sail
#

The one in my pfp is also dead, but that is cause she had heart murmur. She wasn't that dirty of dog and mostly stuck to inside the house

hardy glen
#

I hate lil dogs for some reason

primal perch
#

hackintosh users when you say you use clover

hardy glen
#

AYO

pearl sail
#

I don't really care about dog size. Only reason my family got a small dog was because my parents are old and don't want to walk 6 miles with a big ass dog that can drag em

hardy glen
#

No opencore?!

pearl sail
hardy glen
#

U gotta train ur doggy to not pull

#

Oh fax

#

My dog sheds

pearl sail
#

My parents are in their 60+ they are more comfortable with smaller dogs anyway

#

I'm not around to train a dog for them

hardy glen
#

ur tellin me u don’t agree with my opinion?!

gentle grove
main apex
gentle grove
#

interesting

#

ive never done any hackintosh stuff

#

so i dont have any clue about it

primal perch
#

opencore is pretty hot because it emphasizes vanilla installs

#

breaks less shit

#

but my clover installs have also worked fine

gentle grove
#

what are vanilla installs

primal perch
#

basically you dont change macos at all and only inject kexts / drivers on boot

#

leaves /system/library/extensions and /library/extensions alone

silver rampart
#

clover has never worked fine ever for anyone going to c ry and shit and cum if someone insists otherwise

primal perch
faint timber
primal perch
#

nothing new there

indigo peak
#

Anyone have any good references for neural nets and machine learning in python

primal perch
#
  1. dont
indigo peak
#

Why

primal perch
#

idk

#

i used tensorflow once

#

it was alright

#

is tensorflow a python

indigo peak
#

what about JavaScript

#

Because I would prefer it to be on JavaScript so it runs in a webpage

faint timber
#

lol @grave sparrow

silver rampart
#

nah its kinda hard to tell you can click the things on the page

#

i need to make it more obvious somehow

faint timber
#

@grave sparrow mssymbol doesn't work on arm64e I need to use the dyld header method again

primal perch
silver rampart
#

release a tweak that says it removes the beta expiry popup and have the tweak just update the phone to the latest OS

faint timber
#

substrate failure

exotic spire
#

same

silver rampart
#

how dare you interrupt such valuable discussions

#

glhf

#

i dont see them there

#

but cant you hook init, set all the properties to TRUE, then hook the clearDeveloperInstallBrickAlerts and have it not call orig()?

ocean raptor
#

what if you just update?

silver rampart
#

then truly, have fun with that

#

i do

#

well, i can go jb one

#

what do u need

restive ether
#

i got a solution

#

update

silver rampart
#

funnier when the 5th person repeats it

restive ether
#

they say 6th times the charm

primal perch
#

i got a solution

#

update

untold river
#

i got a solution
update

faint timber
#

@grave sparrow libsubstitute works

#

but this happens if its not null

faint timber
#

@grave sparrow just needed a little bzeroing trol

#

lmao

hardy glen
#

If i was home fr

uneven cape
#

Sorry for the noob question but how do I write a tweak to hide an arbitrary UI element?

#

Like I want to hide the YTQYMButton

#

That says play next video

#

I see...

#

Wow ok...

#

How can I figure out what view controller is responsible for that YTQYMButton view?

#

Also idk if this particular element is reused in other places

#

So I’m not sure if I want to set them all to be hidden

#

Hm ok

#

So this is supposedly the nearest view controller

#

Ok there are a lot of different properties

#

Nothings immediately jumping out to me that they’re the YTQYMBUTTON view...

#

What kind of things should I search for? Sorry I’m new to this

#

Ahh ok all good

#

I remember back in the day there was something called Permaflex that could help you hide any arbitrary UI element

#

Don’t think it works anymore tho or if there is any replacement :/

#

Ah ok

#

@twilit jungle any ideas?

faint timber
#

@grave sparrow how did you get the address of the section using the header I forget

uneven cape
faint timber
#

I'm attempting evil scientist hacking

#

this is nothing to do with symbols

#

I need to get the address of the one of the __DATA sections

#

no its irrelevant to symbols

#

just any section

#

LC_SEGMENT_64

#

is there a dyld struct entry for LC_SEGMENT_64

#

I don't mind parsing them

#

I just don't know how was asking if you did it before

#

Ill do it myself if you haven't

#

basically the dylib is accidently reading the host's binary sections

#

so I'm gonna copy over the section it needs

tardy narwhal
#

@grave sparrow make an all-inclusive post in regards to mach-o and pin it here

#

the amount you've helping cryptic justifies a post lmao

faint timber
tardy narwhal
#

oh

#

that's cool wtf

faint timber
#

it ain't there chief

#

shim the call

#

why is the symbol missing bro

twilit jungle
# uneven cape Trying to hide this “up next” thing with a tweak

You could find the view responsible for it and just hide it or find the view responsible for it and stop it from being created in the first place. Both of which can be done in many different ways. Which method to pick depends on the efficiency you want.

But the general idea would be finding some event that would be a good spot to hide it. Then figure out a way to get an instance of view that you want to hide (if you are not just hooking the view). This is where flex is really helpful, it has a way to view object references that show which objects hold a reference to an instance you are currently viewing. So keep repeating till you reach the class/instance where you want it. You’d basically be following the chain of references to get the instance in code. Then its as simple as doing it.

If you nail down on the event where the view is created then you can even go a step further and stop it from being created.

lime pivot
faint timber
#

lol tru

harsh needle
#

@grave sparrow info.imageLoadAddress + (link->vmaddr - link->fileoff) + symtab_lc->symoff i feel like the math here is absolutely wrong trol

#

to get the symtable

grim sparrow
#

Idk

#

lol

harsh needle
#

trol it doesent. is there one symbol table or does every dylib have one?

#

weird that its an invalid address then

harsh needle
#

@grave sparrow what is the structure of the symbol table? reading a blog currently and it seems like every element is a nlist_64, so i guess just an array of nlists?

#

perfect, thanks

primal perch
#

quick suggestion

#

you could update

untold river
#

quick suggestion

#

you could update

silver rampart
#

u guys still on this damn

sour halo
#

Did you ever do it????

#

The network thing

#

I'm doing it if you didn't

#

K

#

How do I update phone to beta

#

Block website

#

Req

#

Ok

#

How 2 update

#

To beta

#

Well

#

Kay

#

Restoring an iPhone 8

hardy glen
#

Gm talented developers

sour halo
#

It

#

Fuck

#

It might stop checking once it finds that it's unsigned

#

Or new ver

#

We need a jailbroken phone on a beta to test this

#

@everyone

#

Should I update my iPhone X

#

I have boob for 14 betas

#

True

vivid dew
high ravine
#

hey, can someone tell me if there are some good and controllable kernel heap objects to spray?

primal perch
inner maple
#

CGRect screenRect = [[UIScreen mainScreen] bounds]; error: Initializer element is not a compile-time constant.

What am I doing wrong?

primal perch
#

make it a local variable

#

global scope for that doesn’t make sense

inner maple
#

Idk how to do that

hardy glen
#

Global variable vs local variable

#

The compiler can’t calculate your screen bounds

hardy glen
primal perch
#

unless it’s c++ then it will automatically run it in a constructor

vivid dew
#

deranged

primal perch
#

maybe construct a funny joke

primal perch
#

don’t people use iosurfaces a lot

inner maple
hardy glen
inner maple
tardy narwhal
#

how did you even get to that point though

#

i specifically linked you uro's preserved objc guide so you won't end up in the midst of the message madness

silver rampart
#

on a related note

inner maple
silver rampart
#

#development i have a really important question:
what would getting negative bitches consist of?

primal perch
#

and degen stuff like that

gentle grove
#

that's literally me

primal perch
gentle grove
#

just kidding I don't have money for that

inner maple
primal perch
#

animator was down bad

gentle grove
inner maple
faint timber
gentle grove
#

then gura

inner maple
#

Shes like 9000 years old man

primal perch
inner maple
hardy glen
faint timber
restive ether
faint timber
indigo peak
primal perch
indigo peak
#

still waiting :/

#

🕜

primal perch
indigo peak
#

soooo

#

whats the password

primal perch
indigo peak
#

@primal perch before i try to crack the password, is the tweak in there

#

like so my efforts wont be for nothing

primal perch
#

yeah

indigo peak
#

and its not just something useless like a fermi leak

#

🙄

primal perch
#

good luck though its aes256 and the password is like 50+ digits

indigo peak
#

WHY

primal perch
indigo peak
#

CANT YOU MAKE IT SOMETHING LIKE scoop has a big dick

primal perch
#

on the off chance you get it though, the source from 1.0.8 is there

indigo peak
#

can you make a shorter password like 25 chars

#

🥺

glacial matrix
indigo peak
#

@primal perch can i get a hint 👉 👈

primal perch
#

i forgor

indigo peak
#

its not it

twilit jungle
inner maple
#

Bruh how do you keep reading fun and speed up reading?

primal perch
#

have a desire to read it

#

otherwise it’s just homework

restive ether
#

if you don’t wanna read and learn you aren’t gonna get anywhere with it

inner maple
#

Nah it’s that I wanna learn but reading is boring

#

To me

indigo peak
#

not it either

#

bruhhh

primal perch
#

f

indigo peak
#

why you have to make the password so long

inner maple
indigo peak
#

liar

inner maple
#

Lmaooo

vivid dew
#

anime will never leave you

inner maple
#

Uhh Iam reading the thingy @tardy narwhal send me.. but now Iam stuck cuz he’s running Xcode 2010 and iam running Xcode 2019, the hello world files are not the same

#

Or it’s just an error or som, my log says:”Message from debugger: unable to attach
Program ended with exit code: -1”

#

And that’s defo not what his says

vivid dew
indigo peak
#

@primal perch

#

ok.

gentle grove
indigo peak
#

please dont.

gentle grove
#

why not

#

if youre gonna use a superco,mputer, might as well get some use out of it troll

indigo peak
restive ether
#

balls

indigo peak
#

it's neither

#

in plain text or sha256

restive ether
#

joe

#

piss

#

shepgoba

#

scoop

#

scoob

indigo peak
#

none of those

restive ether
#

revulate

#

troll

#

nfr

vivid dew
#

who the fuck is

gentle grove
#

js

restive ether
vivid dew
#

@rain sky

rain sky
#

What

rain sky
tidal jungle
#

hello regulate

rain sky
#

Idk who that is

tidal jungle
#

you

gentle grove
tidal jungle
#

you’re revulate

rain sky
#

I'm rev

gentle grove
#

ulate

rain sky
#

Not revulate

vivid dew
#

who the fuck is

tidal jungle
#

my favorite streamer

#

you.

vivid dew
#

who the

gentle grove
#

rev car

rain sky
#

???

tidal jungle
#

you still making harmony?

rain sky
#

Idk what that is

gentle grove
#

crt screen

#

for your heart

rain sky
primal perch
#

@indigo peak youd make bird poop 2 faster than that

indigo peak
#

give me a hint

#

pleaseeee

primal perch
#

i literally dont know what it is

#

i mashed like 60 digits

indigo peak
#

just rezip it

primal perch
indigo peak
vivid dew
#

troll

restive ether
#

critical race theory strikes once more

primal perch
restive ether
#

LLAO

#

trolled

vivid dew
#

i don't know who's trolling who anymore

primal perch
#

we're trolling you

indigo peak
#

i legit do not know whats going on anymore

#

please

#

idk what im going to be begging for

#

but please

restive ether
#

the password is trolling

primal perch
#

true

#

waiting for the worms @restive ether

indigo peak
#

the password is not trolling

primal perch
#

cum

restive ether
#

there are worms in your brain

primal perch
#

i couldnt even guess the password if i tried

restive ether
#

password

indigo peak
#

bru

primal perch
#

dont need to though

indigo peak
#

why do you even have it

primal perch
indigo peak
#

FUCK YOU

#

LEGIT

#

FUCK YOU

#

GET SOME BITCHES

hasty ruin
#

Ban

primal perch
#

here it is

#

tweak.x

#

so close

restive ether
#

@primal perch send me it

primal perch
#

word

#

check dms

restive ether
#

word

indigo peak
#

im fucking killing myself

#

after i ddos twikd

primal perch
#

shitd

indigo peak
#

im dead

gentle grove
indigo peak
#

on the bathroom floor

primal perch
#

ill send you bpbutton.h

indigo peak
#

i have BPButton.m

primal perch
indigo peak
#
#import "BPButton.h"

@implementation BPButton
-(instancetype)initWithFrame:(CGRect)arg1 text:(NSString *)text {
    if ((self = [super initWithFrame:arg1])) {
        self.blurEffectView = [[UIVisualEffectView alloc] init];
        self.blurEffectView.effect = [UIBlurEffect effectWithStyle:UIBlurEffectStyleLight];
        //self.blurEffectView.layer.cornerRadius = 14;
        self.blurEffectView.alpha = 0.85;
        self.blurEffectView.backgroundColor = UIColorMake(255, 255, 255, 160);
        self.blurEffectView.translatesAutoresizingMaskIntoConstraints = NO;
        [self addSubview: self.blurEffectView];

        [self.blurEffectView.leadingAnchor constraintEqualToAnchor:self.leadingAnchor].active = YES;
        [self.blurEffectView.trailingAnchor constraintEqualToAnchor:self.trailingAnchor].active = YES;
        [self.blurEffectView.topAnchor constraintEqualToAnchor:self.topAnchor].active = YES;
        [self.blurEffectView.bottomAnchor constraintEqualToAnchor:self.bottomAnchor].active = YES;

        self.textLabel = [[UILabel alloc] init];
        self.textLabel.text = text;
        self.textLabel.textColor = UIColor.blackColor;
        self.textLabel.textAlignment = NSTextAlignmentCenter;
        self.textLabel.font = [UIFont boldSystemFontOfSize:13];
        self.textLabel.adjustsFontSizeToFitWidth = YES;
        self.textLabel.translatesAutoresizingMaskIntoConstraints = NO;
        [self addSubview: self.textLabel];

        [self.textLabel.widthAnchor constraintEqualToAnchor:self.widthAnchor constant: -5].active = YES;
        [self.textLabel.heightAnchor constraintEqualToAnchor:self.heightAnchor].active = YES;
        [self.textLabel.centerXAnchor constraintEqualToAnchor:self.centerXAnchor].active = YES;
        [self.textLabel.centerYAnchor constraintEqualToAnchor:self.centerYAnchor].active = YES;

        self.layer.cornerRadius = 14;
        self.clipsToBounds = YES;
    }
    return self;
}
@end
restive ether
#

big penis button dot m

indigo peak
#

you know

primal perch
#

wtf he got it

#

how

#

does gameseagull do 8ball trajectory

indigo peak
#

yeah

indigo peak
primal perch
indigo peak
#

726574617264

primal perch
#

oh true

#

not that its a secret anymore

restive ether
#

game seagull when it just be game pigeon code

primal perch
#

fr

#

we st ill have the cup pong though

#

because scoop big brain

restive ether
#

giving twickd money smh

#

like those mfs were paying taxes anyways

primal perch
#

theyre so bad

#

then they did the token shit too

indigo peak
#
  if(extTrajectory) {

        uint32_t newBallVal = 0x52A88F48, newCueVal = 0x1E67D002;
        void *ballAddr, *cueAddr;

        ballAddr = (void *)((unsigned char *)_dyld_get_image_header(0) + 0x155684);
        MSHookMemory(ballAddr, &newBallVal, sizeof(newBallVal));
        cueAddr = (void *)((unsigned char *)_dyld_get_image_header(0) + 0x155750);
        MSHookMemory(cueAddr, &newCueVal, sizeof(newCueVal));

        ballAddr = (void *)((unsigned char *)_dyld_get_image_header(0) + 0x0CA6B0);
        MSHookMemory(ballAddr, &newBallVal, sizeof(newBallVal));
        cueAddr = (void *)((unsigned char *)_dyld_get_image_header(0) + 0x0CA77C);
        MSHookMemory(cueAddr, &newCueVal, sizeof(newCueVal));

        ballAddr = (void *)((unsigned char *)_dyld_get_image_header(0) + 0x0644FC);
        MSHookMemory(ballAddr, &newBallVal, sizeof(newBallVal));
        cueAddr = (void *)((unsigned char *)_dyld_get_image_header(0) + 0x0645C8);
        MSHookMemory(cueAddr, &newCueVal, sizeof(newCueVal));
        
    }

@primal perch

primal perch
#

at this point we're probably losing money on it

restive ether
#

they should’ve just did nfts at that point

#

the twickd coins shit was so dumb

primal perch
#

yea

restive ether
#

it just seems like a scam so they don’t have to pay you more than they have

primal perch
#

it is

restive ether
#

lol

indigo peak
#

wait 13k birdpoop downloads?

restive ether
#

they’re basically a pimp

primal perch
#

i dont blame chariz or packix for not taking it though

restive ether
#

and controlling how much money you have

primal perch
#

either way we got cash so it worked out

indigo peak
#

@primal perch fuck you.

#

i am superior

#

17,450 > 13k

primal perch
#

profit: 0.00

restive ether
#

lmaoooo

gentle grove
primal perch
#

(zero)

indigo peak
#

but i didnt

restive ether
#

shep: bag fiore: no bag

indigo peak
#

0 bitches, 0 profit

primal perch
gentle grove
#

foss supporters when they're homeless

primal perch
#

lmao true

restive ether
#

lmaooo

indigo peak
#

0 passwords for birdpoop

restive ether
#

RMS when he’s homeless

#

but it’s open source doe

gentle grove
#

root mean square

restive ether
#

average nvidia user

gentle grove
#

fr

#

nouveau users you mean

restive ether
#

no hoes?

primal perch
gentle grove
#

hdmi to water hose

primal perch
#

tearing with proprietary on linux

gentle grove
#

i dont get tearing

#

skill issue

primal perch
#

if they would like not write ass xorg drivers that'd be great

#

idgaf that theyre closed source but how do they have stuttering and tearing on GNOME in 2022

#

on a rtx 3070

#

half of it is gnome tbf

#

ass gnu code

gentle grove
#

i have no tearing on dwm-flexipatch and picom

#

L

indigo peak
#

hey so shep

primal perch
#

yea who uses dwm and picom

indigo peak
#

wanna like

restive ether
indigo peak
#

re compress it

gentle grove
indigo peak
#

no password

primal perch
#

really though who uses linux

indigo peak
#

just for me

gentle grove
#

idiot

#

i just said

gentle grove
#

smh

indigo peak
#

👉 👈

primal perch
restive ether
indigo peak
gentle grove
#

prison

indigo peak
#

@primal perch you forgot that styep

#

please

#

go back

restive ether
#

if you use pure wayland you should be in prison

primal perch
indigo peak
#

i stg

#

die

#

in a fire

primal perch
#

now in LZMA2

indigo peak
#

i cant even tell you to kay why ess anymore

restive ether
#

@primal perch is the password an actual word

indigo peak
#

because bloo filtered it

gentle grove
#

kay why ess

indigo peak
#

no its probably like

primal perch
#

idk dawg its like 60 random characters

gentle grove
#

it worked though

restive ether
#

oh it’s just some nonsense

indigo peak
#

[90q237 VVN374PGHIOUYNBAW43TVO[U8A3Y4B79R80TYW IUEF HBZKSBFDVOUJHsegoFD"pqaoif

#

[EGIRUI

restive ether
#

hahaha

primal perch
#

yea

#

lmafo

gentle grove
#

it's nmot filtered

restive ether
#

give me your gpg key

gentle grove
#

wait yeah it is

#

wtf

#

since when

primal perch
#

gpg

#

g stands for gnu so its bad

#

so i dont use it

restive ether
#

ok, bpg

#

BSD

#

easy

gentle grove
#

PGP

primal perch
#

oh thats a thing

restive ether
#

piss, gamer piss

primal perch
#

i see g and p and i thought they were the same

#

gpg and pgp lmao

gentle grove
#

pgp is the standrad i think

indigo peak
#

@primal perch you're not funny. gibe paswerd or else

gentle grove
#

not an actual program

primal perch
#

unironically you can have it for 1000$

gentle grove
primal perch
#

thats more than can be profited off it

indigo peak
#

jew.

primal perch
restive ether
gentle grove
#

when byou put just one 0

primal perch
#

btrfs try not to have a fatal bug for 1 month challenge

indigo peak
#

shep try not to make money for 1 month challenge

restive ether
#

zfs woe

primal perch
#

impossible because im on that grind

#

hence why im not broke

indigo peak
#

like me

primal perch
#

and by grind i mean sitting on my ass

#

though i am tryna find some work

indigo peak
#

i need to make something paid

#

like fr

restive ether
#

how about you grind on some hoes

primal perch
#

based

restive ether
#

the code doesn’t even have to be good

#

luck at southern girl who codes

#

that code was fucking garbage and people ate it up

primal perch
#

thats all tweaks

indigo peak
#

problem is, i need something thats good, original and going to be popular enopugh to make me like $10

primal perch
#

you can shit out layoutsubviews and get thousands of dollars

primal perch
restive ether
indigo peak
#

do you think if i make discord theme tweak paid it will generate me good revenue

restive ether
#

no

primal perch
#

whatever you do just make a SB tweak

#

unless you can find a popular game like gamepigeon thats easy to cheat

restive ether
#

yeah if it’s a springboard tweak you can milk it

primal perch
#

but i dont think theres any more games like taht

#

gamepigeon validation = none

restive ether
#

when the game pigeon man trolls you and server validates everything

indigo peak
#

wordle /shrug

#

if i made that

#

for $0.99

#

would it be money

restive ether
#

yea

tidal jungle
indigo peak
#

like money money

#

or just money

#

because ive been meaning to work on that for a while

primal perch
#

just money

indigo peak
#

dang

primal perch
#

thats a gimmick altho it is kinda cool

#

the average user doesnt see that and go "shit gotta get moms credit card"

indigo peak
#

gamepigeon hacks are definitely that

#

also

primal perch
#

they are that

indigo peak
#

how do i get money online

primal perch
#

we made 60% of the money in the first 3 months

indigo peak
#

without being 18

primal perch
#

commit tax evasion

#

and lie

indigo peak
#

but how do i use the money

primal perch
#

paypal

indigo peak
#

bc my paypal acc can get the money

primal perch
#

transfer it to an account

indigo peak
#

i just cant do anything ocne i get it

#

bc i dont have a bank acc yet

primal perch
#

get a debit card and account today then

indigo peak
#

my mother wanted to set one up for me

#

but was like

#

nah

tepid olive
indigo peak
#

yeah

tepid olive
#

oh wait ur not 18

indigo peak
#

yeah im not

#

but i do have it

#

idk it off the top of my head, but i know where it is

primal perch
#

send me it and ill help

indigo peak
#

ok

#

its

#

347 891 3920

primal perch
indigo peak
#

ok so is birdpoop source going to my social's mailbox?

gentle grove
indigo peak
#

no mine is 3

gentle grove
#

3 what

indigo peak
#

nothing

#

just 3

gentle grove
#

3 what

indigo peak
#

nothing
just 3

gentle grove
#

3 what

tepid olive
#

3

gentle grove
#

3 what

tepid olive
primal perch
#

cum

gentle grove
lime pivot
indigo peak
#

no it's not

lime pivot
#

is this mum or dad fiore number leak 😂

indigo peak
#

i would send my number but like, privacy

#

ong

vivid dew
#

that's my number

ocean raptor
#

netctl cellular call 3

primal perch
#

damn i really just created manual ssdts

zenith hatch
#

cum bucket

silver rampart
#

phones

restive ether
#

sorry i just slammed into your walk dog

primal perch
prisma grove
#

This isn't a memory leak is it? UIColor* customColorFunction(__unsafe_unretained UIView* const self, SEL _cmd) { return ((UIColor*(*)(Class, SEL)) objc_msgSend) (UIColor.class, colorSelector); }

#

objc_msgSend sometime still confuses me about doing memory management

#

If anyone was curious about what I'm doing

silver rampart
prisma grove
#

Yes, I can just have the switch statement in the customColorFunction which would return the UIColor and I guess that would be the proper way, but it's not as efficient nor as fun

prisma grove
ocean raptor
#

why not just [UIColor performSelector:colorSelector]

silver rampart
#

^

#

use that; there's nothing inherently wrong with the switch statement you're doing; i've seen that exact setup used in SpringBoard family frameworks

prisma grove
#

besides performSelector just calls objc_msgSend anyways

ocean raptor
#

but performSelector: is actually readable

#

which makes more sense:
((UIColor*(*)(Class, SEL)) objc_msgSend) (UIColor.class, colorSelector)
or
[UIColor performSelector:]

prisma grove
#

Either way no memory leak though, right?

ocean raptor
#

or set a variable to the UIColor then use that after

prisma grove
ocean raptor
#

I don't understand what you're doing

#

just try it and see if there are any issues 🤷‍♂️

primal perch
#

cool

#

xcode errors my build because 75 lines of swiftUI is "too much to parse in a reasonable time"

#

garbage ass ide

prisma grove
prisma grove
lime pivot
vivid dew
#

@restive ether

#

this you?

undone nest
#

wtf

pearl sail
inner maple
#

Uhh no I don’t see anything that does that

inner maple
#

And iam supposed to change something to foundation.. a drop menu with foundation nowhere to be found

lime pivot
#

love how passive aggressive it is

untold river
#

Think I got most ground covered now

#

optional caching, custom cache dir, macos version checks, package installation, and it can even be run multiple times without issues (probably) trolley

final consideration would be adding an option for a custom mirror but there's like two of them and i'm lazy

untold river
#

in which way is this related to blobs

#

🗿

tepid olive
#

/procursus-action/blob/main/action.yml>

#

Blob

torn oriole
inner maple
civic depot
#

Hi

inner maple
#

Oi

ocean raptor
#

smh

#

linux has lots of proprietary blobs trol

faint lionBOT
#
ThanosFuck

Update 0.0.4 - Changes method of spawning processes since Pwn called me out and now I have to deliver...

Author

Max Bridgland

Version

0.0.4

Price

Free

Bundle ID

io.securarepo.thanosfuck

tepid olive
hasty ruin
#

literally gonna help some kid crack his filza password bc hes a dumbass and forgot it fr

#

who even password locks filza

#

didn't even know it was a feature

ocean raptor
#

lol, it's md5 KEKW

hasty ruin
#

bioprotect's password is unhashed uhh

ocean raptor
#

john the ripper will do that in it's sleep

hasty ruin
#

anything will

ocean raptor
hasty ruin
#

the user is really stupid

#

i aint gonna get them to install a terminal app

#

and they dont know what ssh is

hasty ruin
ocean raptor
restive ether
primal perch
#

cli editor woeis

hasty ruin
#

it did not require a gui thishowitis

bold torrent
#

hey fellows could anyone let me know if open.spotify.com is accessible on your iphone if used in firefox and with desktop mode on, or does it force the app install page?

hardy glen
crystal prism
#

Lmfao

crimson plover
#

Hey. This runs code when a user taps on a collection item. I want a different function to run different code when a user holds down on that same item. I'm assuming I'd replace "didSelectItemAt" with another keyword, like "didHoldDownItem". Does anyone know the swift UIKit keyword to trigger code when user holds down on a collection item?

crimson plover
#

Actually, is there documentation about what actions you can perform on collectionitems and collectionviews?

#

Hey if anyone wants to teach me iOS dev, I'm happy to pay you for your time (and saving me time) 😂

harsh needle
#

people still use it these days?

hasty ruin
#

Yeah

harsh needle
#

ah lovely days when the leaderboard was full

crimson plover
grim sparrow
#

you need to add a gesture recogniser

#

and then in your handler for that get the cell at the point

crimson plover
#

I see what you mean! I should be able to figure it out now

grim sparrow
#

lol

hasty ruin
#

yalu102 style

primal perch
indigo peak
#

if i convert this to base64 and then sha256 encode it will i get the password

primal perch
#

ye

indigo peak
#

power move wouldve been to delete it before i saved it

glacial matrix
#

as long as the image on discord is the same as the one that was uploaded

primal perch
#

of the image

indigo peak
#

ong?

glacial matrix
#

oh lord

indigo peak
#

ok can confirm the password is not ACF0747373A3B1CC5081AA3B3CE37EFD540E11F8FEF03AE330B5EC0C49197F74

#

@primal perch did you say bytes or bits

#

im assuming it was bytes

glacial matrix
#

bytes

indigo peak
#

@primal perch it's not working

#

probably my code, but still

#

it aint working

#
import io
from PIL import Image
e = open("file.txt", "w+")
with open("ok.jpeg", "rb") as image:
    f = image.read()
    b = bytearray(f)
    print(type(b))

    for i in range(len(b)):
        if i % 4 == 0: e.write(str(b[i]))
e.close()
e = open("file.txt", "rb")
imageBinaryBytes = e.read()
imageStream = io.BytesIO(imageBinaryBytes)
imageFile = Image.open(imageStream)
print("imageFile.size=%s" % imageFile.size)
primal perch
#

totally didn’t make it up to troll you

indigo peak
#

no shit sherlock

primal perch
#

ntwerk

indigo peak
#

im bored so im just doing whatever you say it is

primal perch
#

😂

indigo peak
#

sooooo likeeeeee

#

what is it