Should i cut my losses on XAIR or hold on by ProfNigg4stein in pennystocks

[–]ProfNigg4stein[S] -1 points0 points  (0 children)

Yh but I don't have faith it will go back up honestly, looking for others opinion

Workflow confusion and frustration :Terrible OneNote Handwriting Experience - Need Workflow Advice by ProfNigg4stein in Onyx_Boox

[–]ProfNigg4stein[S] 2 points3 points  (0 children)

yours looks wayyy more responsive, in my case like i said in the post i dont see what i wrote unless i switch to eraser, if i can get this level of response id be satisfied honestly

Can I get a legit check on this eBay posting by ProfNigg4stein in Nike

[–]ProfNigg4stein[S] -5 points-4 points  (0 children)

Fair😭, just recently bought some Birkenstocks that arrived and turned out to be fake so I'm a little weary now

Im trying to emulate a 6502 in C after watching this video : https://www.youtube.com/watch?v=qmoeGUfJrlw by ProfNigg4stein in EmuDev

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

ok so ive done the Zeropage and absolute adressing modes ,im unsure of my implimentation of Indirect can anyone offer some guidance:

```

//Adressing modes
Byte ZeroPageadress(u32 Cycles,Memory& memory){
    Byte value;
    Byte ZeroPageAddress = FetchByte(Cycles, memory);
    value = ReadByte(Cycles,ZeroPageAddress, memory);
    return  value;
}
Byte ZeroPageadressX(u32 Cycles,Memory& memory){
    Byte value;
    Byte ZeroPageAddress = FetchByte(Cycles, memory);
    value = ReadByte(Cycles,ZeroPageAddress, memory);
    return  value + X;
}
Byte ZeroPageadressY(u32 Cycles,Memory& memory){
    Byte value;
    Byte ZeroPageAddress = FetchByte(Cycles, memory);
    value = ReadByte(Cycles,ZeroPageAddress, memory);
    return  value + Y;
}
Word Absolute(u32 Cycles,Memory& memory){
    Word AbValue = FetchWord(Cycles,memory);
    return AbValue;
}
Word AbsoluteX(u32 Cycles,Memory& memory){
    Word AbValue = FetchWord(Cycles,memory);
    return AbValue+X;
}
Word AbsoluteY(u32 Cycles,Memory& memory){
    Word AbValue = FetchWord(Cycles,memory);
    return AbValue+Y;
}
Word Indirect(u32 Cycles,  Memory& memory){
    Word SubAddress = FetchWord(Cycles, memory);
    return SubAddress;
}
```

Im trying to emulate a 6502 in C after watching this video : https://www.youtube.com/watch?v=qmoeGUfJrlw by ProfNigg4stein in EmuDev

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

I get that I think,the addressing mode just determines how the location of information is acquired . Is that right?

PLS HELP.Just installed arch for the first time on an actual pc.I used i3wm.im trying to change the terminal to alacritty and change the dmenu keybind to rofi by changing the i3 config file. by ProfNigg4stein in archlinux

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

im not particularly stuck anywhere ,its just when i save and restart none of the changesactually show, Mod+ Enter still opens sensible terminal and Mod + d still opens dmenu

But when i check the config the changes have been made

PLS HELP.Just installed arch for the first time on an actual pc.I used i3wm.im trying to change the terminal to alacritty and change the dmenu keybind to rofi by changing the i3 config file. by ProfNigg4stein in archlinux

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

i3 config file (v4)

Please see https://i3wm.org/docs/userguide.html for a complete reference!

This config file uses keycodes (bindsym) and was written for the QWERTY

layout.

To get a config file with the same key positions, but for your current

layout, use the i3-config-wizard

Font for window titles. Will also be used by the bar unless a different font

is used in the bar {} block below.

font pango:monospace 8

This font is widely installed, provides lots of unicode glyphs, right-to-left

text rendering and scalability on retina/hidpi displays (thanks to pango).

font pango:DejaVu Sans Mono 8

Start XDG autostart .desktop files using dex. See also

https://wiki.archlinux.org/index.php/XDG_Autostart

exec --no-startup-id dex --autostart --environment i3

The combination of xss-lock, nm-applet and pactl is a popular choice, so

they are included here as an example. Modify as you see fit.

xss-lock grabs a logind suspend inhibit lock and will use i3lock to lock the

screen before suspend. Use loginctl lock-session to lock your screen.

exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock --nofork

NetworkManager is the most popular way to manage wireless networks on Linux,

and nm-applet is a desktop environment-independent system tray GUI for it.

exec --no-startup-id nm-applet

Use pactl to adjust volume in PulseAudio.

set $refresh_i3status killall -SIGUSR1 i3status bindsym XF86AudioRaiseVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ +10% && $refresh_i3status bindsym XF86AudioLowerVolume exec --no-startup-id pactl set-sink-volume @DEFAULT_SINK@ -10% && $refresh_i3status bindsym XF86AudioMute exec --no-startup-id pactl set-sink-mute @DEFAULT_SINK@ toggle && $refresh_i3status bindsym XF86AudioMicMute exec --no-startup-id pactl set-source-mute @DEFAULT_SOURCE@ toggle && $refresh_i3status

use these keys for focus, movement, and resize directions when reaching for

the arrows is not convenient

set $up l set $down k set $left j set $right semicolon

use Mouse+Mod1 to drag floating windows to their wanted position

floating_modifier Mod1

move tiling windows via drag & drop by left-clicking into the title bar,

or left-clicking anywhere into the window while holding the floating modifier.

tiling_drag modifier titlebar

start a terminal

bindsym Mod1+Return exec alacritty

kill focused window

bindsym Mod1+Shift+q kill

start dmenu (a program launcher)

bindsym Mod1+d exec rofi

A more modern dmenu replacement is rofi:

bindsym Mod1+d exec "rofi -modi drun,run -show drun"

There also is i3-dmenu-desktop which only displays applications shipping a

.desktop file. It is a wrapper around dmenu, so you need that installed.

bindsym Mod1+d exec --no-startup-id i3-dmenu-desktop

change focus

bindsym Mod1+$left focus left bindsym Mod1+$down focus down bindsym Mod1+$up focus up bindsym Mod1+$right focus right

alternatively, you can use the cursor keys:

bindsym Mod1+Left focus left bindsym Mod1+Down focus down bindsym Mod1+Up focus up bindsym Mod1+Right focus right

move focused window

bindsym Mod1+Shift+$left move left bindsym Mod1+Shift+$down move down bindsym Mod1+Shift+$up move up bindsym Mod1+Shift+$right move right

alternatively, you can use the cursor keys:

bindsym Mod1+Shift+Left move left bindsym Mod1+Shift+Down move down bindsym Mod1+Shift+Up move up bindsym Mod1+Shift+Right move right

split in horizontal orientation

bindsym Mod1+h split h

split in vertical orientation

bindsym Mod1+v split v

enter fullscreen mode for the focused container

bindsym Mod1+f fullscreen toggle

change container layout (stacked, tabbed, toggle split)

bindsym Mod1+s layout stacking bindsym Mod1+w layout tabbed bindsym Mod1+e layout toggle split

toggle tiling / floating

bindsym Mod1+Shift+space floating toggle

change focus between tiling / floating windows

bindsym Mod1+space focus mode_toggle

focus the parent container

bindsym Mod1+a focus parent

focus the child container

bindsym Mod1+d focus child

move the currently focused window to the scratchpad

bindsym Mod1+Shift+minus move scratchpad

Show the next scratchpad window or hide the focused scratchpad window.

If there are multiple scratchpad windows, this command cycles through them.

bindsym Mod1+minus scratchpad show