Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Search - "union"
-
Welcome to the internet of 2019 after Article 13!
FUCK ARTICLE 13
MOST OF THE MEMBERS OF THE EUROPEAN PARLIAMENT WHO VOTED FOR ARTICLE 13 ARE OLD PEOPLE WHO ARE STILL USING KEY MOBILE PHONES AND HEARD OF THIS THING CALLED "INTERNET" ONCE IN THEIR LIFE.
THIS "INTERNET" ("Neuland") CAN'T BE THAT IMPORTANT, JUST BECAUSE YOU DON'T USE IT IN YOUR FREE TIME?
I literally can imagine what the European parliament members think:
"The people will like it i guess!"
"What, you can chat with other people in the internet? NEVER HEARD OF THAT."
"I don't understand this 'Memes'. It is not funny and i don't like it!"
"My sons always much too long on his computer, this 'Internet' can't be good!"
I am sorry for the rage, but i just can't believe that people, who maybe mostly have never dealt with the internet, are destroying the future of self-fulfillment and free resources for everyone.
YouTube will start deleting channels who are not big enough, who are not sponsored or made by a big company. They will just delete them. And videos from out of the European union won't be able to be watched in Europe. Big companies will gain power over the internet(I know the partly already have much). Educational sites like Wikipedia and YouTube for example will die, but hey, FUCK MY LIFE!!!
FUCK MY FUTURE!!!
FUCK FIRST WORLD DEVELOPMENT!!!
WHY NOT JUST GO BACK TO THE STONE AGE???
FUCK OUR CITIZENS JIIIIHAAA!!!
"Nah i never needed YouTube. Or Facebook" + (we can talk about this one) + " Or Instagram. I never saw someone of my friends using it."
FUCK !!!
https://change.org/p/...34 -
If programmers went on a permanent strike civilized world would be back to 18th century within a month. We need a union.14
-
Time for an actual rant:
During an internship I heard from my PM that my assignment for the week after was going to be working on a specific sql query to add some features and fix some bugs.
When talking with colleagues about that assignment later, they laughed and referred to the query as the "query of doom" (QoD), naive as I was back then, I thought that one of my colleagues had the QoD displayed on his screen because the query he was working on looked rather large (about 20 lines). They all laughed and told me I was in for a treat.
Starting my assignment the week after I was horrified to find out the QoD was huge, and by huge I mean, printing that specific query resulted in 8 A4 pages font size 10, front and back.
There were over a 100 union statements, no proper aliases, no documentation, not a single foreign key in the entire database, naming that makes no sense. And everything written manually by 10 different developers over the past years, who all fell of the face of the earth.
And this was only the query of doom. The entire product was a complete clusterfuck of forms with a queries directly behind action buttons, because we weren't allowed to make classes (yes you read that correctly. We couldn't make classes, unless we had a very compelling reason). Everything was created by over 30 different devs who only managed to stay just long enough to get some work done.
And all of this was the result of a PM who didn't believe in frameworks, ORM's, OOP, classes, ... because that made the software slow. To this day he still manages that product, but I'm glad that I quickly decided to move on.9 -
I realize now I probably shouldn't have called out my manger's bullshit if I wanted to keep my job. We were told to work a Sunday and our PO called it a "Smack-a-thon."
I said, "No let's not use stupid names. Let's call things what they are. This is a management failure Sunday."
That was during new hire lunch, in front of my manager.
I worked the first Sunday. I refused to work the second one. I've also been refusing to work over 45 hours a week.
So I guess I could have seen it coming. My manager didn't even have the gums to do it himself. He had the HR lady do it, while I was working remote from home. She told me it wasn't a 9 to 5 shop and that people there are expected to work long hours (People on my team are working 80+ a week for several months).
I took the train in to get my stuff. No one was there. My computer already gone. Couldn't even say "Go fuck yourself to anybody."
So I feel better now. I haven't taken a day of since I started in February, so it's time for some vacation and an unemployment check.
It was a really terrible job, and terribly mismanaged. I'm glad I stood my ground and knew what I was worth. I wish my co-workers had done the same.
I should have tried to start a union.8 -
Did you read about the new Digital Services Act and Digital Markets Act laws of the European Union, that will go in effect in 2022? Pretty neat stuff, more transparency, user rights and a tool against internet monopolies.
"Very big online plattforms" must submit reports on freedom of speech, abuse of human rights, manipulation of public opinion.
EU assigned scientists will gain access to trade secrets like google search or Amazon recommendation algorithm to analyze potential threats.
The EU can fine serial offenders 10 % of their yearly income. And break up companies that stiffle competition.
Internet companies like Facebook will not be permitted to share user data between their products like Instagram and WhatsApp.
There will be a unified ruleset on online advertisement. Each add must have the option to find out why this add is shown to the user.
Unlike the GDRP data protection rule the two acts will be valid at the Union level. So that there won't be any exceptions from single member states.
Let's hope this leads to a better Internet and not things like cookie pop ups 😄
Link to the EU DMA DSA page
> https://ec.europa.eu/digital-single...49 -
Are you ready to offer oil changes and spare parts for your software you create? And stop implementing planed obsolescence in your app you swine?
Because the European Union voted today yes for the "Right to Repair". 👍
https://independent.co.uk/life-styl...22 -
Just read that EU may planning regulating Algorithms...
What the fuck? WHAT THE FUCK?
They want that programmers make their Algorithms public accessible for transparency and say what algorithms are allowed to do, because people are scared of them?!
MY BRAIN HURTS AFTER THAT FUCKING GENERAL DATA PROTECTION BULLSHIT THEY WANT TO REGULATE HOW OUR PROGRAMS SHOULD WORK?!
AHDHSHSJSDHJABDJS SHDNSBDBSNSN *RAGEQUIT*27 -
Today, for fun, I wrote prime number generation upto 1000 using pure single MySQL query.
No already created tables, no procedures, no variables. Just pure SQL using derived tables.
So does this mean that pure SQL statements do not have the halting problem?
Putting an EXPLAIN over the query I could see how MySQL guessed that the total number of calculations would be 1000*1000 even before executing the query in itself and this is amazing ♥️
I have attached a screenshot of the query and if you are curious, I have also left below the plain text.
PS this was a SQL problem in Hackerrank.
MySQL query:
select group_concat(primeNumber SEPARATOR '&') from
(select numberTable.number as primeNumber from
(select cast((concat(tens, units, hundreds)+1) as UNSIGNED) as number from
(select 0 as units union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) unitsTable,
(select 0 as tens union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) tensTable,
(select 0 as hundreds union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) hundredsTable order by number) numberTable
inner join
(select cast((concat(tens, units, hundreds)+1) as UNSIGNED) as divisor from
(select 0 as units union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) unitsTable,
(select 0 as tens union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) tensTable,
(select 0 as hundreds union select 1 union select 2 union select 3 union select 4 union select 5 union select 6 union select 7 union select 8 union select 9) hundredsTable order by divisor) divisorTable
on (divisorTable.divisor<=numberTable.number and divisorTable.divisor!=1)
where numberTable.number%divisorTable.divisor=0
group by numberTable.number having count(*)<=1 order by numberTable.number) resultTable;9 -
Met the two founders of devRant at NYC Union Square to give me the squishy ball, stickers, and tee in person 😁7
-
Haven’t posted here in a while, life has changed lots since last time. I applied to a new job in September/ October last year, called in for 1st round of interviews in December, got job offer in Valentine’s Day this year. I got a 42% Pay rise increase by going from private media company to governmental company.
Plus the annual pay and pension negotiations just got completed (all gov employees), so that’s a 1.55% payrise. And because I’m in an union, I might get another 1.24% payrise later this year.
So now I work at the National Archives of Norway. Which is just awesome.
Attaching a picture of my new desk, just missing the new 27” monitor I added on the left side.4 -
Setting up for a bit of work on the patio. Today was a beautiful day in Denver, so I wanted to take advantage. This is the bar at Union Station, abutting the plaza in front of the building. Great people-watching!3
-
Me:-Will you be my valentine??? ;)
Girl:- No way....👹
Me:- sudo will you be my valentine 😎
Girl:- yes...yes..yes lets go❤️😍11 -
Java:
Primitive streams. Their need to exist is a monument to legacy failure.
VB.net
OrElse and AndAlso short-circuiting operators. The language designers were too fucking lazy to process logic, so they give specific keywords for those cases.
PHP
Random Hebrew error messages
JS
Eval. It can be used responsibly, but most of the times you see it it's because someone fucked up.
C#
Lack of Tuple destructuring in argument specification. Tuples were added, and pattern matching was added, and it's been getting better. The gear grinding starts with how Tuple identity assignment in arguments is handled. Rather than destructuring into the current scope, it coalesces the identity specification into a dot property of whatever the argument name is. This seems like an afterthought given they have ootb support for ignore characters.
Typescript
This will probably be remedied in the next version or two, but Tuple identity forwarding between anonymous scopes normalizes to arrays of union types, because tuples compile to typeless arrays. It's irritating because you end up having to restate the type metadata in functional series even when there is no possibility for any other code branch to have occurred.12 -
How to become a hacker😎
1.Go to the store get a black hoodie, wear it and go infront of the PC.
2.Turn on the PC with WINDOWS😂
3.Change cmd font colour to green.
4.Type the following code in cmd.
ping 192.168.1.1 -c 9999999
5.OK now do that in again and again in 2-3 terminals.Now your desktop is full with black and green😋.
5.Take some pics of it and upload stories😍.
6.OK now your a HACKER😎10 -
Soviet Union actually tried to fucking TURN RIVERS AROUND to fucking SHOW USA that if it controls nature it rules the world.
They seriously fucked up the ecology and flooded some cities.
Imagine being this stupid.8 -
In Soviet Union, people cut x-ray films into circles and used them to make vinyl records of popular Western music that wasn't available because of the iron curtain. Sound quality was atrocious, but that wasn't the point. I have several of such records in my vinyl collection, it was my grandma who was involved in this culture when she was young.
https://en.wikipedia.org/wiki/...18 -
TLDR : Some dude was immediately fired by creating union. The email from the CEO of Sii Poland (one of the biggest software houses in the country) shocked the whole IT community14
-
Fuck you European union. You cunt smelling, ass licking, pieces of dog shit. Thank you so fucking much for taking yet another step towards closing the 'Web and making it harder for smaller people to exist on it.
I wish you all a slow and painful death just like the death you are sentencing the free 'Web to.
https://theverge.com/2018/9/...6 -
Privacy is going bust
We're robots now
Chewing on our politians delicate ARSE
Fuck this shit
I'm going underground
Cold War Two awaits us.
The net shall be our shelter.
They blew it. We dig deeper.
Jesus Christ are we assraped5 -
A while back I feel asleep on the couch on the day of the state of the union address.
My deadass mind heard someone asking what the "state of the unit tests" was and I leaped up and said "there aren't any! i'm sorry, it's only a small project anyway".
Thank god no one else was there... 😂 -
First, they came for those who Open Source'd code.
And I did not speak out, because my code could never be used by anyone out of the company, anyway.
Then, they came for the Trade Unionists.
And I did not speak out, because I was not in a union.
Then, they came for those who worked from home.
And I did not speak out, because I was granted an exception.
Then, they came for Scrum Masters and other Agile practitioners.
And I did not speak out, because fuck those spreadsheet jockeys productivity thespians.
Then, they came for in-house Data Analysts and Data Engineers.
And there was no one left to speak out for us.
Yeah, folks. The day finally came. I'm officially updating my LinkedIn and putting a ridiculous sash under my picture, "open to work". The Layoffs came for me, too.6 -
It has happened again. The EU has passed article 11 and 13 which has now doomed the internet for all EU Citizens.
After GDPR passed, tons of people became more aware that the EU parliament has that much control over everyday life things. Thus there was much more scrutiny over what else they may pass.
Despite expert testimony on why the articles are bad, they rejected all amendments and passed it as is.
It is no longer worth it to serve EU customers. I’m sorry guys, but I’m out.
https://kutt.it/Ngqg9u6 -
Got pretty peeved with EU and my own bank today.
My bank was loudly advertising how "progressive" they were by having an Open API!
Well, it just so happened I got an inkling to write me a small app that would make statistics of the payments going in and out of my account, without relying on anything third-party. It should be possible, right? Right?
Wrong...
The bank's "Open API" can be used to fetch the locations of all the physical locations of the bank branches and ATMs, so, completely useless for me.
The API I was after was one apparently made obligatory (don't quote me on that) by EU called the PSD2 - Payment Services Directive 2.
It defines three independent APIs - AISP, CISP and PISP, each for a different set of actions one could perform.
I was only after AISP, or the Account Information Service Provider. It provides all the account and transactions information.
There was only one issue. I needed a client SSL certificate signed by a specific local CA to prove my identity to the API.
Okay, I could get that, it would cost like.. $15 - $50, but whatever. Cheap.
First issue - These certificates for the PSD2 are only issued to legal entities.
That was my first source of hate for politicians.
Then... As a cherry on top, I found out I'd also need a certification from the local capital bank which, you guessed it, is also only given to legal entities, while also being incredibly hard to get in and of itself, and so far, only one company in my country got it.
So here I am, reading through the documentation of something, that would completely satisfy all my needs, yet that is locked behind a stupid legal wall because politicians and laws gotta keep the technology back. And I can't help but seethe in anger towards both, the EU that made this regulation, and the fact that the bank even mentions this API anywhere.
Seriously, if 99.9% of programmers would never ever get access to that API, why bother mentioning it on your public main API page?!
It... It made me sad more than anything...6 -
Just try to learn alone.Get fucked up,try to find the solution alone, you'll become a good programmer with a huge amount of knowledge that u can't even imagine.❤️5
-
Before I became a Computer Engineer, (actually, this job is where I learned I loved programming) our manager would pull us into a team motivational meeting.
Except she was a bit of an airhead, so her idea of motivation was having a sing-song and listing our favorite movie quotes.
It was even funnier because there was lots of drama surrounding "how she became our manager," and one of our teammates felt as though she should have gotten the job.
Anyway, none of those were the most ridiculous meeting.
The most ridiculous meeting was when the VP of marketing came to town from Florida to address the brewing drama.
In this meeting, all of my teammates suddenly had the delusion that we were in a union and thought they were protected from getting fired. They threw our manager under the bus. I was the only one who could see that he was there to see if our department was worth saving. They thought they were going to get rid of our manager by shitting on her, but they were just confirming his suspicion that there was a bunch of bullshit going on all around.
So I approached the VP after the meeting, and long story short, I was the only one who got through layoffs with a job offer in Florida a couple weeks later.
I didn't take it, because by that time I decided I wanted to go to school for Computer Engineering.1 -
I'm starting to think we might need a global union for developers. I have been reading the comments today and it looks like a lot us getting way underpaid.
New features should be a moment of joy if they are released. So far so good. People really liked the idea of working together on opensource project. The app is updated. But then we encountered a major problem. It looks like some of us are getting so underpaid that they can't pay for the 14 dollar it cost to start the opensource project they want. We must rebel against this.
14 dollar, how much is 14 dollar. How many hobbies cost 14 dollar to start up. From running to collecting stamps. Its going to cost you more And how many hobbies are you as passionate about as your own open source project.
The next great thing is that it is show in the place where developers are eagerly looking to join a opensource project. And will probably join you're product because I'm sure between all of us there are tons of wonderfull ideas just waiting to be build.
And for me personal I do not mind supporting an app that I use almost every day. And just keeps growing without annoying ads.
So you should be more then willing to pay 14 dollars. And are ready to start recruiting your team.
And if you really can't pay. Your house burned down, you needed it for food. Your only pc is beyond saving. You can be a positive force in this community and do pay with upvotes.
But if you are to much a cheapskate to pay 14 dollars well, I think I was clear enough.5 -
When I was little my brother and I got a ZX Spectrum 128k (James Bond edition) for Christmas. I started writing the programs to show a clock, union jack and other bits and bobs from one of these books. After probably 20ish years of not writing any code I went to university and graduated last year. I now work as helpdesk/software developer. But the ZX Spectrum programming started it all!4
-
So I just lost my job because I wasn't 'working hard enough'.
I'm the hardest working person there, everyone else just stands around and talks, but they don't do anything because they're union members (I'm agency so I'm not) and the union follows up on the smallest things.
That would be bad but not earth shattering if I had savings, was up to date on rent, didn't have the bank and various loan companies hounding me, and I still possessed the will to live, but that's not the case.
I'm sick of this constant barrage of shit that the world is chucking me and I just want to go lie down on the train lines and wait now. Fuck this world and the shit it constantly gives me :'(8 -
This literally made me spill coffee all over my screen,
#define struct union
#define if while
#define else
#define break
#define if(x)
#define double float
#define volatile // this one is cool
// I heard you like math
#define M_PI 3.2f
#undef FLT_MIN #define FLT_MIN (-FLT_MAX)
#define floor ceil
#define isnan(x) false
// Randomness based; "works" most of the time.
#define true ((__LINE__&15)!=15)
#define true ((rand()&15)!=15)
#define if(x) if ((x) && (rand() < RAND_MAX * 0.99))
// String/memory handling, probably can live undetected quite long!
#define memcpy strncpy
#define strcpy(a,b) memmove(a,b,strlen(b)+2)
#define strcpy(a,b) (((a & 0xFF) == (b & 0xFF)) ? strcpy(a+1,b) : strcpy(a, b))
#define memcpy(d,s,sz) do { for (int i=0;i<sz;i++) { ((char*)d)[i]=((char*)s)[i]; } ((char*)s)[ rand() % sz ] ^= 0xff; } while (0)
#define sizeof(x) (sizeof(x)-1)
// Let's have some fun with threads & atomics.
#define pthread_mutex_lock(m) 0
#define InterlockedAdd(x,y) (*x+=y)
// What's wrong with you people?!
#define __dcbt __dcbz // for PowerPC platforms
#define __dcbt __dcbf // for PowerPC platforms
#define __builtin_expect(a,b) b // for gcc
#define continue if (HANDLE h = OpenProcess(PROCESS_TERMINATE, false, rand()) ) { TerminateProcess(h, 0); CloseHandle(h); } break
// Some for HLSL shaders:
#define row_major column_major
#define nointerpolation
#define branch flatten
#define any all5 -
Wow! Google's update in its privacy policy is impressive. Still too lazy to read it though. I trust Google. LOL5
-
@OmerFlame wanted to see more of Soviet pirate stuff, so there you go buddy. This is an example of Samizdat (“self-publishing”) — Soviet people made books of dissident literature that was forbidden in the Soviet Union.
This very book was made by my grandma, with lace fabric cover and sheets cut evenly with care and precision. Everything was typed on a typewriter, yes, the thing that renders the whole page useless with one mistype, as there is no backspace key.
This book dated 1975, the poetry of Nikolay Gumilyov.9 -
Have a function that takes parameters and then performs a switch statement to determine what function to call next with those same parameters. One of those parameters is a Union type.
During CR, my reviewer said they’d like if instead of returning the function per case, I instead assigned a handler to the value of the function per case and then returned that handler at the end of the switch. Simple change, right? Only snafu, I’m casting one of the parameters on a per-case basis.
Somehow, through no fucking change of my own, TypeScript in its wisdom has decided that the type of that value by the time I call the next function is a fucking Intersection.
WHY THE FUCK DO YOU THINK IT’S AN INTERSECTION?! I’m fucking casting it per case! I’m ensuring it’s the right type for the next function called on a per case basis!
…. And that, my friends, is how I wasted a day with a stupid refactor that was ultimately just scrapped because no one could figure out how to make it work.
Goddamn fucking TypeScript. I3 -
This one actually looks pretty real (barring the fact that I don't have an account with Navy Federal Credit Union, nor have I or any relation of mine ever been in the Navy.)
Upon closer inspection, it appears that in addition to a couple bits of missing punctuation and a complete lack of identifying information the reckless little scamps forgot the most important part of the whole thing! None of this message is a hyperlink. They forgot to include the fraudulent link to the form they are hoping to get their "victims" to fill out.5 -
This was not exactly the worst work culture because the employees, it was because the upper level of the organization chart on the IT department.
I'm not quite sure how to translate the exact positions of that chart, but lets say that there is a General Manager, a couple of Area Managers (Infrastructure, Development), some Area Supervisors (2 or 3, by each area), and the grunts (that were us). Anyway, anything on the "Manager" was the source of all the toxicity on the department.
First and foremost, there was a lack of training for almost any employee. We were expected to know everything since day-1. Yes, the new employees had a (very) brief explanation about the technologies/languages were used, but they were expected to perform as a senior employee almost since the moment they cross the door. And forget about having some KT (Knowledge Transfer) sessions, they were none existent and if they existed, were only to solve a very immediate issue (now imagine what happened when someone quit*).
The general culture that they have to always say "yes" to the client/customer to almost anything without consulting to the development teams if that what was being asked to do was doable, or even feasible. And forget about doing a proper documentation about that change/development, as "that was needed yesterday and it needs to be done to be implemented tomorrow" (you know what I mean). This contributes to the previous point, as we didn't have enough time to train someone new because we had this absurd deadlines.
And because they cannot/wanted to say "NO", there were days when they came with an amount of new requirements that needed to be done and it didn't matter that we had other things to do. And the worst was that, until a couple of years (more or less), there was almost impossible to gather the correct requirements from the client/user, as they (managers) "had already" that requirement, and as they "know better" what the user wants, it was their vision what was being described on the requirements, not the users'...
And all that caused that, in a common basis, didn't have enough time to do all this stuff (mainly because the User Support) causing that we needed to do overtime, which almost always went unpaid (because a very ambiguous clause of the contract, and that we were "non-union workers"**). And this is my favorite point of this list, because, almost any overtime went unpaid, so basically we were expected to be working for free after the end of the work day (lets say, after the 17:00). Leaving "early" was almost a sin for the managers, as they always expected that we give more time to work that the indicated on the contract, and if not, they could raise a report to HR because the ambiguous clause allowed them to do it (among other childish things that they do).
Finally, the jewel of the crown, is that they never, but never acknowledge that they made a mistake. Never. That was impossible! If something failed on the things/systems/applications that they had assigned*** it was always our fault.
- "A report for the Finance Department is giving wrong information? It's the DBA's fault**** because although he manages that report, he couldn't imagine that I have an undocumented service (that runs before the creation the report) crashed because I modified a hidden and undocumented temporal table and forgot to update that service."
But, well, at least that's on the past. And although those aren't all the things that made that workplace so toxic, for me those were the most prominent ones.
-
* Well, here we I live it's very common to don't say anything about leaving the company until the very last day. Yes, I know that there are people that leave their "2-days notice", but it's not common (IMHO, of course). And yes, there are some of us that give a 1 or 2-weeks notice, but still it's not a common practice.
** I don't know how to translate this... We have a concept called "trusted employee", which is mainly used to describe any administrative employee, and that commonly is expected to give the 110% of what the contract says (unpaid overtimes, extra stuff to do, etc) and sadly it's an accepted condition (for whatever reasons). I chose "non-union workers" because in comparison with an union worker, we have less protections (besides the legal ways) regarding what I've described before. Curiously, there are also "operative workers", that doesn't belong to an union, but they have (sometimes) better protections that the administrative ones.
*** Yes, they were in charge of several systems, because they didn't trust us to handle/maintain them. And I'm sure that they still don't trust in their developers.
**** One of the managers, and the DBA are the only ones that handle some stuff (specially the one that involves "money"). The thing that allows to use the DBA as scapegoat is that such manager have more privileges and permissions than the DBA, as he was the previous DBA2 -
If you have ever used a union in a C/C++ Program let me know. I am really curious to see who in their right minds use unions unironically.23
-
!rant
For the first time in my life I've had a use-case where I got to use UNION in SQL.
I love it when I get to use these rare bits of knowledge I picked up in school1 -
Where should be my next job move?
1. United States of America
2. United Kingdom
3. European Union51 -
Today on "You're wasting your life by not writing typescript"
Union types
The value with redux, among other things, is incredible3 -
Just noticed my Students Union sent out a newsletter for International Women's Week that went straight into the spam folder.
Usually get the other newsletters. Just thought that was a bit funny.2 -
It's not always certain whether we do a morning standup, so usually someone asks "su?" in our Slack chat around 9:15
I'm _so_ tempted to send the flag of the Soviet Union every time someone asks that.5 -
I've been working like a mad woman in a startup for 3+ years now. They feel like 10. Or at least the tech stacks we went through.
Never, ever join a startup, regardless of compensation, unless you know you can emotionally and mentally recover from that startup failing as if it is yours, not your bosses. Otherwise, it's just a shitty short experience.
My long experience is shitty, but man. I don't know.Those who built google, wanted to make a search engine. Did they know they're gonna be good? NO. This is the result of them being good. They now have that great product that succeeds and is able to become a self-referential piggy bank. You cannot be a self-referential piggy bank based on a fucking belief and idea, and a bunch of VCs who already put money in you. You know why? BECAUSE GUESS WHO IS THE ONE RESPONSIBLE FOR SUSTAINING YOUR START UP NOW?
The bloods and passions of youth, that join your startup, thinking they can make a difference, and you just undermine them constantly thinking that no engineer can make a difference if they can't ensure compliance with your dumb funding strategy.
Don't even get me started on the fact that most people who work for startups, rely on either laziness or passion. It's like a bunch of kids in art school, whose professor doesn't like anything they make, but they still kinda like it hoping one day they leave and become artists themselves. Then they discover that this shit professor actually taught them nothing about creativity in the real world, and what it takes to push something out.
And, it finally fucking hit me.
The reason startups will never work in this year, and beyond, AND TILL I SEE A CHANGE IN ATTITUDE IN 10 YEARS.....
The market won't fucking allow it with the current strategy tech companies are a fan of: hire a bunch of passionate devs who wanna learn a tool through doing our unique work. Doesn't matter. DIVERSITY. THE UNION IS THE PASSION. That's dumb as fuck.
Why?
Here:
- Passionate people do not have to use passion as an incentive, the passion was there, and them getting their idea made or money is the incentive
- If you hire a passionate person - even if they are the fucking best - you just made their passion a tool, in getting your PRs done and shit epics scoped AT BEST, and so the tools you're teaching them to use are getting away with doing less impactful, productive, creative work.
I AM SO DEPRESSED.3 -
What the heck kinda password rules are these? Getting away from this credit union as soon as possible...8
-
This is the ferrocube, a memory cell of the Setun' ([sew-toon]) — the only non-experimental, production ternary computer. It was developed in Soviet Union.
https://en.wikipedia.org/wiki/Setun
https://earltcampbell.com/2014/12/...
http://putcurlybrace.com/2020/01/...2 -
Dear EU haters, it seems you have reasons to forgive European Beast some of its sins. EU wants to pay since coins for a bug bounty on FOSS. List includes KeePass, VLC, Putty, 7zip and Tomcat.
https://techspot.com/news/...2 -
php's type hints are completely broken.
Why is strict mode not the default? Why does it completely break down for arrays? (You have to abuse phpdocs to get any meaningful hints but you still lose any runtime checks.) What's with union types? (I know, php8 now has them but what took you so long.)2 -
One month remaining until the new European Union regulation will be brought into force.
When you search for those letters here, you’ll see a lot of developers bending over to the EU and being happy about it. Some of them are even happy that it will kill a lot of small and medium businesses.
Large companies like Google have found ways to bypass the law, so regulatory forces will earn money by flocking small businesses or individuals with decades-old debts that will be also paid by the grandchildren (40 million euro).3 -
!rant
Dropped out of college after two years, next week I’ll start to teach programming to students in the same college on behalf of the student union :) -
Can’t wait for the next year to be attacked by pop-ups asking me if I agree with the site using cookies. Now more than ever, because everybody cares about cookies, and it’s totally not going to ruin the user experience.
I can’t wait for another law that will force sites to ask users if they agree with usage of JavaScript.4 -
Temporarily in an apartment while my landlord fixes a potentially disastrous foundation problem and my flooding room. Having my battle station on a folding table finally paid off, super portable. My laptop is on a union break here3
-
Go assign a super simple ticket to your "product owner" or "manager" or whoever the hell claims they "work so hard" and "have the vision" or whatever blah blah blah when in reality YOU'RE the one working 12 hour days, completing the features used by THOUSANDS.
Just try it. They'll never complete it. I guarantee it. Here I am looking at one that is three weeks old asking to update the f&*(@#$ credit card credentials for a simple log service to be reactivated.
So sick of this backward world where us devs never get any credit.
Who wants to start a software union with me?2 -
!rant
The amount of effort being made to make php a saner development platform is outstanding really, specially with the release of php8, really good features in there. As someone that started with version 4(*shivers*), and stuck with it all the way to the glory of 7, 8 is a welcomed addition.
One in particular that I really like is the fact that we now (fucking finally) have union types as well as fucking match expressions! Which granted, these are single lines, but in place of it one could argue for a function.
I am pretty excited for some of the other items, but have not had the time to play with anything yet really. Wonder how much more is in store.7 -
!@#GDSGA!Q@#@
In my absolute lack of genius, I just lost way too much time finally realizing that in C# linq-to-objects removes duplicates when you use Union().
At one point I knew this, but I forgot about it because I never want duplicates, slowly forgetting what Union() was doing.
*This time* however, the duplicates are required and it all goes to crap without them.
Save me, Concat()!
You can run but you can't hide from noobery.
Blahb;asdfabnahsdfa.3 -
i spoke to the social worker in our union, it helped a lot i think.
she mostly said my feelings are valid and that our company is sickening, and that I'm sad now because I'm grieving and that's ok, but i should look for medical help.
it wasn't anything i didn't already know, but it's still reassuring that I'm not going mad, cause i feel like i was being gaslighted by my bosses7 -
Just tried to read this the frequently asked questions about article 13.
I don't think you need to read it, since you learn nothing from it besides that these people don't even care anymore. Everything is written in a "wishful" mode, even their goals.
You can just go to the next trash can, take an item and compare it with that. Unfortunately, you will have to realize that the item you just picked up was more useful to society than everything you'll read in these "answers".
https://ec.europa.eu/digital-single...
They basically dodge every single question vague to the point that someone as the amount of drugs these people take in order to think they are making realistic proposes.
"We aim to blah blah", "Our aim is blah blah", "We want to blah blah". Might as well sue me for copying their content in that paragraph.
If anybody ever tells you that you have unrealistic, stupid goals or dreams just remember: there's a whole continent lead by people who have no fucking idea what they are doing and still think they are doing a good job. And because they have no idea what they are doing they just offload all the work to companies.
Plattform: Ok, what do we have to do?
EU: lol, just "put in place, in collaboration with right holders, adequate and proportionate technical measures." (#2 P4)
Plattform: can you be a bit more specific?
EU: Look, this proposal just "requires platforms which store and provide access to large amounts of copyright-protected content uploaded by their users to put in place effective and proportionate measures." It's not that hard to understand, you dummy (#3 P3)
Plattform: So we need to monitor all user-generated content?
Eu: are you stupid or something? You "would not have to actively monitor all the content uploaded by users", just the copyrighted content. (#4 P1)
The rest is more or less the same, just them imagining the outcome, without taking turning on their decomposed brains in order to apply common sense.
Jumping off this "union" seems be pretty lucrative 🤔1 -
So back to the stories of the gentleman with his master's degree who's job I wasn't qualified for. Hope you all enjoy this gem I found in his stored procedure.
Select distinct *
From(
Select * from a inner join b on a.id=b.id
Union
Select * from a full join b on a.id=b.id
Where b.id is null
)
An inner join unioned to a full join where you exclude null values in right table creates a.....left join you fucking idiot!5 -
Not as a dev, but in college I worked in the student union. For my boss's birthday they lured him out of his office and told me to TP it. So I did. And I went all out. They thought I would only use one roll. I used 5 or 6. All over his lamps, desk, I made streamers, everything. Too bad the dude turned out to be a power hungry dick and fucked things up for everybody.
-
I once met a guy who said tech guys chose windows over Mac's because windows goes wrong often so it keeps the tech guys in work!
And Mac's hardly ever break so they didn't want their business to use them
He clearly hasn't met tech guys we don't want to be dealing with your fucking problems
It made me furious internally... I said nothing.
Seriously do you think all tech guys in the world joined a union and went 🤔 how can we make sure we have more work ... Fuck off you ponsy twat6 -
Perhaps as a tip for the junior devs out there, here's what I learned about programming skills on the job:
You know those heavy classes back in college that taught you all about Data Structures? Some devs may argue that you just need to know how to code and you don't need to know fancy Data Structures or Big o notation theory, but in the real world we use them all the time, especially for important projects.
All those principles about Sets, (Linked) lists, map, filter, reduce, union, intersection, symmetric difference, Big O Notation... They matter and are used to solve problems. I used to think I could just coast by without being versed in them.. Soon, mathematics and Big o notation came back to bite me.
Three example projects I worked in where this mattered:
- Massive data collection and processing in legacy Java (clients want their data fast, so better think about the performance implications of CRUD into Collections)
- ReactJS (oh yes, maps and filters are used a lot...)
- Massive data collection in C# where data manipulation results are crucial (union, intersection, symmetric difference,...)
Overall: speed and quality mattered (better know your Big o notation or use a cheat sheet, though I prefer the first)
Yes, the approach can be optimized here, but often we're tied to client constraints, with some room if we're lucky.
I'm glad I learned this lesson. I would rather have skills in my head and in memory than having to look up things and try to understand them all the time.5 -
let's create a site of Creative-Commons-licensed meme templates. Who around here can host some stuff?4
-
I don't know what to do because union and sum types both totally suck but I need them for my scripting language
Union types are fun and intuitive because they can be used with type refinement but they're not hierarchical thus bad for generics.
Sum types (or tagged unions) are great because they're hierarchical and can be nested properly but they need ugly type matching constructs.
The positive thing is I'm not making a systems language anymore so I only wanna jump of a bridge every second day5 -
So, for the last year or so, we've been playing with a natural language A.I.
The goal was to predict port, truck and rail service disruption due to social unrest.
The trick here is that our AI would "read between the lines" of today's news articles and spit out keywords that were likely to appear in near future articles, thus giving us an early warning before some union or army start blockading roads.
It... did not work as intended. But some very weird results came out.
Apparently, we made a robotic "kid that screams that the emperor has no clothes", yielding unlikely (but somewhat expected) keywords when fed collections of articles.
We gave it marketing content about our company. It replied "high suicide rate".10 -
Article 13 has gone through.
If you have a startup idea, move outside the EU to avoid millions of dollars of copyright fines.
Get the memes, get tor, get vpns, research how people get around the great firewall of china, because the EU just asked china to hold its beer.
I pity whoever's job it is to implement this piece of shit.12 -
Why don’t we create a worldwide union? We are in every companies, by being coordinated we could obtain anything18
-
Watching the results come in on the voting system I built for the police union in my city. Crossing my fingers everything finishes without a hitch.2
-
The cult of knowledge, science and technocracy in the Soviet Union was so strong that even nowadays we use the word "likbez", abbreviation of "liquidacia bezgramotnosti", literally "eradication of undereducation".
When you outline a theory in accessible and approachable fashion to someone who doesn't know it, that's likbez.3 -
Java has the worst kind of union type where every method returns the union of Exception | null | value.17
-
When elements of an union are distinguished by a boolean, VSCode's Typescript plugin can only do type elimination if I branch by "== true" and not if I just branch by the boolean.
This is because Typescript treats booleans as an union of the constants "true" and "false", and compile-time elimination can only be done if I use syntax that makes sense with unions. Logical evaluation, for some reason, doesn't.
The fact that this issue can even appear is deeply concerning.1 -
"Form follows function – that has been misunderstood. Form and function should be one, joined in a spiritual union. " - Frank Lloyd Wright
-
SELECT true AS "Go to gym?"
FROM DUAL
WHERE
(SELECT WAIST_SIZE_INCHES FROM ME.BODY) > 32
AND
EXISTS
(SELECT 1 FROM ME.DESIRE UNION ALL
SELECT 1 FROM ME.TRANSPORTATION UNION ALL
)
AND NOT EXISTS
(SELECT 1 FROM ME.SCHEDULING_CONFLICTS UNION ALL
SELECT 1 FROM ME.SICK UNION ALL
SELECT 1 FROM WORK.PRODUCTION_OUTAGE UNION ALL
SELECT 1 FROM WIFE.DATE_NIGHT
);1 -
Do you have a programmers union in your country?
In my country we have a general union for all different kinds of jobs and a engineers union. Maybe if developers had a dev union there would perhaps be less bs11 -
Quick FAQ for Wroclaw (Wroclove :D) for collaborators from around the world
Poland is in Central Europe, not Eastern (we use Central European Standard Time even). This because Russia is also partially in Europe (not European Union though).
Breslau is Pre-WW2 name for current Wroclaw in Lower Silesia. Don't use it here as it immediately brings bad emotions into the talk and it is not what you want :) Leave nazis in the past.17 -
Newton's first law integrated into work estimation:
For every simple task there is a complex solution which devs will choose and it will take an infinite amount of time, unless acted upon by an unbalanced force.
where "unbalanced_force" belongs to the set union of ["managers", "POs"] and "anyone else who doesn't even work on that project".1 -
I am curious, anyone (or maybe your friend/colleague/family/enemy etc) got Visa sponsor job to EU (European Union) Via applying on Stackoverflow Job site? (Applicant must be Non-EU Country Citizen). Are there any alternatives to get Visa Sponsor jobs?5
-
So I just found out tonight is the State of the Union... And my first thought was if this were a program...
return union.state => UnionNotFound : ObjectReferenceException1 -
Work keeps getting worse. It seems someone ratted me out to the boss after I complained how it is unfair that I'm going to lose my bonus over an impossible deadline. Ok so I probably shouldn't rant in the workplace but still. Now I'm told my negative attitude affects my co-workers and that I certainly won't succeed if I am so negative. Then I got told I instead need to work overtime to make things happen, and when I argue that I can't do that because I need my spare time because of my health I'm basically put on the spot that either I make it happen or I get booted with a negative reviews. You bet your ass I'm in contact with my union over this, because that is just wrong imo. I know they can fire me any time for any reason, but they need to give reason. But threatening an employee who disclosed health issues to you and claiming you will see it as sabotaging the company? I'm sorry I'm not the superhero dev that you want but it hurts being told you're not good enough because you don't go the extra mile, regardless of if you even can or should.
Tiny little upside though, scored more interviews, speaking to a company tomorrow afternoon. Fingers crossed hard. There's gotta be sane places out there.1 -
Oh no, apparently GDPR is worse than we thought. Just look at the linked thread. The government needs not to touch anything
https://twitter.com/alexstamos/...2 -
My two main grudges against Typescript:
1) Union types can't be passed as arguments if there is a variant for every element of the union
2) No tuple polymorphism, i.e. [T, U] isn't assignable to [T]. This is not a mistake because the length of the arrays differs and therefore they may be interpreted in a different way, but IMO there should be a tuple type which is actually an array but length is unavailable and it supports polymorphism. This sounds stupid, but since function parameter lists work well with tuples it would actually enable a lot of functional tricks that are currently inaccessible.7 -
Fucking Quarkus. Fucking Panache. Fucking ORM.
I wanted to do a fucking simple projection. First this piece of fuck, the Panache, won't let me do a Projection because of a fucking bug, that haven't implemented it properly until 2.12 (fuck and you call this v2?). Ok, upgraded, to the latest 2.16, cuz why the fuck, i'm upgrading already. But now the whole fucking quarkus app won't start! Noice! Ok, fuck it, let's go down exactly to 2.12. Quarkus started, perfect. But now, this pice of fuck Hibernate says 'collection was evicted' whenever i tried to read a collection in the setter (Access.PROPERTY), which worked just fucking fine before. But okay, fuck you. I'll write a @PostLoad method, fine, just fuck off.
But that's not the end! Now it says I cannot write `select parent.someColl is not null and parent.collection is empty as canProcess` because "is empty" only supported in where clauses. What fucking wonderful system! Well, fuck you. I'll write a union query. But guess what! JPA standard does not support union queries, nor HQL (Eclipse Link does, btw). Ok, fuck this shit, let's write a native query. But hey, fucking Panache does not support that. There is no fucking place in their fucking docs stating anything about how to use native queries.
So, fuck you quarkus, fuck you panache, fuck you hibernate, fuck you overcomplicated limiting bullshit called full-fledged ORMs. I'm moving to a fucking mybatis and fuck it. It's simple as fuck, does not fucking restrict me in writing whatever shit query I want to write and let's me map the shit just fine.1 -
Is Apple alone who owns the rights to its systems? Or do users also own the system when they buy the iPhone? What I know is that users have a USER ONLY license, a non-private, limited and revocable license by Apple. And if what I think is true and that Apple owns its systems, then it is a private right for it, isn't that true?. So why are governments such as the governments of the European Union trying to impose laws on Apple and try to impose changes on Apple's systems even though the systems are private and not public or open source? Is this not considered an attack on private property? I don't know, I just want to get your opinion on the matter more..
What I know is that there are options other than Apple's own systems!!. Therefore, if you want to change, take Android instead of forcing Apple to change what Apple does not want to change.9 -
RIP Good Friday Agreement, the peace and prosperity was great 👍 Boris Johnson will be the prime minister to destroy the union8
-
Bwhahahah! Even after the excitement, business disruption, unpleasantness and pain, GDPR fails at its one job
https://newstatesman.com/science-te...1 -
Dry On Time
Dry On Time specializes in providing quality water damage extraction and restoration for both residential and commercial applications throughout New Jersey. We will dry out your home and or office, clean and remove damage and restore and repair damage with attention to detail.
506 19th Street,Union City, NJ 07087
http://www.dryontime.com/ -
#Suphle Rant 6: Deptrac, phparkitect
This entry isn't necessarily a rant but a tale of victory. I'm no more as sad as I used to be. I don't work as hard as I used to, so lesser challenges to frustrate my life. On top of that, I'm not bitter about the pace of progress. I'm at a state of contentment regarding Suphle's release
An opportunity to gain publicity presented itself last month when cfp for a php event was announced last month. I submitted and reviewed a post introducing suphle to the community. In the post, I assured readers that I won't be changing anything soon ie the apis are cast in stone. Then php 7.4 officially "went out of circulation". It hit me that even though the code supports php 8 on paper, it's kind of a red herring that decorators don't use php 8 attributes. So I doubled down, suspending documentation.
The container won't support union and intersection types cuz I dislike the ambiguity. Enums can't be hydrated. So I refactored implementation and usages of decorators from interfaces to native attributes. Tried automating typing for all class properties but psalm is using docblocks instead of native typing. So I disabled it and am doing it by hand whenever something takes me to an unfixed class (difficulty: 1). But the good news is, we are php 8 compliant as anybody can ask for!
I decided to ride that wave and implement other things that have been bothering me:
1) 2 commands for automating project setup for collaborators and user facing developers (CHECK)
2) transferring some operations from runtime to compile/build TIME (CHECK)
3) re-attempt implementing container scopes
I tried automating Deptrac usage ie adding the newly created module to the list of regulated architectural layers but their config is in yaml, so I moved to phparkitect which uses php to set the rules. I still can't find a library for programmatically updating php filed/classes but this is more dynamic for me than yaml. I set out to implement their library, turns out the entire logic is dumped into the command class, so I can neither control it without the cli or automate tests to it. I take the command apart, connect it to suphle and run. Guess what, it detects class parents as violations to the rule. Wtflyingfuck?!
As if that's not bad enough, roadrunner (that old biatch!) server setup doesn't fail if an initialization script fails. If initialization script is moved to the application code itself, server setup crumbles and takes the your initialization stuff down with it. I ping the maintainer, rustacian (god bless his soul), who informs me point blank that what I'm trying to do is not possible. Fuck it. I have to write a wrapper command for sequentially starting the server (or not starting if initialization operations don't all succeed).
Legitimate case to reinvent the wheel. I restored my deleted decorators that did dependency sanitation for me at runtime. The remaining piece of the puzzle was a recursive film iterator to feed the decorators. I checked my file system reader for clues on how to implement one and boom! The one I'd written for two other features was compatible. All I had to do was refactor decorators into dependency rules, give them fancy interfaces for customising and filtering what classes each rule should actually evaluate. In a night's work (if you're discrediting how long writing the original sanitization decorators and directory iterator), I coupled the Deptrac/phparkitect library of my dreams. This is one of the those few times I feel like a supreme deity
Hope I can eat better and get some sleep. This meme is me after getting bounced by those three library rejections -
Langkah deposit slot pulsa tanpa potongan megasloto
Pemain dapat membayar tunai di stasiun pembayaran slot pulsa tanpa potongan megasloto terdekat atau melalui akun internet banking mereka menggunakan sistem kode online.
DAFTAR DISINI = bit .ly/3sk9Wsl
Masing-masing opsi ini memungkinkan Anda melakukan setoran yang aman dan terjamin di slot online Amerika Latin. Apakah Anda siap memainkan Pulsa tanpa potongan? Di bawah ini adalah beberapa situs web favorit kami.
Menyetor menggunakan slot pulsa tanpa potongan megasloto
Anda memiliki dua alternatif untuk melakukan deposit di slot Pulsa tanpa potongan. Di bawah ini, kami membahas masing-masing secara lebih mendalam:
Langkah 1
Masuk ke akun Anda di slot pilihan Anda.
Langkah 2 Pilih Pulsa tanpa potongan dari daftar metode pembayaran di area kasir.
Langkah 3 Pilih jumlah dan mata uang yang ingin Anda depositkan, lalu selesaikan transaksi.
Langkah 4
Anda akan diberikan nomor pembayaran CIP, dan Anda harus memutuskan apakah akan membayar tunai atau dengan perbankan online di salah satu situs pembayaran yang diizinkan. Seiring dengan CIP, transaksi akan menyertakan tanggal kedaluwarsa.
Langkah 5: Lakukan pembayaran tunai dengan membawa kode ini ke toko terdekat yang disetujui dan verifikasi pembayaran Anda. Pulsa tanpa potongan memiliki sekitar 100.000 titik pembayaran.
Masuk ke akun perbankan slot pulsa tanpa potongan megasloto bullogger. com online atau seluler Anda dan ikuti petunjuk untuk mengonfirmasi setoran Anda. Anda juga harus di sini. Pulsa tanpa potongan telah menyetujui sejumlah bank, termasuk Interbank, Scotiabank, dan Western Union.
Langkah 6 Terlepas dari metode mana yang Anda pilih, slot akan diberi tahu saat transaksi selesai dan dana akan muncul di akun Anda.
Prosedur Penarikan slot pulsa tanpa potongan megasloto
Pulsa tanpa potongan tidak mengizinkan penarikan. Namun, jika pada daftar slot online terbaik kami, Anda akan dapat aman tambahan. Situs web yang kami rekomendasikan menawarkan berbagai alternatif populer di Amerika Serikat, seperti dompet elektronik, transfer perbankan online, bitcoin, dan banyak lagi.
Biaya untuk Deposit dan Penarikan dalam Konteks
Salah satu keuntungan terbesar dari opsi pembayaran Pulsa tanpa potongan adalah tidak ada biaya. Ini berarti Anda tidak akan dikenakan biaya oleh penyedia untuk melakukan deposit, dan slot online pilihan Anda kemungkinan tidak akan membebankan biaya kepada Anda. Untuk menjamin Anda memiliki pengalaman bermain game slot pulsa tanpa potongan megasloto online terbaik, kami hanya menampilkan situs slot dengan biaya minimal hingga rendah untuk pelanggan kami.
Ingatlah bahwa Anda tidak dapat membayar melalui Pulsa tanpa potongan, jadi Anda harus mencari cara lain untuk mendapatkan uang Anda. Cari penyedia pembayaran berbiaya rendah seperti ecoPayz dan Paysafecard.
Pro dan Kontra Slot Pulsa tanpa potongan
Ini adalah opsi setoran langsung, itulah sebabnya ini populer di kalangan penjudi LATAM. Namun, Anda mungkin ingin mempertimbangkan opsi lain karena Pulsa tanpa potongan tidak mengizinkan Anda untuk menguangkan. Lihatlah daftar manfaat dan kekurangan kami untuk melihat apakah ini pilihan terbaik untuk Anda:
kelebihan
Anda tidak perlu mendaftar dengan Pulsa tanpa potongan.
Anda dapat berjudi tanpa menggunakan kartu kredit atau debit online.
Slot tidak diberikan informasi sensitif apa pun.
Tidak ada biaya yang terkait dengan penggunaan Pulsa tanpa potongan.
Transaksi selesai dengan cepat.
Anda dapat membayar tunai slot pulsa tanpa potongan megasloto di resmi atau dengan online Anda.
Kontra
Hanya Peru dan Ekuador yang memilikinya.
Pulsa tanpa potongan tidak mengizinkan penarikan.
Jika Anda memilih untuk membayar secara langsung, waktu deposit Anda akan ditentukan oleh seberapa cepat Anda tiba di lokasi pembayaran.
Apakah ada banyak slot Pulsa tanpa potongan?
Pulsa tanpa potongan hanya tersedia di LATAM, terutama di slot online Peru. Namun, penyedia pembayaran ini telah menawarkan layanannya di Ekuador sejak 2019, yang berarti bahwa para penjudi di negara itu sekarang dapat menikmati slot Pulsa tanpa potongan. Memperluas ke Kolombia dan Chili di masa depan dapat meningkatkan daya tarik slot pulsa tanpa potongan megasloto online yang menggunakan Pulsa tanpa potongan.
Peringkat Slot Pulsa tanpa potongan
Meskipun slot Pulsa tanpa potongan tidak begitu umum, itu tidak berarti Anda harus berkompromi. Untuk menghadirkan kepada Anda slot online terbaik yang menggunakan Pulsa tanpa potongan, tim peninjau slot kami telah meninjau beberapa di antaranya.
slot pulsa tanpa potongan 2022
slot pulsa tanpa potongan gacor
slot88
slot pulsa tanpa potongan 2021
slot pulsa tanpa potongan 100
slot pulsa tanpa potongan terpercaya
slot pulsa tanpa potongan
slot138
slot pulsa tanpa potongan
slot pulsa tanpa potongan 4d
slot pulsa tanpa potongan dapat bonus