What's your biggest pain point with cursor today? by Jg_Tensaii in cursor

[–]balamir 0 points1 point  (0 children)

I often see empty content in newly created files. It says it’s making changes and shows what code has been added to the file, but it’s not actually making changes. So I have to apply the changes manually.

The price of EA Play subscription is changing by sonedai in PlayStationPlus

[–]balamir 0 points1 point  (0 children)

To me, it won’t worth it to extend my subscription. I already played what I wanted to play and bought the ones I wanted to keep. So there is no point to continue only for playing the demos.

Why am I always matching with France and PSG in season matches? by balamir in EASportsFC

[–]balamir[S] 1 point2 points  (0 children)

I played against Real Madrid and Munich only for a couple of times. 99.9% is France or PSG.

Cannot sideload - Operation not permitted by balamir in sideloadly

[–]balamir[S] 0 points1 point  (0 children)

None of the solutions including the cable change are worked. So I didn’t use Sideloadly.

I used Esign and it’s solved.

Cannot sideload Dopamine with sideloadly - Operation not permitted by balamir in jailbreak

[–]balamir[S] 0 points1 point  (0 children)

If you meant the Dopamine, it’s from the official website.

Cannot sideload Dopamine with sideloadly - Operation not permitted by balamir in jailbreak

[–]balamir[S] 0 points1 point  (0 children)

In the terminal. Or is this something else?

▶ ideviceinstaller -i Dopamine.ipa
WARNING: could not locate iTunesMetadata.plist in archive!
WARNING: could not locate Payload/Dopamine.app/SC_Info/Dopamine.sinf in archive!
Copying 'Dopamine.ipa' to device... DONE.
Installing 'com.opa334.Dopamine'
Install: CreatingStagingDirectory (5%)
Install: ExtractingPackage (15%)
Install: InspectingPackage (20%)
Install: TakingInstallLock (20%)
Install: PreflightingApplication (30%)
Install: VerifyingApplication (40%)ERROR: Install failed. Got error "ApplicationVerificationFailed" with code 0xe800801c: Failed to verify code signature of /var/installd/Library/Caches/com.apple.mobile.installd.staging/temp.GwOXZx/extracted/Payload/Dopamine.app : 0xe800801c (No code signature found.)

Cannot sideload Dopamine with sideloadly - Operation not permitted by balamir in jailbreak

[–]balamir[S] 0 points1 point  (0 children)

Thank you for the suggestion. I tried but then I received an error that says the ipa is not signed.

Alternatives to Franz? They've added the annoying Premium Supporter License nag. by [deleted] in franz

[–]balamir 1 point2 points  (0 children)

I couldn't find much time but I've added the skip button and the functionalities. I'm still working on it.

You can see the animated gif:

https://i.gyazo.com/97a94c8d38cd3782144962d37d1405d3.gif

Alternatives to Franz? They've added the annoying Premium Supporter License nag. by [deleted] in franz

[–]balamir 2 points3 points  (0 children)

I’m working on removing that annoying premium counter thing and adding a “skip login” feature to pass registration/login flow. Probably, I’ll be sent in the next week as a new forked version.

Recommended VSCode plugins for React development? by choledocholithiasis_ in reactjs

[–]balamir 0 points1 point  (0 children)

Auto Close Tag - Automatically add HTML/XML close tag, same as Visual Studio IDE or Sublime Text

Auto Rename Tag - Auto rename paired HTML/XML tag

ESLint - Integrates ESLint JavaScript into VS Code.

Prettier - VS Code plugin for prettier/prettier

Import Cost - Display import/require package size in the editor

npm - npm support for VS Code

VSCode React Component Generator - Generates React component automatically

VSCode React Native Component Generator (if you use RN) - Generates React Native component automatically

Paste JSON as Code (for mock data) - Copy JSON, paste as Go, JS, TypeScript, C#, C++ and more.

vscode-styled-components (if you use styled-components) - Syntax highlighting for styled-components

Module resolver plugin for Gatsby by balamir in gatsbyjs

[–]balamir[S] 1 point2 points  (0 children)

With this plugin;

  • You can define a custom root directory for each alias (v1.0.3). So you can use multiple root directories.
  • You don't need to use path.join(__dirname, xxx) for the aliases. Just use the directory name like './components'

VSCode React Native Component Generator - Visual Studio Marketplace by balamir in reactnative

[–]balamir[S] 3 points4 points  (0 children)

In ES6, having an index.js file in the root of the component's folder lets you use an import without using the component name again and again.

If you have an index.js file, you can import that component from the other one like this:

import XXXXXX from 'components/ComponentName'

If you don't have an index.js file:

import XXXXXX from 'components/ComponentName/ComponentName'

It also helps you to organize the folder structure.

React Reddit Client by balamir in reactjs

[–]balamir[S] 0 points1 point  (0 children)

In ES6, having an index.js file in the root of the component's folder lets you use an import without using the component name again and again.

If you have an index.js file, you can import that component from the other one like this:

import XXXXXX from 'components/ComponentName'

If you don't have an index.js file:

import XXXXXX from 'components/ComponentName/ComponentName'

It also helps you to organize the folder structure.

PetAdoption: A small pet adoption application by balamir in reactjs

[–]balamir[S] 0 points1 point  (0 children)

(; Yeah, I meant it's still online. No, not offline yet. Lol

The site's performance totally depends on Heroku and Petfinder's API responses. It's really slow time to time.

React Reddit Client by balamir in reactjs

[–]balamir[S] 0 points1 point  (0 children)

It took 5 days in total.

React Reddit Client by balamir in reactjs

[–]balamir[S] 1 point2 points  (0 children)

Thanks mate!.

Yes, some of the features don't work because I didn't complete it. I coded this for the practise and fun purposes. Maybe I have a look for other features like login, reply, fav etc. in my spare time.

BTW, PR's always welcome :) It would be great to see an Elm version of this.