Sahil Rajput

Results 65 comments of Sahil Rajput

Curently I am using `urxvt` which is default in manjaro-i3 and it sometimes happens with this too, I have made an alias of `r` as `reset` command and I am...

@afeno were you able to play the .raw audio files?

I fixed this issue by simply updating discord environment variables like shown below in `.env` file: ```txt DISCORD_CLIENT_ID="sample" DISCORD_CLIENT_SECRET="sample" ```

Also, you can fix it via making discord env values optional in `env.js` file: ``` DISCORD_CLIENT_ID: z.string().optional(), DISCORD_CLIENT_SECRET: z.string().optional(), ```

> @ryansolid please see the linked issue that I mentioned. Apparently the bug only exists in the JS template Yes, I should have mentioned that I continued to use ts...

> for macOS deleting actrc at `/Users/[username]/Library/Application Support/act` gets the work done. `rm /Users/$USER/Library/Application\ Support/act/actrc` Using environment variable also work like that.

```jsx //Custom hook_1 const useRenderCount = () => { // src: https://medium.com/better-programming/how-to-properly-use-the-react-useref-hook-in-concurrent-mode-38c54543857b const renderCount = useRef(0); let renderCountLocal = renderCount.current; useEffect(() => { renderCount.current = renderCountLocal; }); renderCountLocal++; return renderCount.current;...

Remove all css from the css files of the default style used would do that, like I have these file in `assets/css` folder, so you may remove all css from...

Make a little extesion like - ```py # Path to save this file => Packages/User/NoPreview.py import sublime import sublime_plugin import os class NoPreview(sublime_plugin.EventListener): def on_load(self, view): if (os.path.exists(view.file_name())): view.run_command('save') ```...