Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f68955125d | ||
|
|
a54c800051 | ||
|
|
f62e6a58df | ||
|
|
aeb6b1a635 | ||
|
|
403ac07661 | ||
|
|
62fd850f06 | ||
|
|
5806cffb66 | ||
|
|
aef307bbac | ||
|
|
d2007a731a | ||
|
|
f227f64e08 | ||
|
|
29c371c52d | ||
|
|
24414689de | ||
|
|
2368931853 | ||
|
|
56d0ef38a4 | ||
|
|
308ce9181c | ||
|
|
94f5fe07e2 | ||
|
|
6dbcf94c7b | ||
|
|
c807f87f60 | ||
|
|
ee470de884 | ||
|
|
518b9534ba | ||
|
|
f780447eb1 | ||
|
|
f58c0cc407 | ||
|
|
190456236a | ||
|
|
6a1233fc5c | ||
|
|
9084ab596d | ||
|
|
e3bf0462ec | ||
|
|
904f86c754 | ||
|
|
3f15c6d74b |
@@ -1,25 +0,0 @@
|
||||
name: dR export statistics build
|
||||
run-name: dR export statistics build
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- name: Update repo
|
||||
run: git pull
|
||||
- name: List files in the repository
|
||||
run: |
|
||||
ls ${{ gitea.workspace }}
|
||||
- run: echo "Install dependencies."
|
||||
- run: apt update
|
||||
- run: apt install python3 python3-pip python3-venv make -y
|
||||
- run: make
|
||||
- run: echo "This job's status is ${{ job.status }}."
|
||||
- run: git add .
|
||||
- run: git config --global user.email "bot@molodetz.com"
|
||||
- run: git config --global user.name "bot"
|
||||
- run: git commit -a -m "Update export statistics"
|
||||
- run: git push
|
||||
@@ -1,17 +1,13 @@
|
||||
name: dR export statistics scheduled
|
||||
run-name: dR export statistics scheduled
|
||||
on:
|
||||
schedule:
|
||||
- cron: '00 * * *'
|
||||
name: dR export statistics
|
||||
run-name: dR export statistics
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
Export:
|
||||
Compile:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Check out repository code
|
||||
uses: actions/checkout@v4
|
||||
- name: Update repo
|
||||
run: git pull
|
||||
- name: List files in the repository
|
||||
run: |
|
||||
ls ${{ gitea.workspace }}
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
.history
|
||||
.reviews
|
||||
venv
|
||||
src/drstats/__pycache__
|
||||
.trigger-2024-12-02 13:37:42
|
||||
|
||||
@@ -1,44 +1,46 @@
|
||||
all: ensure_env build sync clean export_dataset export_stats merge_images export_statistics export_mentions
|
||||
|
||||
ensure_env:
|
||||
-@python3 -m venv venv
|
||||
all: build sync_excempt export_dataset export_stats merge_images export_statistics export_mentions
|
||||
|
||||
build:
|
||||
./venv/bin/python -m pip install build
|
||||
./venv/bin/python -m build .
|
||||
./venv/bin/python -m pip install -e .
|
||||
pip install build
|
||||
python -m build .
|
||||
pip install -e .
|
||||
|
||||
|
||||
|
||||
sync:
|
||||
./venv/bin/dr.sync
|
||||
dr.sync
|
||||
|
||||
clean:
|
||||
-@rm -r export
|
||||
mkdir -p export
|
||||
|
||||
sync_excempt:
|
||||
@echo "Sync is not executed because it's a lengthy process ending with timeout error."
|
||||
|
||||
export_stats:
|
||||
@echo "Make sure you have ran 'make sync' first. Results will be in ./export/"
|
||||
@echo "Exporting statistics."
|
||||
./venv/bin/dr.stats
|
||||
@echo "Exporting statisticts."
|
||||
dr.stats_all
|
||||
|
||||
export_dataset:
|
||||
@echo "Make sure you have ran 'make sync' first."
|
||||
@echo "Exporting dataset to be used for LLM embedding. Result will be ./export/0_dataset.txt"
|
||||
./venv/bin/dr.dataset > export/0_dataset.txt
|
||||
dr.dataset > export/0_dataset.txt
|
||||
|
||||
export_statistics:
|
||||
@echo "Exporting statisticts. Result will be ./export/2_statistics.txt"
|
||||
cat export/0_dataset.txt | grep "Statistics: "
|
||||
cat export/0_dataset.txt | grep "Statistics: " > export/2_statistics.txt
|
||||
cat export/dataset.txt | grep "Statistics: "
|
||||
cat export/dataset.txt | grep "Statistics: " > export/2_statistics.txt
|
||||
|
||||
|
||||
export_mentions:
|
||||
@echo "Exporting mentions. Result will be ./export/3_mentions.txt"
|
||||
cat export/0_dataset.txt | grep "times ment"
|
||||
cat export/0_dataset.txt | grep "times ment" > export/3_mentions.txt
|
||||
cat export/dataset.txt | grep "times ment"
|
||||
cat export/dataset.txt | grep "times ment" > export/3_mentions.txt
|
||||
|
||||
|
||||
merge_images:
|
||||
@echo "Merging images to one big image. Result will be ./export/1_graphs_compliation.png."
|
||||
./venv/bin/python merge_images.py
|
||||
python merge_images.py
|
||||
|
||||
|
||||
|
||||
@@ -1,18 +1,16 @@
|
||||
# dR stats
|
||||
# dRStats
|
||||
|
||||

|
||||
|
||||
This project is made to determine the health of the devRant developer community.
|
||||
Project to determine health of the devrant platform.
|
||||
|
||||
Also this data will be used for retoor9b, the newest AI hype! You're still using ChatGPT?
|
||||
|
||||
## Statistics by last build
|
||||
|
||||
Click here for latest [dataset](https://retoor.molodetz.nl/retoor/drstats/src/branch/main/export/0_dataset.txt) optimized for training LLM's like retoor9b.
|
||||
Click here for latest [dataset](https://retoor.molodetz.nl/retoor/drstats/src/branch/main/export/0_dataset.txt).
|
||||
|
||||
Click here for latest [graphs compilation](https://retoor.molodetz.nl/retoor/drstats/src/branch/main/export/1_graphs_compliation.png).
|
||||
Click here for latest [graphs compilaiton](https://retoor.molodetz.nl/retoor/drstats/src/branch/main/export/1_graphs_compliation.png).
|
||||
|
||||
Click here for all generated [data](https://retoor.molodetz.nl/retoor/drstats/src/branch/main/export). It's a big dataset containing data for LLM's to train on, graphs per user or overal statistics and json files with all made observations.
|
||||
Click here for all generated [data](https://retoor.molodetz.nl/retoor/drstats/src/branch/main/export)
|
||||
|
||||
Statistics are build automatically using a build server.
|
||||
|
||||
@@ -37,68 +35,10 @@ source ./venv/bin/activate
|
||||
You don't have to use more than make. If you just run `make` all statistics will be generated. It will execute the right apps for generating statistics.
|
||||
### Applications
|
||||
If you type `dr.` in terminal and press tab you'll see all available apps auto completed. These applications are also used by make.
|
||||
|
||||
```
|
||||
1. `dr.sync` synchronizes all data from last two weeks from devrant. Only two weeks because it's rate limited.
|
||||
2. `dr.dataset` exports all data to be used for LLM embedding., don't forget to execute `dr.sync` first.
|
||||
3. `dr.stats_all` exports all graphs to export folder, don't forget to execute `dr.sync` first.
|
||||
4. `dr.rant_stats_per_day` exports graphs to export folder. don't forget to execute `dr.sync` first.
|
||||
5. `dr.rant_stats_per_hour` exports graphs to export folder. don't forget to execute `dr.sync` first.
|
||||
6. `dr.rant_stats_per_weekday` exports graphs to export folder. don't forget to execute `dr.sync` first.
|
||||
|
||||
## Observations made by AI regarding statistics
|
||||
The model used for generating these observations is called `smoll2` which is a 1.7b model.
|
||||
|
||||
Provided report below does contain some inconvenience but I'm working on it by testing several models. I am limited by the power my server provides for running LLM's. I do not own a decent GPU.
|
||||
|
||||
If I would attach the ChatGPT API to my project, the statistics would be better / perfect. I have tested this. Sadly, the API costs to much for a hobby project and I refuse the use of an credit card. There are better options for payment not provided by OpenAI which I prefer.
|
||||
|
||||
### Several trends and insights about the devRant community
|
||||
|
||||
1. The most active users seem to be posting more than once per month. This
|
||||
could indicate that these individuals are very engaged with the community
|
||||
or have a high level of interest in participating in discussions.
|
||||
|
||||
2. There is a large range in the post lengths, ranging from 19 characters
|
||||
(kienkhongngu) to 742 characters (Pogromist). While there may be some
|
||||
outliers due to formatting issues or other factors, this suggests that
|
||||
users have varying levels of engagement and writing style on the forum.
|
||||
|
||||
3. The "ownership_content" value ranges from -0.5 to 1. This indicates
|
||||
that while some users do not post much, others are heavily involved with
|
||||
frequent and in-depth contributions. However, it's unclear what specific
|
||||
metric this represents or how it correlates with user engagement.
|
||||
|
||||
4. The most common "upvotes" per month range from 0 to 9 (arekxv) and 21
|
||||
(-1 for negative upvotes). This suggests that while users are posting
|
||||
relatively often, there may be some variability in their level of
|
||||
agreement with the content they're sharing or commenting on.
|
||||
|
||||
5. Overall, the data indicates a moderate level of engagement from users.
|
||||
While there is no clear indication of highly active users dominating the
|
||||
forum, the overall statistics suggest an engaged community where users
|
||||
contribute regularly and interact with each other's posts.
|
||||
|
||||
## Detailed by AI generated summary based on information provided by this project about a certain user
|
||||
The username is anonymized. Same for the actual values.
|
||||
|
||||
### Analysis of user **neo**
|
||||
|
||||
1. **Rank and Contributions**:
|
||||
- **Rank**: 45th overall
|
||||
- **Contributions**: 45 posts
|
||||
2. **Ownership**:
|
||||
- **Ownership**: 0.10, indicating that neo holds a slightly larger portion of the content ownership in the dataset.
|
||||
3. **Upvotes**:
|
||||
- **Upvotes**: 120 upvotes in total, suggesting that neo's content receives a notable level of recognition.
|
||||
- **Upvotes Ownership**: 0.03, meaning that neo owns about 3% of all upvotes in the dataset.
|
||||
- **Upvote Ratio**: 2.67, which implies a solid amount of engagement with neoās posts.
|
||||
4. **Post Length**:
|
||||
- **Total Post Length**: 5,100 characters
|
||||
- **Average Post Length**: 113 characters per post, suggesting relatively concise contributions.
|
||||
|
||||
#### Summary:
|
||||
|
||||
- **neo** is ranked 45th with 45 posts, indicating a modest level of contribution.
|
||||
- Their **ownership** percentage (0.10) reflects a slightly larger share of content ownership.
|
||||
- The **upvotes** received (120) and **upvote ratio** (2.67) suggest a notable level of engagement with their content.
|
||||
- The **average post length** of 113 characters indicates concise contributions.
|
||||
|
||||
|
Before Width: | Height: | Size: 8.6 MiB After Width: | Height: | Size: 1.9 MiB |
@@ -1,616 +1,100 @@
|
||||
===Statistics: User(ranter) Buffon is appreciation ranked 1 and made 26 contributions to devRant(developer community) what means Buffon owns 0.01 percent of contributions on devRant(developer community). The avarage post length of Buffon is 189 and total post length is 4929. Buffon owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Mikol is appreciation ranked 2 and made 2 contributions to devRant(developer community) what means Mikol owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Mikol is 373 and total post length is 747. Mikol owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) yohan56 is appreciation ranked 3 and made 1 contributions to devRant(developer community) what means yohan56 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of yohan56 is 17 and total post length is 17. yohan56 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) 1Cforever is appreciation ranked 4 and made 1 contributions to devRant(developer community) what means 1Cforever owns 0.0 percent of contributions on devRant(developer community). The avarage post length of 1Cforever is 17 and total post length is 17. 1Cforever owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ABBASinger is appreciation ranked 5 and made 1 contributions to devRant(developer community) what means ABBASinger owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ABBASinger is 17 and total post length is 17. ABBASinger owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ACAB is appreciation ranked 6 and made 1 contributions to devRant(developer community) what means ACAB owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ACAB is 17 and total post length is 17. ACAB owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AceOfSpades is appreciation ranked 7 and made 1 contributions to devRant(developer community) what means AceOfSpades owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AceOfSpades is 17 and total post length is 17. AceOfSpades owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AlexanderHeinz is appreciation ranked 8 and made 1 contributions to devRant(developer community) what means AlexanderHeinz owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AlexanderHeinz is 17 and total post length is 17. AlexanderHeinz owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Luisa23 is appreciation ranked 9 and made 1 contributions to devRant(developer community) what means Luisa23 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Luisa23 is 17 and total post length is 17. Luisa23 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AlfaOmiga is appreciation ranked 10 and made 1 contributions to devRant(developer community) what means AlfaOmiga owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AlfaOmiga is 17 and total post length is 17. AlfaOmiga owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AmeliaSprings is appreciation ranked 11 and made 1 contributions to devRant(developer community) what means AmeliaSprings owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AmeliaSprings is 17 and total post length is 17. AmeliaSprings owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AmericanCop is appreciation ranked 12 and made 1 contributions to devRant(developer community) what means AmericanCop owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AmericanCop is 17 and total post length is 17. AmericanCop owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Piter90 is appreciation ranked 13 and made 1 contributions to devRant(developer community) what means Piter90 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Piter90 is 17 and total post length is 17. Piter90 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AnnLourens is appreciation ranked 14 and made 1 contributions to devRant(developer community) what means AnnLourens owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AnnLourens is 17 and total post length is 17. AnnLourens owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AnnMarksman is appreciation ranked 15 and made 1 contributions to devRant(developer community) what means AnnMarksman owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AnnMarksman is 17 and total post length is 17. AnnMarksman owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) MELONI is appreciation ranked 16 and made 1 contributions to devRant(developer community) what means MELONI owns 0.0 percent of contributions on devRant(developer community). The avarage post length of MELONI is 17 and total post length is 17. MELONI owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AnnSoulman is appreciation ranked 17 and made 1 contributions to devRant(developer community) what means AnnSoulman owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AnnSoulman is 17 and total post length is 17. AnnSoulman owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Naumirich is appreciation ranked 18 and made 1 contributions to devRant(developer community) what means Naumirich owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Naumirich is 17 and total post length is 17. Naumirich owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AntonioPepe is appreciation ranked 19 and made 1 contributions to devRant(developer community) what means AntonioPepe owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AntonioPepe is 17 and total post length is 17. AntonioPepe owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AnnaAsti is appreciation ranked 20 and made 1 contributions to devRant(developer community) what means AnnaAsti owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AnnaAsti is 17 and total post length is 17. AnnaAsti owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ApocalypseToday is appreciation ranked 21 and made 1 contributions to devRant(developer community) what means ApocalypseToday owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ApocalypseToday is 17 and total post length is 17. ApocalypseToday owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Apogeus is appreciation ranked 22 and made 1 contributions to devRant(developer community) what means Apogeus owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Apogeus is 17 and total post length is 17. Apogeus owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) BlackRock is appreciation ranked 23 and made 1 contributions to devRant(developer community) what means BlackRock owns 0.0 percent of contributions on devRant(developer community). The avarage post length of BlackRock is 17 and total post length is 17. BlackRock owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Songul is appreciation ranked 24 and made 1 contributions to devRant(developer community) what means Songul owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Songul is 17 and total post length is 17. Songul owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) dayner78 is appreciation ranked 25 and made 1 contributions to devRant(developer community) what means dayner78 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of dayner78 is 17 and total post length is 17. dayner78 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) BogdanHarper is appreciation ranked 26 and made 1 contributions to devRant(developer community) what means BogdanHarper owns 0.0 percent of contributions on devRant(developer community). The avarage post length of BogdanHarper is 17 and total post length is 17. BogdanHarper owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) BornToDie is appreciation ranked 27 and made 1 contributions to devRant(developer community) what means BornToDie owns 0.0 percent of contributions on devRant(developer community). The avarage post length of BornToDie is 17 and total post length is 17. BornToDie owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CNCWorld is appreciation ranked 28 and made 1 contributions to devRant(developer community) what means CNCWorld owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CNCWorld is 17 and total post length is 17. CNCWorld owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CessnaPilot is appreciation ranked 29 and made 1 contributions to devRant(developer community) what means CessnaPilot owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CessnaPilot is 17 and total post length is 17. CessnaPilot owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ferhan is appreciation ranked 30 and made 1 contributions to devRant(developer community) what means ferhan owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ferhan is 17 and total post length is 17. ferhan owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CheapStart is appreciation ranked 31 and made 1 contributions to devRant(developer community) what means CheapStart owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CheapStart is 17 and total post length is 17. CheapStart owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) filiz is appreciation ranked 32 and made 1 contributions to devRant(developer community) what means filiz owns 0.0 percent of contributions on devRant(developer community). The avarage post length of filiz is 17 and total post length is 17. filiz owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CheapTuning is appreciation ranked 33 and made 1 contributions to devRant(developer community) what means CheapTuning owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CheapTuning is 17 and total post length is 17. CheapTuning owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CloudZero is appreciation ranked 34 and made 1 contributions to devRant(developer community) what means CloudZero owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CloudZero is 17 and total post length is 17. CloudZero owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ChinaTown is appreciation ranked 35 and made 1 contributions to devRant(developer community) what means ChinaTown owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ChinaTown is 17 and total post length is 17. ChinaTown owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CopperOre is appreciation ranked 36 and made 1 contributions to devRant(developer community) what means CopperOre owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CopperOre is 17 and total post length is 17. CopperOre owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CowboyBill is appreciation ranked 37 and made 1 contributions to devRant(developer community) what means CowboyBill owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CowboyBill is 17 and total post length is 17. CowboyBill owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) floreneiya is appreciation ranked 38 and made 1 contributions to devRant(developer community) what means floreneiya owns 0.0 percent of contributions on devRant(developer community). The avarage post length of floreneiya is 17 and total post length is 17. floreneiya owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) frank500 is appreciation ranked 39 and made 1 contributions to devRant(developer community) what means frank500 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of frank500 is 17 and total post length is 17. frank500 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CryptoManiac is appreciation ranked 40 and made 1 contributions to devRant(developer community) what means CryptoManiac owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CryptoManiac is 17 and total post length is 17. CryptoManiac owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CtrlVenus is appreciation ranked 41 and made 1 contributions to devRant(developer community) what means CtrlVenus owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CtrlVenus is 17 and total post length is 17. CtrlVenus owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) gulnarkijj is appreciation ranked 42 and made 1 contributions to devRant(developer community) what means gulnarkijj owns 0.0 percent of contributions on devRant(developer community). The avarage post length of gulnarkijj is 17 and total post length is 17. gulnarkijj owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) harrylarson is appreciation ranked 43 and made 1 contributions to devRant(developer community) what means harrylarson owns 0.0 percent of contributions on devRant(developer community). The avarage post length of harrylarson is 17 and total post length is 17. harrylarson owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CyberTank is appreciation ranked 44 and made 1 contributions to devRant(developer community) what means CyberTank owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CyberTank is 17 and total post length is 17. CyberTank owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DOGEmask is appreciation ranked 45 and made 1 contributions to devRant(developer community) what means DOGEmask owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DOGEmask is 17 and total post length is 17. DOGEmask owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DanielSturver is appreciation ranked 46 and made 1 contributions to devRant(developer community) what means DanielSturver owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DanielSturver is 17 and total post length is 17. DanielSturver owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jakidaneil90 is appreciation ranked 47 and made 1 contributions to devRant(developer community) what means jakidaneil90 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jakidaneil90 is 17 and total post length is 17. jakidaneil90 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DeadAir is appreciation ranked 48 and made 1 contributions to devRant(developer community) what means DeadAir owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DeadAir is 17 and total post length is 17. DeadAir owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) calebtino is appreciation ranked 49 and made 2 contributions to devRant(developer community) what means calebtino owns 0.0 percent of contributions on devRant(developer community). The avarage post length of calebtino is 17 and total post length is 34. calebtino owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DebianLover is appreciation ranked 50 and made 1 contributions to devRant(developer community) what means DebianLover owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DebianLover is 17 and total post length is 17. DebianLover owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DoctorPepper is appreciation ranked 51 and made 1 contributions to devRant(developer community) what means DoctorPepper owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DoctorPepper is 17 and total post length is 17. DoctorPepper owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Emery is appreciation ranked 52 and made 3 contributions to devRant(developer community) what means Emery owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Emery is 17 and total post length is 51. Emery owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DianaDW is appreciation ranked 53 and made 2 contributions to devRant(developer community) what means DianaDW owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DianaDW is 113 and total post length is 226. DianaDW owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DoraHills is appreciation ranked 54 and made 1 contributions to devRant(developer community) what means DoraHills owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DoraHills is 17 and total post length is 17. DoraHills owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) yevgeniy is appreciation ranked 55 and made 2 contributions to devRant(developer community) what means yevgeniy owns 0.0 percent of contributions on devRant(developer community). The avarage post length of yevgeniy is 17 and total post length is 34. yevgeniy owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) EarthDefender is appreciation ranked 56 and made 1 contributions to devRant(developer community) what means EarthDefender owns 0.0 percent of contributions on devRant(developer community). The avarage post length of EarthDefender is 17 and total post length is 17. EarthDefender owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) irene715 is appreciation ranked 57 and made 1 contributions to devRant(developer community) what means irene715 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of irene715 is 17 and total post length is 17. irene715 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) EddyMercury is appreciation ranked 58 and made 1 contributions to devRant(developer community) what means EddyMercury owns 0.0 percent of contributions on devRant(developer community). The avarage post length of EddyMercury is 17 and total post length is 17. EddyMercury owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Ecualizator is appreciation ranked 59 and made 1 contributions to devRant(developer community) what means Ecualizator owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Ecualizator is 17 and total post length is 17. Ecualizator owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jeremiparker is appreciation ranked 60 and made 1 contributions to devRant(developer community) what means jeremiparker owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jeremiparker is 17 and total post length is 17. jeremiparker owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) EifelTower is appreciation ranked 61 and made 1 contributions to devRant(developer community) what means EifelTower owns 0.0 percent of contributions on devRant(developer community). The avarage post length of EifelTower is 17 and total post length is 17. EifelTower owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ElectionForvard is appreciation ranked 62 and made 1 contributions to devRant(developer community) what means ElectionForvard owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ElectionForvard is 17 and total post length is 17. ElectionForvard owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FPVOperator is appreciation ranked 63 and made 1 contributions to devRant(developer community) what means FPVOperator owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FPVOperator is 17 and total post length is 17. FPVOperator owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) veronika23 is appreciation ranked 64 and made 1 contributions to devRant(developer community) what means veronika23 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of veronika23 is 17 and total post length is 17. veronika23 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Maryam6778 is appreciation ranked 65 and made 2 contributions to devRant(developer community) what means Maryam6778 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Maryam6778 is 211 and total post length is 422. Maryam6778 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FastSpeeder is appreciation ranked 66 and made 1 contributions to devRant(developer community) what means FastSpeeder owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FastSpeeder is 17 and total post length is 17. FastSpeeder owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FastestHand is appreciation ranked 67 and made 1 contributions to devRant(developer community) what means FastestHand owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FastestHand is 17 and total post length is 17. FastestHand owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) triton33 is appreciation ranked 68 and made 2 contributions to devRant(developer community) what means triton33 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of triton33 is 17 and total post length is 34. triton33 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FingerPinger is appreciation ranked 69 and made 1 contributions to devRant(developer community) what means FingerPinger owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FingerPinger is 17 and total post length is 17. FingerPinger owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) katalina89 is appreciation ranked 70 and made 1 contributions to devRant(developer community) what means katalina89 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of katalina89 is 17 and total post length is 17. katalina89 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FastestMeteor is appreciation ranked 71 and made 1 contributions to devRant(developer community) what means FastestMeteor owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FastestMeteor is 17 and total post length is 17. FastestMeteor owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Karina34 is appreciation ranked 72 and made 3 contributions to devRant(developer community) what means Karina34 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Karina34 is 149 and total post length is 449. Karina34 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sarabaylor00 is appreciation ranked 73 and made 1 contributions to devRant(developer community) what means sarabaylor00 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sarabaylor00 is 17 and total post length is 17. sarabaylor00 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FirstBlood is appreciation ranked 74 and made 1 contributions to devRant(developer community) what means FirstBlood owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FirstBlood is 17 and total post length is 17. FirstBlood owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FlowSimulation is appreciation ranked 75 and made 1 contributions to devRant(developer community) what means FlowSimulation owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FlowSimulation is 17 and total post length is 17. FlowSimulation owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ketrin is appreciation ranked 76 and made 1 contributions to devRant(developer community) what means ketrin owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ketrin is 17 and total post length is 17. ketrin owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FingerPrinter is appreciation ranked 77 and made 1 contributions to devRant(developer community) what means FingerPrinter owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FingerPrinter is 17 and total post length is 17. FingerPrinter owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FlowerLover is appreciation ranked 78 and made 1 contributions to devRant(developer community) what means FlowerLover owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FlowerLover is 17 and total post length is 17. FlowerLover owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) patriklad is appreciation ranked 79 and made 1 contributions to devRant(developer community) what means patriklad owns 0.0 percent of contributions on devRant(developer community). The avarage post length of patriklad is 17 and total post length is 17. patriklad owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FlyingGrenade is appreciation ranked 80 and made 1 contributions to devRant(developer community) what means FlyingGrenade owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FlyingGrenade is 17 and total post length is 17. FlyingGrenade owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Doddi is appreciation ranked 81 and made 1 contributions to devRant(developer community) what means Doddi owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Doddi is 17 and total post length is 17. Doddi owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FosterHamster is appreciation ranked 82 and made 1 contributions to devRant(developer community) what means FosterHamster owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FosterHamster is 17 and total post length is 17. FosterHamster owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) reychlsteysi is appreciation ranked 83 and made 1 contributions to devRant(developer community) what means reychlsteysi owns 0.0 percent of contributions on devRant(developer community). The avarage post length of reychlsteysi is 17 and total post length is 17. reychlsteysi owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) satya11 is appreciation ranked 84 and made 1 contributions to devRant(developer community) what means satya11 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of satya11 is 17 and total post length is 17. satya11 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) brentwagner429 is appreciation ranked 85 and made 3 contributions to devRant(developer community) what means brentwagner429 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of brentwagner429 is 149 and total post length is 449. brentwagner429 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Foxhole is appreciation ranked 86 and made 1 contributions to devRant(developer community) what means Foxhole owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Foxhole is 17 and total post length is 17. Foxhole owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) GADZHO is appreciation ranked 87 and made 1 contributions to devRant(developer community) what means GADZHO owns 0.0 percent of contributions on devRant(developer community). The avarage post length of GADZHO is 17 and total post length is 17. GADZHO owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) rosi555 is appreciation ranked 88 and made 1 contributions to devRant(developer community) what means rosi555 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of rosi555 is 17 and total post length is 17. rosi555 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Sweet is appreciation ranked 89 and made 1 contributions to devRant(developer community) what means Sweet owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Sweet is 17 and total post length is 17. Sweet owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ommaarfs is appreciation ranked 90 and made 4 contributions to devRant(developer community) what means ommaarfs owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ommaarfs is 161 and total post length is 644. ommaarfs owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) nadire1234 is appreciation ranked 91 and made 1 contributions to devRant(developer community) what means nadire1234 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of nadire1234 is 17 and total post length is 17. nadire1234 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Jack4m is appreciation ranked 92 and made 1 contributions to devRant(developer community) what means Jack4m owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Jack4m is 17 and total post length is 17. Jack4m owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Toyota is appreciation ranked 93 and made 1 contributions to devRant(developer community) what means Toyota owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Toyota is 17 and total post length is 17. Toyota owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ahmedmosatfa19 is appreciation ranked 94 and made 4 contributions to devRant(developer community) what means ahmedmosatfa19 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ahmedmosatfa19 is 161 and total post length is 644. ahmedmosatfa19 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Firo is appreciation ranked 95 and made 1 contributions to devRant(developer community) what means Firo owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Firo is 17 and total post length is 17. Firo owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Hary is appreciation ranked 96 and made 1 contributions to devRant(developer community) what means Hary owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Hary is 17 and total post length is 17. Hary owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kazyma is appreciation ranked 97 and made 1 contributions to devRant(developer community) what means kazyma owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kazyma is 17 and total post length is 17. kazyma owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Mika4m is appreciation ranked 98 and made 1 contributions to devRant(developer community) what means Mika4m owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Mika4m is 17 and total post length is 17. Mika4m owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) belalsabry is appreciation ranked 99 and made 5 contributions to devRant(developer community) what means belalsabry owns 0.0 percent of contributions on devRant(developer community). The avarage post length of belalsabry is 170 and total post length is 852. belalsabry owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Saka is appreciation ranked 100 and made 1 contributions to devRant(developer community) what means Saka owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Saka is 17 and total post length is 17. Saka owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Vonka is appreciation ranked 101 and made 1 contributions to devRant(developer community) what means Vonka owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Vonka is 17 and total post length is 17. Vonka owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ahmet000 is appreciation ranked 102 and made 5 contributions to devRant(developer community) what means ahmet000 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ahmet000 is 176 and total post length is 881. ahmet000 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Molokai is appreciation ranked 103 and made 1 contributions to devRant(developer community) what means Molokai owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Molokai is 17 and total post length is 17. Molokai owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) gulsat is appreciation ranked 104 and made 1 contributions to devRant(developer community) what means gulsat owns 0.0 percent of contributions on devRant(developer community). The avarage post length of gulsat is 17 and total post length is 17. gulsat owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Bunk is appreciation ranked 105 and made 1 contributions to devRant(developer community) what means Bunk owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Bunk is 17 and total post length is 17. Bunk owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Giga4a is appreciation ranked 106 and made 1 contributions to devRant(developer community) what means Giga4a owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Giga4a is 17 and total post length is 17. Giga4a owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) qfwewgwg is appreciation ranked 107 and made 5 contributions to devRant(developer community) what means qfwewgwg owns 0.0 percent of contributions on devRant(developer community). The avarage post length of qfwewgwg is 170 and total post length is 852. qfwewgwg owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Zeus4m is appreciation ranked 108 and made 1 contributions to devRant(developer community) what means Zeus4m owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Zeus4m is 17 and total post length is 17. Zeus4m owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) vectorvip is appreciation ranked 109 and made 5 contributions to devRant(developer community) what means vectorvip owns 0.0 percent of contributions on devRant(developer community). The avarage post length of vectorvip is 170 and total post length is 852. vectorvip owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Ryanya is appreciation ranked 110 and made 1 contributions to devRant(developer community) what means Ryanya owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Ryanya is 17 and total post length is 17. Ryanya owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) 01015087592 is appreciation ranked 111 and made 14 contributions to devRant(developer community) what means 01015087592 owns 0.01 percent of contributions on devRant(developer community). The avarage post length of 01015087592 is 195 and total post length is 2734. 01015087592 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Mackit is appreciation ranked 112 and made 2 contributions to devRant(developer community) what means Mackit owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Mackit is 113 and total post length is 226. Mackit owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Hudzx is appreciation ranked 113 and made 1 contributions to devRant(developer community) what means Hudzx owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Hudzx is 17 and total post length is 17. Hudzx owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ghosttt is appreciation ranked 114 and made 2 contributions to devRant(developer community) what means ghosttt owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ghosttt is 34 and total post length is 68. ghosttt owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Nimo is appreciation ranked 115 and made 1 contributions to devRant(developer community) what means Nimo owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Nimo is 17 and total post length is 17. Nimo owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) yasminahmed is appreciation ranked 116 and made 2 contributions to devRant(developer community) what means yasminahmed owns 0.0 percent of contributions on devRant(developer community). The avarage post length of yasminahmed is 209 and total post length is 418. yasminahmed owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Demon4s is appreciation ranked 117 and made 1 contributions to devRant(developer community) what means Demon4s owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Demon4s is 17 and total post length is 17. Demon4s owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) elfshelf is appreciation ranked 118 and made 1 contributions to devRant(developer community) what means elfshelf owns 0.0 percent of contributions on devRant(developer community). The avarage post length of elfshelf is 6 and total post length is 6. elfshelf owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) wegotthat is appreciation ranked 119 and made 1 contributions to devRant(developer community) what means wegotthat owns 0.0 percent of contributions on devRant(developer community). The avarage post length of wegotthat is 26 and total post length is 26. wegotthat owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ahmedmosa is appreciation ranked 120 and made 4 contributions to devRant(developer community) what means ahmedmosa owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ahmedmosa is 208 and total post length is 835. ahmedmosa owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) victoria is appreciation ranked 121 and made 3 contributions to devRant(developer community) what means victoria owns 0.0 percent of contributions on devRant(developer community). The avarage post length of victoria is 164 and total post length is 493. victoria owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sinalkoo is appreciation ranked 122 and made 2 contributions to devRant(developer community) what means sinalkoo owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sinalkoo is 17 and total post length is 34. sinalkoo owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) therewasonce is appreciation ranked 123 and made 1 contributions to devRant(developer community) what means therewasonce owns 0.0 percent of contributions on devRant(developer community). The avarage post length of therewasonce is 31 and total post length is 31. therewasonce owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Moro1st is appreciation ranked 124 and made 1 contributions to devRant(developer community) what means Moro1st owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Moro1st is 17 and total post length is 17. Moro1st owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) joopasma is appreciation ranked 125 and made 4 contributions to devRant(developer community) what means joopasma owns 0.0 percent of contributions on devRant(developer community). The avarage post length of joopasma is 209 and total post length is 837. joopasma owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) IHateForALiving is appreciation ranked 126 and made 1564 contributions to devRant(developer community) what means IHateForALiving owns 0.59 percent of contributions on devRant(developer community). The avarage post length of IHateForALiving is 432.175831202046 and total post length is 675923. IHateForALiving owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) snowman is appreciation ranked 127 and made 1 contributions to devRant(developer community) what means snowman owns 0.0 percent of contributions on devRant(developer community). The avarage post length of snowman is 124 and total post length is 124. snowman owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) monaessam is appreciation ranked 128 and made 3 contributions to devRant(developer community) what means monaessam owns 0.0 percent of contributions on devRant(developer community). The avarage post length of monaessam is 209 and total post length is 628. monaessam owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Besao is appreciation ranked 129 and made 1 contributions to devRant(developer community) what means Besao owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Besao is 17 and total post length is 17. Besao owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) broda is appreciation ranked 130 and made 4 contributions to devRant(developer community) what means broda owns 0.0 percent of contributions on devRant(developer community). The avarage post length of broda is 130 and total post length is 520. broda owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) haasanlol is appreciation ranked 131 and made 4 contributions to devRant(developer community) what means haasanlol owns 0.0 percent of contributions on devRant(developer community). The avarage post length of haasanlol is 209 and total post length is 836. haasanlol owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) localpost is appreciation ranked 132 and made 9 contributions to devRant(developer community) what means localpost owns 0.0 percent of contributions on devRant(developer community). The avarage post length of localpost is 57 and total post length is 519. localpost owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) figoore is appreciation ranked 133 and made 20 contributions to devRant(developer community) what means figoore owns 0.01 percent of contributions on devRant(developer community). The avarage post length of figoore is 610 and total post length is 12216. figoore owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AmyShackles is appreciation ranked 134 and made 3 contributions to devRant(developer community) what means AmyShackles owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AmyShackles is 130 and total post length is 391. AmyShackles owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) cafecortado is appreciation ranked 135 and made 102 contributions to devRant(developer community) what means cafecortado owns 0.04 percent of contributions on devRant(developer community). The avarage post length of cafecortado is 62 and total post length is 6418. cafecortado owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) just8littleBit is appreciation ranked 136 and made 3 contributions to devRant(developer community) what means just8littleBit owns 0.0 percent of contributions on devRant(developer community). The avarage post length of just8littleBit is 165 and total post length is 495. just8littleBit owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Fads is appreciation ranked 137 and made 1 contributions to devRant(developer community) what means Fads owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Fads is 17 and total post length is 17. Fads owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) myss is appreciation ranked 138 and made 9 contributions to devRant(developer community) what means myss owns 0.0 percent of contributions on devRant(developer community). The avarage post length of myss is 252 and total post length is 2272. myss owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) atheist is appreciation ranked 139 and made 107 contributions to devRant(developer community) what means atheist owns 0.04 percent of contributions on devRant(developer community). The avarage post length of atheist is 123 and total post length is 13188. atheist owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Hazarth is appreciation ranked 140 and made 82 contributions to devRant(developer community) what means Hazarth owns 0.03 percent of contributions on devRant(developer community). The avarage post length of Hazarth is 334 and total post length is 27463. Hazarth owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FinnTurner is appreciation ranked 141 and made 4 contributions to devRant(developer community) what means FinnTurner owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FinnTurner is 11 and total post length is 47. FinnTurner owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) donkulator is appreciation ranked 142 and made 217 contributions to devRant(developer community) what means donkulator owns 0.08 percent of contributions on devRant(developer community). The avarage post length of donkulator is 117 and total post length is 25429. donkulator owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) dissolvedgirl is appreciation ranked 143 and made 5 contributions to devRant(developer community) what means dissolvedgirl owns 0.0 percent of contributions on devRant(developer community). The avarage post length of dissolvedgirl is 291 and total post length is 1458. dissolvedgirl owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) yulia is appreciation ranked 144 and made 14 contributions to devRant(developer community) what means yulia owns 0.01 percent of contributions on devRant(developer community). The avarage post length of yulia is 209 and total post length is 2934. yulia owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) BobbyTables is appreciation ranked 145 and made 9 contributions to devRant(developer community) what means BobbyTables owns 0.0 percent of contributions on devRant(developer community). The avarage post length of BobbyTables is 86 and total post length is 774. BobbyTables owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kareemnon is appreciation ranked 146 and made 4 contributions to devRant(developer community) what means kareemnon owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kareemnon is 208 and total post length is 835. kareemnon owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) no-spam is appreciation ranked 147 and made 4 contributions to devRant(developer community) what means no-spam owns 0.0 percent of contributions on devRant(developer community). The avarage post length of no-spam is 58 and total post length is 233. no-spam owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) theranter is appreciation ranked 148 and made 4 contributions to devRant(developer community) what means theranter owns 0.0 percent of contributions on devRant(developer community). The avarage post length of theranter is 89 and total post length is 359. theranter owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) cotetowemixx is appreciation ranked 149 and made 2 contributions to devRant(developer community) what means cotetowemixx owns 0.0 percent of contributions on devRant(developer community). The avarage post length of cotetowemixx is 335 and total post length is 670. cotetowemixx owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) possum is appreciation ranked 150 and made 2 contributions to devRant(developer community) what means possum owns 0.0 percent of contributions on devRant(developer community). The avarage post length of possum is 105 and total post length is 210. possum owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) electrineer is appreciation ranked 151 and made 78 contributions to devRant(developer community) what means electrineer owns 0.03 percent of contributions on devRant(developer community). The avarage post length of electrineer is 57 and total post length is 4513. electrineer owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Liebranca is appreciation ranked 152 and made 114 contributions to devRant(developer community) what means Liebranca owns 0.04 percent of contributions on devRant(developer community). The avarage post length of Liebranca is 299 and total post length is 34179. Liebranca owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) cho-uc is appreciation ranked 153 and made 5 contributions to devRant(developer community) what means cho-uc owns 0.0 percent of contributions on devRant(developer community). The avarage post length of cho-uc is 228 and total post length is 1140. cho-uc owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) nemetepst is appreciation ranked 154 and made 5 contributions to devRant(developer community) what means nemetepst owns 0.0 percent of contributions on devRant(developer community). The avarage post length of nemetepst is 367 and total post length is 1837. nemetepst owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ars1 is appreciation ranked 155 and made 28 contributions to devRant(developer community) what means ars1 owns 0.01 percent of contributions on devRant(developer community). The avarage post length of ars1 is 169 and total post length is 4739. ars1 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ScriptCoded is appreciation ranked 156 and made 47 contributions to devRant(developer community) what means ScriptCoded owns 0.02 percent of contributions on devRant(developer community). The avarage post length of ScriptCoded is 73 and total post length is 3440. ScriptCoded owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Root is appreciation ranked 157 and made 87 contributions to devRant(developer community) what means Root owns 0.03 percent of contributions on devRant(developer community). The avarage post length of Root is 142 and total post length is 12377. Root owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Jabb03 is appreciation ranked 158 and made 3 contributions to devRant(developer community) what means Jabb03 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Jabb03 is 29 and total post length is 89. Jabb03 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) int32 is appreciation ranked 159 and made 10 contributions to devRant(developer community) what means int32 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of int32 is 205 and total post length is 2057. int32 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) iSwimInTheC is appreciation ranked 160 and made 14 contributions to devRant(developer community) what means iSwimInTheC owns 0.01 percent of contributions on devRant(developer community). The avarage post length of iSwimInTheC is 110 and total post length is 1553. iSwimInTheC owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) glowFX is appreciation ranked 161 and made 7 contributions to devRant(developer community) what means glowFX owns 0.0 percent of contributions on devRant(developer community). The avarage post length of glowFX is 123 and total post length is 865. glowFX owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) netikras is appreciation ranked 162 and made 222 contributions to devRant(developer community) what means netikras owns 0.08 percent of contributions on devRant(developer community). The avarage post length of netikras is 166 and total post length is 37012. netikras owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) djsumdog is appreciation ranked 163 and made 31 contributions to devRant(developer community) what means djsumdog owns 0.01 percent of contributions on devRant(developer community). The avarage post length of djsumdog is 215 and total post length is 6683. djsumdog owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Lensflare is appreciation ranked 164 and made 877 contributions to devRant(developer community) what means Lensflare owns 0.33 percent of contributions on devRant(developer community). The avarage post length of Lensflare is 127 and total post length is 111854. Lensflare owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) devRancid is appreciation ranked 165 and made 29 contributions to devRant(developer community) what means devRancid owns 0.01 percent of contributions on devRant(developer community). The avarage post length of devRancid is 144 and total post length is 4196. devRancid owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) codePain is appreciation ranked 166 and made 8 contributions to devRant(developer community) what means codePain owns 0.0 percent of contributions on devRant(developer community). The avarage post length of codePain is 65 and total post length is 520. codePain owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Ranchonyx is appreciation ranked 167 and made 89 contributions to devRant(developer community) what means Ranchonyx owns 0.03 percent of contributions on devRant(developer community). The avarage post length of Ranchonyx is 75 and total post length is 6735. Ranchonyx owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Demolishun is appreciation ranked 168 and made 824 contributions to devRant(developer community) what means Demolishun owns 0.31 percent of contributions on devRant(developer community). The avarage post length of Demolishun is 147 and total post length is 121175. Demolishun owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) lungdart is appreciation ranked 169 and made 87 contributions to devRant(developer community) what means lungdart owns 0.03 percent of contributions on devRant(developer community). The avarage post length of lungdart is 143 and total post length is 12505. lungdart owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) azuredivay is appreciation ranked 170 and made 23 contributions to devRant(developer community) what means azuredivay owns 0.01 percent of contributions on devRant(developer community). The avarage post length of azuredivay is 180 and total post length is 4156. azuredivay owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) We3D is appreciation ranked 171 and made 34 contributions to devRant(developer community) what means We3D owns 0.01 percent of contributions on devRant(developer community). The avarage post length of We3D is 115 and total post length is 3916. We3D owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) IHateForALiving is appreciation ranked 172 and made 15 contributions to devRant(developer community) what means IHateForALiving owns 0.01 percent of contributions on devRant(developer community). The avarage post length of IHateForALiving is 234 and total post length is 3516. IHateForALiving owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) null-pointer-ex is appreciation ranked 173 and made 7 contributions to devRant(developer community) what means null-pointer-ex owns 0.0 percent of contributions on devRant(developer community). The avarage post length of null-pointer-ex is 186 and total post length is 1305. null-pointer-ex owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DeepHotel is appreciation ranked 174 and made 5 contributions to devRant(developer community) what means DeepHotel owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DeepHotel is 61 and total post length is 305. DeepHotel owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) wifi is appreciation ranked 175 and made 5 contributions to devRant(developer community) what means wifi owns 0.0 percent of contributions on devRant(developer community). The avarage post length of wifi is 453 and total post length is 2267. wifi owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Lyniven is appreciation ranked 176 and made 4 contributions to devRant(developer community) what means Lyniven owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Lyniven is 112 and total post length is 451. Lyniven owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) darksideofyay is appreciation ranked 177 and made 4 contributions to devRant(developer community) what means darksideofyay owns 0.0 percent of contributions on devRant(developer community). The avarage post length of darksideofyay is 114 and total post length is 456. darksideofyay owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Alice is appreciation ranked 178 and made 2 contributions to devRant(developer community) what means Alice owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Alice is 9 and total post length is 19. Alice owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) TheEnd is appreciation ranked 179 and made 2 contributions to devRant(developer community) what means TheEnd owns 0.0 percent of contributions on devRant(developer community). The avarage post length of TheEnd is 37 and total post length is 75. TheEnd owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) evertiro is appreciation ranked 180 and made 2 contributions to devRant(developer community) what means evertiro owns 0.0 percent of contributions on devRant(developer community). The avarage post length of evertiro is 62 and total post length is 124. evertiro owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ibmsucks is appreciation ranked 181 and made 2 contributions to devRant(developer community) what means ibmsucks owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ibmsucks is 35 and total post length is 70. ibmsucks owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) solex is appreciation ranked 182 and made 2 contributions to devRant(developer community) what means solex owns 0.0 percent of contributions on devRant(developer community). The avarage post length of solex is 284 and total post length is 569. solex owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) 2Fdev2Ftcsh is appreciation ranked 183 and made 1 contributions to devRant(developer community) what means 2Fdev2Ftcsh owns 0.0 percent of contributions on devRant(developer community). The avarage post length of 2Fdev2Ftcsh is 29 and total post length is 29. 2Fdev2Ftcsh owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Berkmann18 is appreciation ranked 184 and made 1 contributions to devRant(developer community) what means Berkmann18 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Berkmann18 is 84 and total post length is 84. Berkmann18 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) BlueNutterfly is appreciation ranked 185 and made 1 contributions to devRant(developer community) what means BlueNutterfly owns 0.0 percent of contributions on devRant(developer community). The avarage post length of BlueNutterfly is 124 and total post length is 124. BlueNutterfly owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) JS-Guy is appreciation ranked 186 and made 1 contributions to devRant(developer community) what means JS-Guy owns 0.0 percent of contributions on devRant(developer community). The avarage post length of JS-Guy is 803 and total post length is 803. JS-Guy owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) John-Does is appreciation ranked 187 and made 1 contributions to devRant(developer community) what means John-Does owns 0.0 percent of contributions on devRant(developer community). The avarage post length of John-Does is 158 and total post length is 158. John-Does owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) MaddScientist is appreciation ranked 188 and made 1 contributions to devRant(developer community) what means MaddScientist owns 0.0 percent of contributions on devRant(developer community). The avarage post length of MaddScientist is 786 and total post length is 786. MaddScientist owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Piniuze is appreciation ranked 189 and made 1 contributions to devRant(developer community) what means Piniuze owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Piniuze is 552 and total post length is 552. Piniuze owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) RantACar is appreciation ranked 190 and made 1 contributions to devRant(developer community) what means RantACar owns 0.0 percent of contributions on devRant(developer community). The avarage post length of RantACar is 95 and total post length is 95. RantACar owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) gdb123 is appreciation ranked 191 and made 1 contributions to devRant(developer community) what means gdb123 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of gdb123 is 20 and total post length is 20. gdb123 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jimmy213 is appreciation ranked 192 and made 1 contributions to devRant(developer community) what means jimmy213 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jimmy213 is 31 and total post length is 31. jimmy213 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jthoward is appreciation ranked 193 and made 1 contributions to devRant(developer community) what means jthoward owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jthoward is 52 and total post length is 52. jthoward owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) lewac is appreciation ranked 194 and made 1 contributions to devRant(developer community) what means lewac owns 0.0 percent of contributions on devRant(developer community). The avarage post length of lewac is 15 and total post length is 15. lewac owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) lordedam is appreciation ranked 195 and made 1 contributions to devRant(developer community) what means lordedam owns 0.0 percent of contributions on devRant(developer community). The avarage post length of lordedam is 258 and total post length is 258. lordedam owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) mike34 is appreciation ranked 196 and made 1 contributions to devRant(developer community) what means mike34 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of mike34 is 251 and total post length is 251. mike34 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) notSoCoolGuy is appreciation ranked 197 and made 1 contributions to devRant(developer community) what means notSoCoolGuy owns 0.0 percent of contributions on devRant(developer community). The avarage post length of notSoCoolGuy is 373 and total post length is 373. notSoCoolGuy owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) noyb is appreciation ranked 198 and made 1 contributions to devRant(developer community) what means noyb owns 0.0 percent of contributions on devRant(developer community). The avarage post length of noyb is 157 and total post length is 157. noyb owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) PaperTrail is appreciation ranked 199 and made 19 contributions to devRant(developer community) what means PaperTrail owns 0.01 percent of contributions on devRant(developer community). The avarage post length of PaperTrail is 410 and total post length is 7804. PaperTrail owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) tosensei is appreciation ranked 200 and made 198 contributions to devRant(developer community) what means tosensei owns 0.07 percent of contributions on devRant(developer community). The avarage post length of tosensei is 146 and total post length is 28913. tosensei owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) MM83 is appreciation ranked 201 and made 7 contributions to devRant(developer community) what means MM83 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of MM83 is 229 and total post length is 1609. MM83 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) TrayKnots is appreciation ranked 202 and made 93 contributions to devRant(developer community) what means TrayKnots owns 0.04 percent of contributions on devRant(developer community). The avarage post length of TrayKnots is 323 and total post length is 30046. TrayKnots owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) TheBeardedOne is appreciation ranked 203 and made 68 contributions to devRant(developer community) what means TheBeardedOne owns 0.03 percent of contributions on devRant(developer community). The avarage post length of TheBeardedOne is 108 and total post length is 7396. TheBeardedOne owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) retoor is appreciation ranked 204 and made 2644 contributions to devRant(developer community) what means retoor owns 1.0 percent of contributions on devRant(developer community). The avarage post length of retoor is 274 and total post length is 725592. retoor owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) galena is appreciation ranked 205 and made 29 contributions to devRant(developer community) what means galena owns 0.01 percent of contributions on devRant(developer community). The avarage post length of galena is 83 and total post length is 2427. galena owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) cuddlyogre is appreciation ranked 206 and made 61 contributions to devRant(developer community) what means cuddlyogre owns 0.02 percent of contributions on devRant(developer community). The avarage post length of cuddlyogre is 252 and total post length is 15402. cuddlyogre owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) magicMirror is appreciation ranked 207 and made 10 contributions to devRant(developer community) what means magicMirror owns 0.0 percent of contributions on devRant(developer community). The avarage post length of magicMirror is 115 and total post length is 1154. magicMirror owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kamen is appreciation ranked 208 and made 13 contributions to devRant(developer community) what means kamen owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kamen is 87 and total post length is 1135. kamen owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) spongessuck is appreciation ranked 209 and made 38 contributions to devRant(developer community) what means spongessuck owns 0.01 percent of contributions on devRant(developer community). The avarage post length of spongessuck is 89 and total post length is 3419. spongessuck owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jiraTicket is appreciation ranked 210 and made 43 contributions to devRant(developer community) what means jiraTicket owns 0.02 percent of contributions on devRant(developer community). The avarage post length of jiraTicket is 422 and total post length is 18186. jiraTicket owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CN257 is appreciation ranked 211 and made 6 contributions to devRant(developer community) what means CN257 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CN257 is 67 and total post length is 402. CN257 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ashokramcse is appreciation ranked 212 and made 3 contributions to devRant(developer community) what means ashokramcse owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ashokramcse is 29 and total post length is 88. ashokramcse owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) 12bitfloat is appreciation ranked 213 and made 405 contributions to devRant(developer community) what means 12bitfloat owns 0.15 percent of contributions on devRant(developer community). The avarage post length of 12bitfloat is 152 and total post length is 61955. 12bitfloat owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) NoToJavaScript is appreciation ranked 214 and made 8 contributions to devRant(developer community) what means NoToJavaScript owns 0.0 percent of contributions on devRant(developer community). The avarage post length of NoToJavaScript is 189 and total post length is 1512. NoToJavaScript owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) NoMad is appreciation ranked 215 and made 66 contributions to devRant(developer community) what means NoMad owns 0.02 percent of contributions on devRant(developer community). The avarage post length of NoMad is 125 and total post length is 8311. NoMad owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) PappyHans is appreciation ranked 216 and made 34 contributions to devRant(developer community) what means PappyHans owns 0.01 percent of contributions on devRant(developer community). The avarage post length of PappyHans is 157 and total post length is 5338. PappyHans owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CoreFusionX is appreciation ranked 217 and made 118 contributions to devRant(developer community) what means CoreFusionX owns 0.04 percent of contributions on devRant(developer community). The avarage post length of CoreFusionX is 338 and total post length is 39955. CoreFusionX owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) bazmd is appreciation ranked 218 and made 97 contributions to devRant(developer community) what means bazmd owns 0.04 percent of contributions on devRant(developer community). The avarage post length of bazmd is 141 and total post length is 13739. bazmd owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) lorentz is appreciation ranked 219 and made 275 contributions to devRant(developer community) what means lorentz owns 0.1 percent of contributions on devRant(developer community). The avarage post length of lorentz is 239 and total post length is 65984. lorentz owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) asgs is appreciation ranked 220 and made 6 contributions to devRant(developer community) what means asgs owns 0.0 percent of contributions on devRant(developer community). The avarage post length of asgs is 94 and total post length is 568. asgs owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jasikamoon is appreciation ranked 221 and made 4 contributions to devRant(developer community) what means jasikamoon owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jasikamoon is 208 and total post length is 835. jasikamoon owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) HighTurtleDev is appreciation ranked 222 and made 2 contributions to devRant(developer community) what means HighTurtleDev owns 0.0 percent of contributions on devRant(developer community). The avarage post length of HighTurtleDev is 154 and total post length is 309. HighTurtleDev owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) RageExpress is appreciation ranked 223 and made 2 contributions to devRant(developer community) what means RageExpress owns 0.0 percent of contributions on devRant(developer community). The avarage post length of RageExpress is 340 and total post length is 681. RageExpress owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) aiodrix is appreciation ranked 224 and made 2 contributions to devRant(developer community) what means aiodrix owns 0.0 percent of contributions on devRant(developer community). The avarage post length of aiodrix is 233 and total post length is 467. aiodrix owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) vintprox is appreciation ranked 225 and made 2 contributions to devRant(developer community) what means vintprox owns 0.0 percent of contributions on devRant(developer community). The avarage post length of vintprox is 211 and total post length is 422. vintprox owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) bedawang is appreciation ranked 226 and made 15 contributions to devRant(developer community) what means bedawang owns 0.01 percent of contributions on devRant(developer community). The avarage post length of bedawang is 171 and total post length is 2577. bedawang owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) scor is appreciation ranked 227 and made 13 contributions to devRant(developer community) what means scor owns 0.0 percent of contributions on devRant(developer community). The avarage post length of scor is 121 and total post length is 1579. scor owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AlgoRythm is appreciation ranked 228 and made 90 contributions to devRant(developer community) what means AlgoRythm owns 0.03 percent of contributions on devRant(developer community). The avarage post length of AlgoRythm is 240 and total post length is 21602. AlgoRythm owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) elfo is appreciation ranked 229 and made 7 contributions to devRant(developer community) what means elfo owns 0.0 percent of contributions on devRant(developer community). The avarage post length of elfo is 29 and total post length is 203. elfo owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) hjk101 is appreciation ranked 230 and made 7 contributions to devRant(developer community) what means hjk101 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of hjk101 is 166 and total post length is 1166. hjk101 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jestdotty is appreciation ranked 231 and made 1062 contributions to devRant(developer community) what means jestdotty owns 0.4 percent of contributions on devRant(developer community). The avarage post length of jestdotty is 310 and total post length is 329612. jestdotty owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Jonathan1998 is appreciation ranked 232 and made 5 contributions to devRant(developer community) what means Jonathan1998 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Jonathan1998 is 37 and total post length is 187. Jonathan1998 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Tounai is appreciation ranked 233 and made 149 contributions to devRant(developer community) what means Tounai owns 0.06 percent of contributions on devRant(developer community). The avarage post length of Tounai is 132 and total post length is 19716. Tounai owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Argos is appreciation ranked 234 and made 8 contributions to devRant(developer community) what means Argos owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Argos is 264 and total post length is 2119. Argos owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) D-4got10-01 is appreciation ranked 235 and made 334 contributions to devRant(developer community) what means D-4got10-01 owns 0.13 percent of contributions on devRant(developer community). The avarage post length of D-4got10-01 is 191 and total post length is 63890. D-4got10-01 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) SidTheITGuy is appreciation ranked 236 and made 157 contributions to devRant(developer community) what means SidTheITGuy owns 0.06 percent of contributions on devRant(developer community). The avarage post length of SidTheITGuy is 113 and total post length is 17748. SidTheITGuy owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) devdiddydog is appreciation ranked 237 and made 3 contributions to devRant(developer community) what means devdiddydog owns 0.0 percent of contributions on devRant(developer community). The avarage post length of devdiddydog is 333 and total post length is 999. devdiddydog owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) gatoMalicioso is appreciation ranked 238 and made 3 contributions to devRant(developer community) what means gatoMalicioso owns 0.0 percent of contributions on devRant(developer community). The avarage post length of gatoMalicioso is 107 and total post length is 321. gatoMalicioso owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kiki is appreciation ranked 239 and made 413 contributions to devRant(developer community) what means kiki owns 0.16 percent of contributions on devRant(developer community). The avarage post length of kiki is 140 and total post length is 57953. kiki owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) typosaurus is appreciation ranked 240 and made 732 contributions to devRant(developer community) what means typosaurus owns 0.28 percent of contributions on devRant(developer community). The avarage post length of typosaurus is 280 and total post length is 205322. typosaurus owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) BordedDev is appreciation ranked 241 and made 379 contributions to devRant(developer community) what means BordedDev owns 0.14 percent of contributions on devRant(developer community). The avarage post length of BordedDev is 210 and total post length is 79615. BordedDev owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) feuerherz is appreciation ranked 242 and made 32 contributions to devRant(developer community) what means feuerherz owns 0.01 percent of contributions on devRant(developer community). The avarage post length of feuerherz is 83 and total post length is 2672. feuerherz owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ctkqiang is appreciation ranked 243 and made 11 contributions to devRant(developer community) what means ctkqiang owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ctkqiang is 61 and total post length is 676. ctkqiang owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Wisecrack is appreciation ranked 244 and made 55 contributions to devRant(developer community) what means Wisecrack owns 0.02 percent of contributions on devRant(developer community). The avarage post length of Wisecrack is 234 and total post length is 12918. Wisecrack owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AaronHenty is appreciation ranked 245 and made 4 contributions to devRant(developer community) what means AaronHenty owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AaronHenty is 12 and total post length is 51. AaronHenty owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) angerydev is appreciation ranked 246 and made 4 contributions to devRant(developer community) what means angerydev owns 0.0 percent of contributions on devRant(developer community). The avarage post length of angerydev is 59 and total post length is 239. angerydev owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) iiii is appreciation ranked 247 and made 34 contributions to devRant(developer community) what means iiii owns 0.01 percent of contributions on devRant(developer community). The avarage post length of iiii is 50 and total post length is 1707. iiii owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) JsonBoa is appreciation ranked 248 and made 21 contributions to devRant(developer community) what means JsonBoa owns 0.01 percent of contributions on devRant(developer community). The avarage post length of JsonBoa is 397 and total post length is 8341. JsonBoa owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) fruitfcker is appreciation ranked 249 and made 36 contributions to devRant(developer community) what means fruitfcker owns 0.01 percent of contributions on devRant(developer community). The avarage post length of fruitfcker is 109 and total post length is 3937. fruitfcker owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Elendil is appreciation ranked 250 and made 5 contributions to devRant(developer community) what means Elendil owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Elendil is 241 and total post length is 1207. Elendil owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) daniel-wu is appreciation ranked 251 and made 5 contributions to devRant(developer community) what means daniel-wu owns 0.0 percent of contributions on devRant(developer community). The avarage post length of daniel-wu is 206 and total post length is 1034. daniel-wu owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) MammaNeedHummus is appreciation ranked 252 and made 91 contributions to devRant(developer community) what means MammaNeedHummus owns 0.03 percent of contributions on devRant(developer community). The avarage post length of MammaNeedHummus is 111 and total post length is 10150. MammaNeedHummus owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) TerriToniAX is appreciation ranked 253 and made 12 contributions to devRant(developer community) what means TerriToniAX owns 0.0 percent of contributions on devRant(developer community). The avarage post length of TerriToniAX is 195 and total post length is 2341. TerriToniAX owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kobenz is appreciation ranked 254 and made 16 contributions to devRant(developer community) what means kobenz owns 0.01 percent of contributions on devRant(developer community). The avarage post length of kobenz is 95 and total post length is 1531. kobenz owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) devJs is appreciation ranked 255 and made 49 contributions to devRant(developer community) what means devJs owns 0.02 percent of contributions on devRant(developer community). The avarage post length of devJs is 183 and total post length is 8999. devJs owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) qwwerty is appreciation ranked 256 and made 11 contributions to devRant(developer community) what means qwwerty owns 0.0 percent of contributions on devRant(developer community). The avarage post length of qwwerty is 147 and total post length is 1617. qwwerty owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) SoldierOfCode is appreciation ranked 257 and made 38 contributions to devRant(developer community) what means SoldierOfCode owns 0.01 percent of contributions on devRant(developer community). The avarage post length of SoldierOfCode is 170 and total post length is 6472. SoldierOfCode owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Grumm is appreciation ranked 258 and made 106 contributions to devRant(developer community) what means Grumm owns 0.04 percent of contributions on devRant(developer community). The avarage post length of Grumm is 200 and total post length is 21269. Grumm owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Nmeri17 is appreciation ranked 259 and made 16 contributions to devRant(developer community) what means Nmeri17 owns 0.01 percent of contributions on devRant(developer community). The avarage post length of Nmeri17 is 247 and total post length is 3958. Nmeri17 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CaptainRant is appreciation ranked 260 and made 29 contributions to devRant(developer community) what means CaptainRant owns 0.01 percent of contributions on devRant(developer community). The avarage post length of CaptainRant is 201 and total post length is 5832. CaptainRant owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) cprn is appreciation ranked 261 and made 96 contributions to devRant(developer community) what means cprn owns 0.04 percent of contributions on devRant(developer community). The avarage post length of cprn is 237 and total post length is 22792. cprn owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) lopu is appreciation ranked 262 and made 20 contributions to devRant(developer community) what means lopu owns 0.01 percent of contributions on devRant(developer community). The avarage post length of lopu is 158 and total post length is 3171. lopu owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) blindXfish is appreciation ranked 263 and made 10 contributions to devRant(developer community) what means blindXfish owns 0.0 percent of contributions on devRant(developer community). The avarage post length of blindXfish is 64 and total post length is 643. blindXfish owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) andreasutter767 is appreciation ranked 264 and made 5 contributions to devRant(developer community) what means andreasutter767 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of andreasutter767 is 872 and total post length is 4360. andreasutter767 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) iatetoothpaste is appreciation ranked 265 and made 5 contributions to devRant(developer community) what means iatetoothpaste owns 0.0 percent of contributions on devRant(developer community). The avarage post length of iatetoothpaste is 129 and total post length is 646. iatetoothpaste owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kinu is appreciation ranked 266 and made 5 contributions to devRant(developer community) what means kinu owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kinu is 207 and total post length is 1038. kinu owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sjwsjwsjw is appreciation ranked 267 and made 4 contributions to devRant(developer community) what means sjwsjwsjw owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sjwsjwsjw is 46 and total post length is 186. sjwsjwsjw owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) trekhleb is appreciation ranked 268 and made 4 contributions to devRant(developer community) what means trekhleb owns 0.0 percent of contributions on devRant(developer community). The avarage post length of trekhleb is 167 and total post length is 669. trekhleb owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Definition7 is appreciation ranked 269 and made 3 contributions to devRant(developer community) what means Definition7 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Definition7 is 88 and total post length is 265. Definition7 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sleek is appreciation ranked 270 and made 3 contributions to devRant(developer community) what means sleek owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sleek is 371 and total post length is 1115. sleek owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) xcodesucks is appreciation ranked 271 and made 3 contributions to devRant(developer community) what means xcodesucks owns 0.0 percent of contributions on devRant(developer community). The avarage post length of xcodesucks is 428 and total post length is 1284. xcodesucks owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Augmental is appreciation ranked 272 and made 2 contributions to devRant(developer community) what means Augmental owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Augmental is 148 and total post length is 296. Augmental owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) LianaQK is appreciation ranked 273 and made 2 contributions to devRant(developer community) what means LianaQK owns 0.0 percent of contributions on devRant(developer community). The avarage post length of LianaQK is 346 and total post length is 693. LianaQK owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Michaela-Bwell is appreciation ranked 274 and made 2 contributions to devRant(developer community) what means Michaela-Bwell owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Michaela-Bwell is 875 and total post length is 1750. Michaela-Bwell owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Raymondd is appreciation ranked 275 and made 2 contributions to devRant(developer community) what means Raymondd owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Raymondd is 18 and total post length is 36. Raymondd owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ilechuks73 is appreciation ranked 276 and made 2 contributions to devRant(developer community) what means ilechuks73 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ilechuks73 is 118 and total post length is 237. ilechuks73 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jester5537 is appreciation ranked 277 and made 2 contributions to devRant(developer community) what means jester5537 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jester5537 is 336 and total post length is 672. jester5537 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) rudinskiz is appreciation ranked 278 and made 2 contributions to devRant(developer community) what means rudinskiz owns 0.0 percent of contributions on devRant(developer community). The avarage post length of rudinskiz is 41 and total post length is 82. rudinskiz owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) yamlbreakfast is appreciation ranked 279 and made 2 contributions to devRant(developer community) what means yamlbreakfast owns 0.0 percent of contributions on devRant(developer community). The avarage post length of yamlbreakfast is 113 and total post length is 227. yamlbreakfast owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) zuzahafty is appreciation ranked 280 and made 2 contributions to devRant(developer community) what means zuzahafty owns 0.0 percent of contributions on devRant(developer community). The avarage post length of zuzahafty is 39 and total post length is 78. zuzahafty owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) BadFox is appreciation ranked 281 and made 1 contributions to devRant(developer community) what means BadFox owns 0.0 percent of contributions on devRant(developer community). The avarage post length of BadFox is 61 and total post length is 61. BadFox owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FullThrust is appreciation ranked 282 and made 1 contributions to devRant(developer community) what means FullThrust owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FullThrust is 17 and total post length is 17. FullThrust owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) GOAT is appreciation ranked 283 and made 1 contributions to devRant(developer community) what means GOAT owns 0.0 percent of contributions on devRant(developer community). The avarage post length of GOAT is 152 and total post length is 152. GOAT owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Navid-mnzh is appreciation ranked 284 and made 1 contributions to devRant(developer community) what means Navid-mnzh owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Navid-mnzh is 401 and total post length is 401. Navid-mnzh owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) PurgeXenos is appreciation ranked 285 and made 1 contributions to devRant(developer community) what means PurgeXenos owns 0.0 percent of contributions on devRant(developer community). The avarage post length of PurgeXenos is 248 and total post length is 248. PurgeXenos owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Ranter24 is appreciation ranked 286 and made 1 contributions to devRant(developer community) what means Ranter24 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Ranter24 is 11 and total post length is 11. Ranter24 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Tayo is appreciation ranked 287 and made 1 contributions to devRant(developer community) what means Tayo owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Tayo is 106 and total post length is 106. Tayo owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) WillemD is appreciation ranked 288 and made 1 contributions to devRant(developer community) what means WillemD owns 0.0 percent of contributions on devRant(developer community). The avarage post length of WillemD is 37 and total post length is 37. WillemD owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) alturnativ is appreciation ranked 289 and made 1 contributions to devRant(developer community) what means alturnativ owns 0.0 percent of contributions on devRant(developer community). The avarage post length of alturnativ is 343 and total post length is 343. alturnativ owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) amandaorali is appreciation ranked 290 and made 1 contributions to devRant(developer community) what means amandaorali owns 0.0 percent of contributions on devRant(developer community). The avarage post length of amandaorali is 6 and total post length is 6. amandaorali owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) barrywhiteben is appreciation ranked 291 and made 1 contributions to devRant(developer community) what means barrywhiteben owns 0.0 percent of contributions on devRant(developer community). The avarage post length of barrywhiteben is 297 and total post length is 297. barrywhiteben owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) dustinreyes9 is appreciation ranked 292 and made 1 contributions to devRant(developer community) what means dustinreyes9 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of dustinreyes9 is 626 and total post length is 626. dustinreyes9 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) enpega is appreciation ranked 293 and made 1 contributions to devRant(developer community) what means enpega owns 0.0 percent of contributions on devRant(developer community). The avarage post length of enpega is 69 and total post length is 69. enpega owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) greven644 is appreciation ranked 294 and made 1 contributions to devRant(developer community) what means greven644 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of greven644 is 1 and total post length is 1. greven644 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) h3rp1d3v is appreciation ranked 295 and made 1 contributions to devRant(developer community) what means h3rp1d3v owns 0.0 percent of contributions on devRant(developer community). The avarage post length of h3rp1d3v is 80 and total post length is 80. h3rp1d3v owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) hritik08725 is appreciation ranked 296 and made 1 contributions to devRant(developer community) what means hritik08725 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of hritik08725 is 302 and total post length is 302. hritik08725 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ivanmaticic355 is appreciation ranked 297 and made 1 contributions to devRant(developer community) what means ivanmaticic355 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ivanmaticic355 is 551 and total post length is 551. ivanmaticic355 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) joncheeks is appreciation ranked 298 and made 1 contributions to devRant(developer community) what means joncheeks owns 0.0 percent of contributions on devRant(developer community). The avarage post length of joncheeks is 903 and total post length is 903. joncheeks owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kassandraryan60 is appreciation ranked 299 and made 1 contributions to devRant(developer community) what means kassandraryan60 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kassandraryan60 is 307 and total post length is 307. kassandraryan60 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) lastNick is appreciation ranked 300 and made 1 contributions to devRant(developer community) what means lastNick owns 0.0 percent of contributions on devRant(developer community). The avarage post length of lastNick is 32 and total post length is 32. lastNick owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) localguest is appreciation ranked 301 and made 1 contributions to devRant(developer community) what means localguest owns 0.0 percent of contributions on devRant(developer community). The avarage post length of localguest is 46 and total post length is 46. localguest owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ninajohnson is appreciation ranked 302 and made 1 contributions to devRant(developer community) what means ninajohnson owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ninajohnson is 732 and total post length is 732. ninajohnson owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) pepega is appreciation ranked 303 and made 1 contributions to devRant(developer community) what means pepega owns 0.0 percent of contributions on devRant(developer community). The avarage post length of pepega is 8 and total post length is 8. pepega owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) savalanolan is appreciation ranked 304 and made 1 contributions to devRant(developer community) what means savalanolan owns 0.0 percent of contributions on devRant(developer community). The avarage post length of savalanolan is 705 and total post length is 705. savalanolan owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) soulevans07 is appreciation ranked 305 and made 1 contributions to devRant(developer community) what means soulevans07 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of soulevans07 is 428 and total post length is 428. soulevans07 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) no-spam1 is appreciation ranked 306 and made 67 contributions to devRant(developer community) what means no-spam1 owns 0.03 percent of contributions on devRant(developer community). The avarage post length of no-spam1 is 350 and total post length is 23468. no-spam1 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Chewbanacas is appreciation ranked 307 and made 90 contributions to devRant(developer community) what means Chewbanacas owns 0.03 percent of contributions on devRant(developer community). The avarage post length of Chewbanacas is 189 and total post length is 17096. Chewbanacas owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) UberSalt is appreciation ranked 308 and made 46 contributions to devRant(developer community) what means UberSalt owns 0.02 percent of contributions on devRant(developer community). The avarage post length of UberSalt is 121 and total post length is 5572. UberSalt owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AceDev is appreciation ranked 309 and made 48 contributions to devRant(developer community) what means AceDev owns 0.02 percent of contributions on devRant(developer community). The avarage post length of AceDev is 56 and total post length is 2696. AceDev owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) -ANGRY-STUDENT- is appreciation ranked 310 and made 10 contributions to devRant(developer community) what means -ANGRY-STUDENT- owns 0.0 percent of contributions on devRant(developer community). The avarage post length of -ANGRY-STUDENT- is 90 and total post length is 906. -ANGRY-STUDENT- owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) TeachMeCode is appreciation ranked 311 and made 64 contributions to devRant(developer community) what means TeachMeCode owns 0.02 percent of contributions on devRant(developer community). The avarage post length of TeachMeCode is 159 and total post length is 10239. TeachMeCode owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sandeepbalan is appreciation ranked 312 and made 9 contributions to devRant(developer community) what means sandeepbalan owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sandeepbalan is 110 and total post length is 994. sandeepbalan owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) antigermanist is appreciation ranked 313 and made 334 contributions to devRant(developer community) what means antigermanist owns 0.13 percent of contributions on devRant(developer community). The avarage post length of antigermanist is 113 and total post length is 37956. antigermanist owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) dIREsTRAITS is appreciation ranked 314 and made 14 contributions to devRant(developer community) what means dIREsTRAITS owns 0.01 percent of contributions on devRant(developer community). The avarage post length of dIREsTRAITS is 143 and total post length is 2015. dIREsTRAITS owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) byteasf is appreciation ranked 315 and made 7 contributions to devRant(developer community) what means byteasf owns 0.0 percent of contributions on devRant(developer community). The avarage post length of byteasf is 63 and total post length is 444. byteasf owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) superdupernova is appreciation ranked 316 and made 19 contributions to devRant(developer community) what means superdupernova owns 0.01 percent of contributions on devRant(developer community). The avarage post length of superdupernova is 50 and total post length is 961. superdupernova owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) awesomeest is appreciation ranked 317 and made 63 contributions to devRant(developer community) what means awesomeest owns 0.02 percent of contributions on devRant(developer community). The avarage post length of awesomeest is 548 and total post length is 34536. awesomeest owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) no-spam2 is appreciation ranked 318 and made 59 contributions to devRant(developer community) what means no-spam2 owns 0.02 percent of contributions on devRant(developer community). The avarage post length of no-spam2 is 379 and total post length is 22390. no-spam2 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) grokii is appreciation ranked 319 and made 103 contributions to devRant(developer community) what means grokii owns 0.04 percent of contributions on devRant(developer community). The avarage post length of grokii is 547 and total post length is 56375. grokii owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AdamOnAir is appreciation ranked 320 and made 26 contributions to devRant(developer community) what means AdamOnAir owns 0.01 percent of contributions on devRant(developer community). The avarage post length of AdamOnAir is 57 and total post length is 1501. AdamOnAir owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) mangodb is appreciation ranked 321 and made 10 contributions to devRant(developer community) what means mangodb owns 0.0 percent of contributions on devRant(developer community). The avarage post length of mangodb is 154 and total post length is 1541. mangodb owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Biggy is appreciation ranked 322 and made 5 contributions to devRant(developer community) what means Biggy owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Biggy is 52 and total post length is 262. Biggy owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) cb219 is appreciation ranked 323 and made 5 contributions to devRant(developer community) what means cb219 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of cb219 is 164 and total post length is 824. cb219 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) retard is appreciation ranked 324 and made 9 contributions to devRant(developer community) what means retard owns 0.0 percent of contributions on devRant(developer community). The avarage post length of retard is 115 and total post length is 1038. retard owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) beverlycarson is appreciation ranked 325 and made 4 contributions to devRant(developer community) what means beverlycarson owns 0.0 percent of contributions on devRant(developer community). The avarage post length of beverlycarson is 852 and total post length is 3411. beverlycarson owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) antigermgerm is appreciation ranked 326 and made 562 contributions to devRant(developer community) what means antigermgerm owns 0.21 percent of contributions on devRant(developer community). The avarage post length of antigermgerm is 124 and total post length is 70152. antigermgerm owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) no-spam4 is appreciation ranked 327 and made 54 contributions to devRant(developer community) what means no-spam4 owns 0.02 percent of contributions on devRant(developer community). The avarage post length of no-spam4 is 387 and total post length is 20938. no-spam4 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Nanonoko is appreciation ranked 328 and made 27 contributions to devRant(developer community) what means Nanonoko owns 0.01 percent of contributions on devRant(developer community). The avarage post length of Nanonoko is 241 and total post length is 6507. Nanonoko owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) b2plane is appreciation ranked 329 and made 24 contributions to devRant(developer community) what means b2plane owns 0.01 percent of contributions on devRant(developer community). The avarage post length of b2plane is 71 and total post length is 1711. b2plane owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) no-spam3 is appreciation ranked 330 and made 60 contributions to devRant(developer community) what means no-spam3 owns 0.02 percent of contributions on devRant(developer community). The avarage post length of no-spam3 is 392 and total post length is 23539. no-spam3 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) devux-bookmark is appreciation ranked 331 and made 3 contributions to devRant(developer community) what means devux-bookmark owns 0.0 percent of contributions on devRant(developer community). The avarage post length of devux-bookmark is 174 and total post length is 522. devux-bookmark owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) isaachackett is appreciation ranked 332 and made 3 contributions to devRant(developer community) what means isaachackett owns 0.0 percent of contributions on devRant(developer community). The avarage post length of isaachackett is 141 and total post length is 425. isaachackett owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) osx94 is appreciation ranked 333 and made 3 contributions to devRant(developer community) what means osx94 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of osx94 is 48 and total post length is 145. osx94 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) vlord is appreciation ranked 334 and made 3 contributions to devRant(developer community) what means vlord owns 0.0 percent of contributions on devRant(developer community). The avarage post length of vlord is 162 and total post length is 488. vlord owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) gitstashio is appreciation ranked 335 and made 11 contributions to devRant(developer community) what means gitstashio owns 0.0 percent of contributions on devRant(developer community). The avarage post length of gitstashio is 195 and total post length is 2149. gitstashio owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AvatarOfKaine is appreciation ranked 336 and made 232 contributions to devRant(developer community) what means AvatarOfKaine owns 0.09 percent of contributions on devRant(developer community). The avarage post length of AvatarOfKaine is 91 and total post length is 21323. AvatarOfKaine owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kanyewest is appreciation ranked 337 and made 87 contributions to devRant(developer community) what means kanyewest owns 0.03 percent of contributions on devRant(developer community). The avarage post length of kanyewest is 85 and total post length is 7470. kanyewest owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Waytopranav is appreciation ranked 338 and made 15 contributions to devRant(developer community) what means Waytopranav owns 0.01 percent of contributions on devRant(developer community). The avarage post length of Waytopranav is 94 and total post length is 1423. Waytopranav owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) nosoup4u is appreciation ranked 339 and made 5 contributions to devRant(developer community) what means nosoup4u owns 0.0 percent of contributions on devRant(developer community). The avarage post length of nosoup4u is 208 and total post length is 1043. nosoup4u owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) thelevenin is appreciation ranked 340 and made 14 contributions to devRant(developer community) what means thelevenin owns 0.01 percent of contributions on devRant(developer community). The avarage post length of thelevenin is 62 and total post length is 876. thelevenin owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) rootshell is appreciation ranked 341 and made 25 contributions to devRant(developer community) what means rootshell owns 0.01 percent of contributions on devRant(developer community). The avarage post length of rootshell is 175 and total post length is 4383. rootshell owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Pogromist is appreciation ranked 342 and made 20 contributions to devRant(developer community) what means Pogromist owns 0.01 percent of contributions on devRant(developer community). The avarage post length of Pogromist is 168 and total post length is 3377. Pogromist owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) wojtek322 is appreciation ranked 343 and made 18 contributions to devRant(developer community) what means wojtek322 owns 0.01 percent of contributions on devRant(developer community). The avarage post length of wojtek322 is 366 and total post length is 6599. wojtek322 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) shovethisrant is appreciation ranked 344 and made 6 contributions to devRant(developer community) what means shovethisrant owns 0.0 percent of contributions on devRant(developer community). The avarage post length of shovethisrant is 59 and total post length is 356. shovethisrant owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) max19931 is appreciation ranked 345 and made 4 contributions to devRant(developer community) what means max19931 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of max19931 is 94 and total post length is 377. max19931 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) poapelgjie is appreciation ranked 346 and made 4 contributions to devRant(developer community) what means poapelgjie owns 0.0 percent of contributions on devRant(developer community). The avarage post length of poapelgjie is 208 and total post length is 835. poapelgjie owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AaronJacobs is appreciation ranked 347 and made 2 contributions to devRant(developer community) what means AaronJacobs owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AaronJacobs is 10 and total post length is 21. AaronJacobs owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DivSyntax is appreciation ranked 348 and made 2 contributions to devRant(developer community) what means DivSyntax owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DivSyntax is 38 and total post length is 76. DivSyntax owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DreEleven is appreciation ranked 349 and made 2 contributions to devRant(developer community) what means DreEleven owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DreEleven is 131 and total post length is 263. DreEleven owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FuckJava is appreciation ranked 350 and made 2 contributions to devRant(developer community) what means FuckJava owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FuckJava is 55 and total post length is 111. FuckJava owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Maximillian is appreciation ranked 351 and made 2 contributions to devRant(developer community) what means Maximillian owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Maximillian is 484 and total post length is 969. Maximillian owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) OverclockedGD is appreciation ranked 352 and made 2 contributions to devRant(developer community) what means OverclockedGD owns 0.0 percent of contributions on devRant(developer community). The avarage post length of OverclockedGD is 218 and total post length is 437. OverclockedGD owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ScribeOfGoD is appreciation ranked 353 and made 2 contributions to devRant(developer community) what means ScribeOfGoD owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ScribeOfGoD is 119 and total post length is 239. ScribeOfGoD owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) adante is appreciation ranked 354 and made 2 contributions to devRant(developer community) what means adante owns 0.0 percent of contributions on devRant(developer community). The avarage post length of adante is 104 and total post length is 208. adante owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) alyssadnester is appreciation ranked 355 and made 2 contributions to devRant(developer community) what means alyssadnester owns 0.0 percent of contributions on devRant(developer community). The avarage post length of alyssadnester is 118 and total post length is 237. alyssadnester owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) danae357 is appreciation ranked 356 and made 2 contributions to devRant(developer community) what means danae357 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of danae357 is 187 and total post length is 375. danae357 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ellenjulie is appreciation ranked 357 and made 2 contributions to devRant(developer community) what means ellenjulie owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ellenjulie is 904 and total post length is 1809. ellenjulie owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) emeraudelinton is appreciation ranked 358 and made 2 contributions to devRant(developer community) what means emeraudelinton owns 0.0 percent of contributions on devRant(developer community). The avarage post length of emeraudelinton is 877 and total post length is 1754. emeraudelinton owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) nururururu is appreciation ranked 359 and made 2 contributions to devRant(developer community) what means nururururu owns 0.0 percent of contributions on devRant(developer community). The avarage post length of nururururu is 212 and total post length is 425. nururururu owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) scottflores7 is appreciation ranked 360 and made 2 contributions to devRant(developer community) what means scottflores7 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of scottflores7 is 810 and total post length is 1620. scottflores7 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) K-ASS is appreciation ranked 361 and made 10 contributions to devRant(developer community) what means K-ASS owns 0.0 percent of contributions on devRant(developer community). The avarage post length of K-ASS is 169 and total post length is 1690. K-ASS owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Ganofins is appreciation ranked 362 and made 5 contributions to devRant(developer community) what means Ganofins owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Ganofins is 143 and total post length is 719. Ganofins owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) bad-practice is appreciation ranked 363 and made 5 contributions to devRant(developer community) what means bad-practice owns 0.0 percent of contributions on devRant(developer community). The avarage post length of bad-practice is 89 and total post length is 449. bad-practice owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) bosslogic is appreciation ranked 364 and made 6 contributions to devRant(developer community) what means bosslogic owns 0.0 percent of contributions on devRant(developer community). The avarage post length of bosslogic is 324 and total post length is 1948. bosslogic owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ArnulfoSchimmel is appreciation ranked 365 and made 3 contributions to devRant(developer community) what means ArnulfoSchimmel owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ArnulfoSchimmel is 55 and total post length is 167. ArnulfoSchimmel owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Davidson2021 is appreciation ranked 366 and made 3 contributions to devRant(developer community) what means Davidson2021 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Davidson2021 is 33 and total post length is 100. Davidson2021 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) EverettRyan is appreciation ranked 367 and made 3 contributions to devRant(developer community) what means EverettRyan owns 0.0 percent of contributions on devRant(developer community). The avarage post length of EverettRyan is 29 and total post length is 89. EverettRyan owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sarahgrimaldi2 is appreciation ranked 368 and made 3 contributions to devRant(developer community) what means sarahgrimaldi2 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sarahgrimaldi2 is 685 and total post length is 2055. sarahgrimaldi2 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) chatgpt is appreciation ranked 369 and made 376 contributions to devRant(developer community) what means chatgpt owns 0.14 percent of contributions on devRant(developer community). The avarage post length of chatgpt is 404 and total post length is 152157. chatgpt owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) priyanshu-kun is appreciation ranked 370 and made 5 contributions to devRant(developer community) what means priyanshu-kun owns 0.0 percent of contributions on devRant(developer community). The avarage post length of priyanshu-kun is 45 and total post length is 228. priyanshu-kun owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) OliviaLane is appreciation ranked 371 and made 18 contributions to devRant(developer community) what means OliviaLane owns 0.01 percent of contributions on devRant(developer community). The avarage post length of OliviaLane is 209 and total post length is 3762. OliviaLane owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Salmakis is appreciation ranked 372 and made 6 contributions to devRant(developer community) what means Salmakis owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Salmakis is 158 and total post length is 949. Salmakis owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Reinhart8 is appreciation ranked 373 and made 5 contributions to devRant(developer community) what means Reinhart8 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Reinhart8 is 750 and total post length is 3753. Reinhart8 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) asskisser is appreciation ranked 374 and made 5 contributions to devRant(developer community) what means asskisser owns 0.0 percent of contributions on devRant(developer community). The avarage post length of asskisser is 464 and total post length is 2324. asskisser owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) janlucien is appreciation ranked 375 and made 5 contributions to devRant(developer community) what means janlucien owns 0.0 percent of contributions on devRant(developer community). The avarage post length of janlucien is 951 and total post length is 4757. janlucien owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Brian11Jeff is appreciation ranked 376 and made 4 contributions to devRant(developer community) what means Brian11Jeff owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Brian11Jeff is 794 and total post length is 3176. Brian11Jeff owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) IleneHoeger is appreciation ranked 377 and made 4 contributions to devRant(developer community) what means IleneHoeger owns 0.0 percent of contributions on devRant(developer community). The avarage post length of IleneHoeger is 39 and total post length is 156. IleneHoeger owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) angela0147 is appreciation ranked 378 and made 4 contributions to devRant(developer community) what means angela0147 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of angela0147 is 776 and total post length is 3104. angela0147 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) bramorrie is appreciation ranked 379 and made 4 contributions to devRant(developer community) what means bramorrie owns 0.0 percent of contributions on devRant(developer community). The avarage post length of bramorrie is 550 and total post length is 2200. bramorrie owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) n1cK1337 is appreciation ranked 380 and made 4 contributions to devRant(developer community) what means n1cK1337 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of n1cK1337 is 266 and total post length is 1065. n1cK1337 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Maty is appreciation ranked 381 and made 3 contributions to devRant(developer community) what means Maty owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Maty is 609 and total post length is 1827. Maty owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) NataliaZoric is appreciation ranked 382 and made 3 contributions to devRant(developer community) what means NataliaZoric owns 0.0 percent of contributions on devRant(developer community). The avarage post length of NataliaZoric is 607 and total post length is 1823. NataliaZoric owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) annie45 is appreciation ranked 383 and made 3 contributions to devRant(developer community) what means annie45 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of annie45 is 372 and total post length is 1116. annie45 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) demurerecall is appreciation ranked 384 and made 3 contributions to devRant(developer community) what means demurerecall owns 0.0 percent of contributions on devRant(developer community). The avarage post length of demurerecall is 97 and total post length is 291. demurerecall owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) marksarah1 is appreciation ranked 385 and made 3 contributions to devRant(developer community) what means marksarah1 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of marksarah1 is 976 and total post length is 2928. marksarah1 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ohiengbomwan is appreciation ranked 386 and made 3 contributions to devRant(developer community) what means ohiengbomwan owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ohiengbomwan is 741 and total post length is 2225. ohiengbomwan owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sweetbomb is appreciation ranked 387 and made 3 contributions to devRant(developer community) what means sweetbomb owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sweetbomb is 80 and total post length is 242. sweetbomb owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) violettegabara is appreciation ranked 388 and made 3 contributions to devRant(developer community) what means violettegabara owns 0.0 percent of contributions on devRant(developer community). The avarage post length of violettegabara is 989 and total post length is 2967. violettegabara owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Aldar is appreciation ranked 389 and made 2 contributions to devRant(developer community) what means Aldar owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Aldar is 241 and total post length is 482. Aldar owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Breejames is appreciation ranked 390 and made 2 contributions to devRant(developer community) what means Breejames owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Breejames is 746 and total post length is 1492. Breejames owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Burns11Mor is appreciation ranked 391 and made 2 contributions to devRant(developer community) what means Burns11Mor owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Burns11Mor is 684 and total post length is 1369. Burns11Mor owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DannY12 is appreciation ranked 392 and made 2 contributions to devRant(developer community) what means DannY12 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DannY12 is 923 and total post length is 1846. DannY12 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) IsabelTop is appreciation ranked 393 and made 2 contributions to devRant(developer community) what means IsabelTop owns 0.0 percent of contributions on devRant(developer community). The avarage post length of IsabelTop is 831 and total post length is 1662. IsabelTop owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) KayBlevins is appreciation ranked 394 and made 2 contributions to devRant(developer community) what means KayBlevins owns 0.0 percent of contributions on devRant(developer community). The avarage post length of KayBlevins is 911 and total post length is 1822. KayBlevins owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Milies095 is appreciation ranked 395 and made 2 contributions to devRant(developer community) what means Milies095 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Milies095 is 473 and total post length is 947. Milies095 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Patricia2z is appreciation ranked 396 and made 2 contributions to devRant(developer community) what means Patricia2z owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Patricia2z is 805 and total post length is 1610. Patricia2z owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) allardemiel1 is appreciation ranked 397 and made 2 contributions to devRant(developer community) what means allardemiel1 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of allardemiel1 is 830 and total post length is 1660. allardemiel1 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) amosjjoe is appreciation ranked 398 and made 2 contributions to devRant(developer community) what means amosjjoe owns 0.0 percent of contributions on devRant(developer community). The avarage post length of amosjjoe is 69 and total post length is 138. amosjjoe owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ashlietaylor825 is appreciation ranked 399 and made 2 contributions to devRant(developer community) what means ashlietaylor825 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ashlietaylor825 is 608 and total post length is 1216. ashlietaylor825 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) bengraylarry is appreciation ranked 400 and made 2 contributions to devRant(developer community) what means bengraylarry owns 0.0 percent of contributions on devRant(developer community). The avarage post length of bengraylarry is 569 and total post length is 1138. bengraylarry owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) benjaminlucas is appreciation ranked 401 and made 2 contributions to devRant(developer community) what means benjaminlucas owns 0.0 percent of contributions on devRant(developer community). The avarage post length of benjaminlucas is 678 and total post length is 1356. benjaminlucas owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) bettycleaver is appreciation ranked 402 and made 2 contributions to devRant(developer community) what means bettycleaver owns 0.0 percent of contributions on devRant(developer community). The avarage post length of bettycleaver is 517 and total post length is 1034. bettycleaver owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) carolfitzmaur is appreciation ranked 403 and made 2 contributions to devRant(developer community) what means carolfitzmaur owns 0.0 percent of contributions on devRant(developer community). The avarage post length of carolfitzmaur is 694 and total post length is 1388. carolfitzmaur owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) creminroyce is appreciation ranked 404 and made 2 contributions to devRant(developer community) what means creminroyce owns 0.0 percent of contributions on devRant(developer community). The avarage post length of creminroyce is 741 and total post length is 1482. creminroyce owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) dianaharland5 is appreciation ranked 405 and made 2 contributions to devRant(developer community) what means dianaharland5 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of dianaharland5 is 605 and total post length is 1210. dianaharland5 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) dowdlori680 is appreciation ranked 406 and made 2 contributions to devRant(developer community) what means dowdlori680 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of dowdlori680 is 976 and total post length is 1953. dowdlori680 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) elliotzucker is appreciation ranked 407 and made 2 contributions to devRant(developer community) what means elliotzucker owns 0.0 percent of contributions on devRant(developer community). The avarage post length of elliotzucker is 16 and total post length is 33. elliotzucker owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ericarogulski is appreciation ranked 408 and made 2 contributions to devRant(developer community) what means ericarogulski owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ericarogulski is 952 and total post length is 1905. ericarogulski owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) hannahpeter7 is appreciation ranked 409 and made 2 contributions to devRant(developer community) what means hannahpeter7 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of hannahpeter7 is 491 and total post length is 982. hannahpeter7 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jacoboxley593 is appreciation ranked 410 and made 2 contributions to devRant(developer community) what means jacoboxley593 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jacoboxley593 is 845 and total post length is 1690. jacoboxley593 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jeffreygardner is appreciation ranked 411 and made 2 contributions to devRant(developer community) what means jeffreygardner owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jeffreygardner is 834 and total post length is 1668. jeffreygardner owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jodi221 is appreciation ranked 412 and made 2 contributions to devRant(developer community) what means jodi221 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jodi221 is 959 and total post length is 1918. jodi221 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) johnrex2577 is appreciation ranked 413 and made 2 contributions to devRant(developer community) what means johnrex2577 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of johnrex2577 is 961 and total post length is 1922. johnrex2577 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jordanjackson10 is appreciation ranked 414 and made 2 contributions to devRant(developer community) what means jordanjackson10 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jordanjackson10 is 645 and total post length is 1290. jordanjackson10 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) karenlynn is appreciation ranked 415 and made 2 contributions to devRant(developer community) what means karenlynn owns 0.0 percent of contributions on devRant(developer community). The avarage post length of karenlynn is 984 and total post length is 1968. karenlynn owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kelvinalfons is appreciation ranked 416 and made 2 contributions to devRant(developer community) what means kelvinalfons owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kelvinalfons is 405 and total post length is 810. kelvinalfons owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) leahfoster33 is appreciation ranked 417 and made 2 contributions to devRant(developer community) what means leahfoster33 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of leahfoster33 is 455 and total post length is 910. leahfoster33 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) leoramson33 is appreciation ranked 418 and made 2 contributions to devRant(developer community) what means leoramson33 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of leoramson33 is 135 and total post length is 270. leoramson33 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) libbyreyes54 is appreciation ranked 419 and made 2 contributions to devRant(developer community) what means libbyreyes54 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of libbyreyes54 is 974 and total post length is 1948. libbyreyes54 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) masonasher562 is appreciation ranked 420 and made 2 contributions to devRant(developer community) what means masonasher562 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of masonasher562 is 744 and total post length is 1488. masonasher562 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) meddymed is appreciation ranked 421 and made 2 contributions to devRant(developer community) what means meddymed owns 0.0 percent of contributions on devRant(developer community). The avarage post length of meddymed is 993 and total post length is 1986. meddymed owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) michael40 is appreciation ranked 422 and made 2 contributions to devRant(developer community) what means michael40 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of michael40 is 842 and total post length is 1684. michael40 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) murphyaguero is appreciation ranked 423 and made 2 contributions to devRant(developer community) what means murphyaguero owns 0.0 percent of contributions on devRant(developer community). The avarage post length of murphyaguero is 669 and total post length is 1338. murphyaguero owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) natashawilliams is appreciation ranked 424 and made 2 contributions to devRant(developer community) what means natashawilliams owns 0.0 percent of contributions on devRant(developer community). The avarage post length of natashawilliams is 228 and total post length is 456. natashawilliams owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) nexus111 is appreciation ranked 425 and made 2 contributions to devRant(developer community) what means nexus111 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of nexus111 is 411 and total post length is 822. nexus111 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) pameladanny1230 is appreciation ranked 426 and made 2 contributions to devRant(developer community) what means pameladanny1230 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of pameladanny1230 is 523 and total post length is 1046. pameladanny1230 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) patricklucas0 is appreciation ranked 427 and made 2 contributions to devRant(developer community) what means patricklucas0 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of patricklucas0 is 696 and total post length is 1392. patricklucas0 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) printcache is appreciation ranked 428 and made 2 contributions to devRant(developer community) what means printcache owns 0.0 percent of contributions on devRant(developer community). The avarage post length of printcache is 90 and total post length is 180. printcache owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) richardsmith7 is appreciation ranked 429 and made 2 contributions to devRant(developer community) what means richardsmith7 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of richardsmith7 is 519 and total post length is 1038. richardsmith7 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) susan22 is appreciation ranked 430 and made 2 contributions to devRant(developer community) what means susan22 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of susan22 is 493 and total post length is 986. susan22 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) william305 is appreciation ranked 431 and made 2 contributions to devRant(developer community) what means william305 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of william305 is 46 and total post length is 92. william305 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) wizawestley is appreciation ranked 432 and made 2 contributions to devRant(developer community) what means wizawestley owns 0.0 percent of contributions on devRant(developer community). The avarage post length of wizawestley is 684 and total post length is 1368. wizawestley owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Alexclooney13 is appreciation ranked 433 and made 1 contributions to devRant(developer community) what means Alexclooney13 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Alexclooney13 is 965 and total post length is 965. Alexclooney13 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AmyWard is appreciation ranked 434 and made 1 contributions to devRant(developer community) what means AmyWard owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AmyWard is 320 and total post length is 320. AmyWard owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) AndersonCaleb is appreciation ranked 435 and made 1 contributions to devRant(developer community) what means AndersonCaleb owns 0.0 percent of contributions on devRant(developer community). The avarage post length of AndersonCaleb is 696 and total post length is 696. AndersonCaleb owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Avyy is appreciation ranked 436 and made 1 contributions to devRant(developer community) what means Avyy owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Avyy is 26 and total post length is 26. Avyy owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) BURGEmona is appreciation ranked 437 and made 1 contributions to devRant(developer community) what means BURGEmona owns 0.0 percent of contributions on devRant(developer community). The avarage post length of BURGEmona is 784 and total post length is 784. BURGEmona owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Brigittededr is appreciation ranked 438 and made 1 contributions to devRant(developer community) what means Brigittededr owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Brigittededr is 569 and total post length is 569. Brigittededr owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) C0D4 is appreciation ranked 439 and made 1 contributions to devRant(developer community) what means C0D4 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of C0D4 is 140 and total post length is 140. C0D4 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Camillewallace is appreciation ranked 440 and made 1 contributions to devRant(developer community) what means Camillewallace owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Camillewallace is 569 and total post length is 569. Camillewallace owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) CardozoPeggy is appreciation ranked 441 and made 1 contributions to devRant(developer community) what means CardozoPeggy owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CardozoPeggy is 975 and total post length is 975. CardozoPeggy owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Carlaneu is appreciation ranked 442 and made 1 contributions to devRant(developer community) what means Carlaneu owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Carlaneu is 530 and total post length is 530. Carlaneu owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ChaosInHeaven is appreciation ranked 443 and made 1 contributions to devRant(developer community) what means ChaosInHeaven owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ChaosInHeaven is 463 and total post length is 463. ChaosInHeaven owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Charles-Vaughan is appreciation ranked 444 and made 1 contributions to devRant(developer community) what means Charles-Vaughan owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Charles-Vaughan is 798 and total post length is 798. Charles-Vaughan owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Clark2 is appreciation ranked 445 and made 1 contributions to devRant(developer community) what means Clark2 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Clark2 is 536 and total post length is 536. Clark2 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Demonslayerr is appreciation ranked 446 and made 1 contributions to devRant(developer community) what means Demonslayerr owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Demonslayerr is 54 and total post length is 54. Demonslayerr owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) DennisScipio is appreciation ranked 447 and made 1 contributions to devRant(developer community) what means DennisScipio owns 0.0 percent of contributions on devRant(developer community). The avarage post length of DennisScipio is 834 and total post length is 834. DennisScipio owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) EdgarNeal is appreciation ranked 448 and made 1 contributions to devRant(developer community) what means EdgarNeal owns 0.0 percent of contributions on devRant(developer community). The avarage post length of EdgarNeal is 938 and total post length is 938. EdgarNeal owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ElpidaCirillo is appreciation ranked 449 and made 1 contributions to devRant(developer community) what means ElpidaCirillo owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ElpidaCirillo is 609 and total post length is 609. ElpidaCirillo owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) EricLJewett is appreciation ranked 450 and made 1 contributions to devRant(developer community) what means EricLJewett owns 0.0 percent of contributions on devRant(developer community). The avarage post length of EricLJewett is 40 and total post length is 40. EricLJewett owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Fielaposa is appreciation ranked 451 and made 1 contributions to devRant(developer community) what means Fielaposa owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Fielaposa is 22 and total post length is 22. Fielaposa owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Flamestro is appreciation ranked 452 and made 1 contributions to devRant(developer community) what means Flamestro owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Flamestro is 274 and total post length is 274. Flamestro owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FrankDownes is appreciation ranked 453 and made 1 contributions to devRant(developer community) what means FrankDownes owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FrankDownes is 13 and total post length is 13. FrankDownes owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Gaha is appreciation ranked 454 and made 1 contributions to devRant(developer community) what means Gaha owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Gaha is 381 and total post length is 381. Gaha owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) GeorgeWeeks is appreciation ranked 455 and made 1 contributions to devRant(developer community) what means GeorgeWeeks owns 0.0 percent of contributions on devRant(developer community). The avarage post length of GeorgeWeeks is 745 and total post length is 745. GeorgeWeeks owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) JamesMedina is appreciation ranked 456 and made 1 contributions to devRant(developer community) what means JamesMedina owns 0.0 percent of contributions on devRant(developer community). The avarage post length of JamesMedina is 656 and total post length is 656. JamesMedina owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) JanetteSalas is appreciation ranked 457 and made 1 contributions to devRant(developer community) what means JanetteSalas owns 0.0 percent of contributions on devRant(developer community). The avarage post length of JanetteSalas is 838 and total post length is 838. JanetteSalas owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) JaredRuiz is appreciation ranked 458 and made 1 contributions to devRant(developer community) what means JaredRuiz owns 0.0 percent of contributions on devRant(developer community). The avarage post length of JaredRuiz is 654 and total post length is 654. JaredRuiz owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) JeffreyBurke is appreciation ranked 459 and made 1 contributions to devRant(developer community) what means JeffreyBurke owns 0.0 percent of contributions on devRant(developer community). The avarage post length of JeffreyBurke is 597 and total post length is 597. JeffreyBurke owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Joesepherus is appreciation ranked 460 and made 1 contributions to devRant(developer community) what means Joesepherus owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Joesepherus is 15 and total post length is 15. Joesepherus owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) JoseRodriguez is appreciation ranked 461 and made 1 contributions to devRant(developer community) what means JoseRodriguez owns 0.0 percent of contributions on devRant(developer community). The avarage post length of JoseRodriguez is 658 and total post length is 658. JoseRodriguez owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Jwe0619 is appreciation ranked 462 and made 1 contributions to devRant(developer community) what means Jwe0619 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Jwe0619 is 129 and total post length is 129. Jwe0619 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Karlanoemi is appreciation ranked 463 and made 1 contributions to devRant(developer community) what means Karlanoemi owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Karlanoemi is 764 and total post length is 764. Karlanoemi owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) LauraDave33 is appreciation ranked 464 and made 1 contributions to devRant(developer community) what means LauraDave33 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of LauraDave33 is 939 and total post length is 939. LauraDave33 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) MJanne is appreciation ranked 465 and made 1 contributions to devRant(developer community) what means MJanne owns 0.0 percent of contributions on devRant(developer community). The avarage post length of MJanne is 793 and total post length is 793. MJanne owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) MariaNowak is appreciation ranked 466 and made 1 contributions to devRant(developer community) what means MariaNowak owns 0.0 percent of contributions on devRant(developer community). The avarage post length of MariaNowak is 642 and total post length is 642. MariaNowak owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Matthais is appreciation ranked 467 and made 1 contributions to devRant(developer community) what means Matthais owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Matthais is 222 and total post length is 222. Matthais owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) MichaelBryce is appreciation ranked 468 and made 1 contributions to devRant(developer community) what means MichaelBryce owns 0.0 percent of contributions on devRant(developer community). The avarage post length of MichaelBryce is 554 and total post length is 554. MichaelBryce owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) MichelleWeeks is appreciation ranked 469 and made 1 contributions to devRant(developer community) what means MichelleWeeks owns 0.0 percent of contributions on devRant(developer community). The avarage post length of MichelleWeeks is 658 and total post length is 658. MichelleWeeks owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) NeatNerdPrime is appreciation ranked 470 and made 1 contributions to devRant(developer community) what means NeatNerdPrime owns 0.0 percent of contributions on devRant(developer community). The avarage post length of NeatNerdPrime is 98 and total post length is 98. NeatNerdPrime owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) OllieJonas is appreciation ranked 471 and made 1 contributions to devRant(developer community) what means OllieJonas owns 0.0 percent of contributions on devRant(developer community). The avarage post length of OllieJonas is 954 and total post length is 954. OllieJonas owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) OmerFlame is appreciation ranked 472 and made 1 contributions to devRant(developer community) what means OmerFlame owns 0.0 percent of contributions on devRant(developer community). The avarage post length of OmerFlame is 254 and total post length is 254. OmerFlame owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) PepeTheFrog is appreciation ranked 473 and made 1 contributions to devRant(developer community) what means PepeTheFrog owns 0.0 percent of contributions on devRant(developer community). The avarage post length of PepeTheFrog is 81 and total post length is 81. PepeTheFrog owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Phyllismapes is appreciation ranked 474 and made 1 contributions to devRant(developer community) what means Phyllismapes owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Phyllismapes is 53 and total post length is 53. Phyllismapes owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Richardfowler5 is appreciation ranked 475 and made 1 contributions to devRant(developer community) what means Richardfowler5 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Richardfowler5 is 835 and total post length is 835. Richardfowler5 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) RileyChris is appreciation ranked 476 and made 1 contributions to devRant(developer community) what means RileyChris owns 0.0 percent of contributions on devRant(developer community). The avarage post length of RileyChris is 899 and total post length is 899. RileyChris owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) RobertPotter is appreciation ranked 477 and made 1 contributions to devRant(developer community) what means RobertPotter owns 0.0 percent of contributions on devRant(developer community). The avarage post length of RobertPotter is 24 and total post length is 24. RobertPotter owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Roths is appreciation ranked 478 and made 1 contributions to devRant(developer community) what means Roths owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Roths is 421 and total post length is 421. Roths owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Shacham6 is appreciation ranked 479 and made 1 contributions to devRant(developer community) what means Shacham6 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Shacham6 is 453 and total post length is 453. Shacham6 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Strawberry1102 is appreciation ranked 480 and made 1 contributions to devRant(developer community) what means Strawberry1102 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Strawberry1102 is 430 and total post length is 430. Strawberry1102 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Tasperen is appreciation ranked 481 and made 1 contributions to devRant(developer community) what means Tasperen owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Tasperen is 45 and total post length is 45. Tasperen owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Thiago791 is appreciation ranked 482 and made 1 contributions to devRant(developer community) what means Thiago791 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Thiago791 is 12 and total post length is 12. Thiago791 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Weon is appreciation ranked 483 and made 1 contributions to devRant(developer community) what means Weon owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Weon is 103 and total post length is 103. Weon owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Zebbyeric is appreciation ranked 484 and made 1 contributions to devRant(developer community) what means Zebbyeric owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Zebbyeric is 80 and total post length is 80. Zebbyeric owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) addyluis2 is appreciation ranked 485 and made 1 contributions to devRant(developer community) what means addyluis2 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of addyluis2 is 581 and total post length is 581. addyluis2 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) andrew24890 is appreciation ranked 486 and made 1 contributions to devRant(developer community) what means andrew24890 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of andrew24890 is 766 and total post length is 766. andrew24890 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) andrewbutler310 is appreciation ranked 487 and made 1 contributions to devRant(developer community) what means andrewbutler310 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of andrewbutler310 is 700 and total post length is 700. andrewbutler310 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) arekxv is appreciation ranked 488 and made 1 contributions to devRant(developer community) what means arekxv owns 0.0 percent of contributions on devRant(developer community). The avarage post length of arekxv is 19 and total post length is 19. arekxv owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) artemkornilov is appreciation ranked 489 and made 1 contributions to devRant(developer community) what means artemkornilov owns 0.0 percent of contributions on devRant(developer community). The avarage post length of artemkornilov is 961 and total post length is 961. artemkornilov owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) betewilson is appreciation ranked 490 and made 1 contributions to devRant(developer community) what means betewilson owns 0.0 percent of contributions on devRant(developer community). The avarage post length of betewilson is 838 and total post length is 838. betewilson owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) bettyantony is appreciation ranked 491 and made 1 contributions to devRant(developer community) what means bettyantony owns 0.0 percent of contributions on devRant(developer community). The avarage post length of bettyantony is 527 and total post length is 527. bettyantony owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) bettygray is appreciation ranked 492 and made 1 contributions to devRant(developer community) what means bettygray owns 0.0 percent of contributions on devRant(developer community). The avarage post length of bettygray is 749 and total post length is 749. bettygray owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) blessing1121 is appreciation ranked 493 and made 1 contributions to devRant(developer community) what means blessing1121 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of blessing1121 is 354 and total post length is 354. blessing1121 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) bostonfern is appreciation ranked 494 and made 1 contributions to devRant(developer community) what means bostonfern owns 0.0 percent of contributions on devRant(developer community). The avarage post length of bostonfern is 171 and total post length is 171. bostonfern owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) clarkanderson is appreciation ranked 495 and made 1 contributions to devRant(developer community) what means clarkanderson owns 0.0 percent of contributions on devRant(developer community). The avarage post length of clarkanderson is 611 and total post length is 611. clarkanderson owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) connormon is appreciation ranked 496 and made 1 contributions to devRant(developer community) what means connormon owns 0.0 percent of contributions on devRant(developer community). The avarage post length of connormon is 103 and total post length is 103. connormon owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) cooperjn is appreciation ranked 497 and made 1 contributions to devRant(developer community) what means cooperjn owns 0.0 percent of contributions on devRant(developer community). The avarage post length of cooperjn is 417 and total post length is 417. cooperjn owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) coreykelley is appreciation ranked 498 and made 1 contributions to devRant(developer community) what means coreykelley owns 0.0 percent of contributions on devRant(developer community). The avarage post length of coreykelley is 214 and total post length is 214. coreykelley owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) craigellman2 is appreciation ranked 499 and made 1 contributions to devRant(developer community) what means craigellman2 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of craigellman2 is 889 and total post length is 889. craigellman2 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) cynthiafred778 is appreciation ranked 500 and made 1 contributions to devRant(developer community) what means cynthiafred778 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of cynthiafred778 is 766 and total post length is 766. cynthiafred778 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) dalotmartinez is appreciation ranked 501 and made 1 contributions to devRant(developer community) what means dalotmartinez owns 0.0 percent of contributions on devRant(developer community). The avarage post length of dalotmartinez is 812 and total post length is 812. dalotmartinez owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) davidmuir2901 is appreciation ranked 502 and made 1 contributions to devRant(developer community) what means davidmuir2901 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of davidmuir2901 is 517 and total post length is 517. davidmuir2901 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) dbeverly is appreciation ranked 503 and made 1 contributions to devRant(developer community) what means dbeverly owns 0.0 percent of contributions on devRant(developer community). The avarage post length of dbeverly is 865 and total post length is 865. dbeverly owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) debbyklein is appreciation ranked 504 and made 1 contributions to devRant(developer community) what means debbyklein owns 0.0 percent of contributions on devRant(developer community). The avarage post length of debbyklein is 980 and total post length is 980. debbyklein owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) dennisto12 is appreciation ranked 505 and made 1 contributions to devRant(developer community) what means dennisto12 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of dennisto12 is 7 and total post length is 7. dennisto12 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) devemperor is appreciation ranked 506 and made 1 contributions to devRant(developer community) what means devemperor owns 0.0 percent of contributions on devRant(developer community). The avarage post length of devemperor is 83 and total post length is 83. devemperor owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) diegolola is appreciation ranked 507 and made 1 contributions to devRant(developer community) what means diegolola owns 0.0 percent of contributions on devRant(developer community). The avarage post length of diegolola is 608 and total post length is 608. diegolola owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) djeddiej is appreciation ranked 508 and made 1 contributions to devRant(developer community) what means djeddiej owns 0.0 percent of contributions on devRant(developer community). The avarage post length of djeddiej is 75 and total post length is 75. djeddiej owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) dubacca is appreciation ranked 509 and made 1 contributions to devRant(developer community) what means dubacca owns 0.0 percent of contributions on devRant(developer community). The avarage post length of dubacca is 356 and total post length is 356. dubacca owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) efeil is appreciation ranked 510 and made 1 contributions to devRant(developer community) what means efeil owns 0.0 percent of contributions on devRant(developer community). The avarage post length of efeil is 609 and total post length is 609. efeil owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) elizabethdurham is appreciation ranked 511 and made 1 contributions to devRant(developer community) what means elizabethdurham owns 0.0 percent of contributions on devRant(developer community). The avarage post length of elizabethdurham is 834 and total post length is 834. elizabethdurham owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) elvinchoonsiong is appreciation ranked 512 and made 1 contributions to devRant(developer community) what means elvinchoonsiong owns 0.0 percent of contributions on devRant(developer community). The avarage post length of elvinchoonsiong is 744 and total post length is 744. elvinchoonsiong owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) emmaoliviagab is appreciation ranked 513 and made 1 contributions to devRant(developer community) what means emmaoliviagab owns 0.0 percent of contributions on devRant(developer community). The avarage post length of emmaoliviagab is 814 and total post length is 814. emmaoliviagab owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) expertcoder400 is appreciation ranked 514 and made 1 contributions to devRant(developer community) what means expertcoder400 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of expertcoder400 is 98 and total post length is 98. expertcoder400 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) franklinnewton1 is appreciation ranked 515 and made 1 contributions to devRant(developer community) what means franklinnewton1 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of franklinnewton1 is 135 and total post length is 135. franklinnewton1 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) georgiatodd55 is appreciation ranked 516 and made 1 contributions to devRant(developer community) what means georgiatodd55 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of georgiatodd55 is 515 and total post length is 515. georgiatodd55 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) giulianocattane is appreciation ranked 517 and made 1 contributions to devRant(developer community) what means giulianocattane owns 0.0 percent of contributions on devRant(developer community). The avarage post length of giulianocattane is 650 and total post length is 650. giulianocattane owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) h3xd is appreciation ranked 518 and made 1 contributions to devRant(developer community) what means h3xd owns 0.0 percent of contributions on devRant(developer community). The avarage post length of h3xd is 124 and total post length is 124. h3xd owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) hampton26 is appreciation ranked 519 and made 1 contributions to devRant(developer community) what means hampton26 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of hampton26 is 744 and total post length is 744. hampton26 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) hawkinsedwin89 is appreciation ranked 520 and made 1 contributions to devRant(developer community) what means hawkinsedwin89 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of hawkinsedwin89 is 291 and total post length is 291. hawkinsedwin89 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) helenazdenova is appreciation ranked 521 and made 1 contributions to devRant(developer community) what means helenazdenova owns 0.0 percent of contributions on devRant(developer community). The avarage post length of helenazdenova is 982 and total post length is 982. helenazdenova owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) hightower is appreciation ranked 522 and made 1 contributions to devRant(developer community) what means hightower owns 0.0 percent of contributions on devRant(developer community). The avarage post length of hightower is 194 and total post length is 194. hightower owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) hildebrando33 is appreciation ranked 523 and made 1 contributions to devRant(developer community) what means hildebrando33 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of hildebrando33 is 655 and total post length is 655. hildebrando33 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) hussein56 is appreciation ranked 524 and made 1 contributions to devRant(developer community) what means hussein56 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of hussein56 is 74 and total post length is 74. hussein56 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jace7384 is appreciation ranked 525 and made 1 contributions to devRant(developer community) what means jace7384 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jace7384 is 5 and total post length is 5. jace7384 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jacobhappy822 is appreciation ranked 526 and made 1 contributions to devRant(developer community) what means jacobhappy822 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jacobhappy822 is 829 and total post length is 829. jacobhappy822 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jamesdalot30 is appreciation ranked 527 and made 1 contributions to devRant(developer community) what means jamesdalot30 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jamesdalot30 is 656 and total post length is 656. jamesdalot30 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jeeper is appreciation ranked 528 and made 1 contributions to devRant(developer community) what means jeeper owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jeeper is 86 and total post length is 86. jeeper owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jenniferselena is appreciation ranked 529 and made 1 contributions to devRant(developer community) what means jenniferselena owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jenniferselena is 499 and total post length is 499. jenniferselena owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jennyblakes3219 is appreciation ranked 530 and made 1 contributions to devRant(developer community) what means jennyblakes3219 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jennyblakes3219 is 261 and total post length is 261. jennyblakes3219 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jennyscott22116 is appreciation ranked 531 and made 1 contributions to devRant(developer community) what means jennyscott22116 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jennyscott22116 is 986 and total post length is 986. jennyscott22116 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jeolleonard1122 is appreciation ranked 532 and made 1 contributions to devRant(developer community) what means jeolleonard1122 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jeolleonard1122 is 547 and total post length is 547. jeolleonard1122 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jessicacain197 is appreciation ranked 533 and made 1 contributions to devRant(developer community) what means jessicacain197 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jessicacain197 is 624 and total post length is 624. jessicacain197 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jimmysmith0917 is appreciation ranked 534 and made 1 contributions to devRant(developer community) what means jimmysmith0917 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jimmysmith0917 is 735 and total post length is 735. jimmysmith0917 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) johnsonella2208 is appreciation ranked 535 and made 1 contributions to devRant(developer community) what means johnsonella2208 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of johnsonella2208 is 308 and total post length is 308. johnsonella2208 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jordanphilip34 is appreciation ranked 536 and made 1 contributions to devRant(developer community) what means jordanphilip34 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jordanphilip34 is 316 and total post length is 316. jordanphilip34 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) katbreitin is appreciation ranked 537 and made 1 contributions to devRant(developer community) what means katbreitin owns 0.0 percent of contributions on devRant(developer community). The avarage post length of katbreitin is 45 and total post length is 45. katbreitin owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kendrickm is appreciation ranked 538 and made 1 contributions to devRant(developer community) what means kendrickm owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kendrickm is 847 and total post length is 847. kendrickm owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kenwalker0992 is appreciation ranked 539 and made 1 contributions to devRant(developer community) what means kenwalker0992 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kenwalker0992 is 398 and total post length is 398. kenwalker0992 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kienkhongngu is appreciation ranked 540 and made 1 contributions to devRant(developer community) what means kienkhongngu owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kienkhongngu is 35 and total post length is 35. kienkhongngu owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kingwebb is appreciation ranked 541 and made 1 contributions to devRant(developer community) what means kingwebb owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kingwebb is 705 and total post length is 705. kingwebb owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) kirk949 is appreciation ranked 542 and made 1 contributions to devRant(developer community) what means kirk949 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kirk949 is 634 and total post length is 634. kirk949 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) knerd is appreciation ranked 543 and made 1 contributions to devRant(developer community) what means knerd owns 0.0 percent of contributions on devRant(developer community). The avarage post length of knerd is 32 and total post length is 32. knerd owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) koceans641 is appreciation ranked 544 and made 1 contributions to devRant(developer community) what means koceans641 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of koceans641 is 862 and total post length is 862. koceans641 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) lanting64 is appreciation ranked 545 and made 1 contributions to devRant(developer community) what means lanting64 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of lanting64 is 982 and total post length is 982. lanting64 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) liliiavyshnska is appreciation ranked 546 and made 1 contributions to devRant(developer community) what means liliiavyshnska owns 0.0 percent of contributions on devRant(developer community). The avarage post length of liliiavyshnska is 982 and total post length is 982. liliiavyshnska owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) lilycollins9x is appreciation ranked 547 and made 1 contributions to devRant(developer community) what means lilycollins9x owns 0.0 percent of contributions on devRant(developer community). The avarage post length of lilycollins9x is 382 and total post length is 382. lilycollins9x owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) linda467 is appreciation ranked 548 and made 1 contributions to devRant(developer community) what means linda467 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of linda467 is 971 and total post length is 971. linda467 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) llm223816 is appreciation ranked 549 and made 1 contributions to devRant(developer community) what means llm223816 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of llm223816 is 646 and total post length is 646. llm223816 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) manuchojose76 is appreciation ranked 550 and made 1 contributions to devRant(developer community) what means manuchojose76 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of manuchojose76 is 144 and total post length is 144. manuchojose76 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) marcushenderson is appreciation ranked 551 and made 1 contributions to devRant(developer community) what means marcushenderson owns 0.0 percent of contributions on devRant(developer community). The avarage post length of marcushenderson is 461 and total post length is 461. marcushenderson owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) marcussandford1 is appreciation ranked 552 and made 1 contributions to devRant(developer community) what means marcussandford1 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of marcussandford1 is 989 and total post length is 989. marcussandford1 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) margaret12 is appreciation ranked 553 and made 1 contributions to devRant(developer community) what means margaret12 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of margaret12 is 637 and total post length is 637. margaret12 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) mariasosnowska is appreciation ranked 554 and made 1 contributions to devRant(developer community) what means mariasosnowska owns 0.0 percent of contributions on devRant(developer community). The avarage post length of mariasosnowska is 911 and total post length is 911. mariasosnowska owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) marlenenorm270 is appreciation ranked 555 and made 1 contributions to devRant(developer community) what means marlenenorm270 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of marlenenorm270 is 459 and total post length is 459. marlenenorm270 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) martinezdiolo2 is appreciation ranked 556 and made 1 contributions to devRant(developer community) what means martinezdiolo2 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of martinezdiolo2 is 565 and total post length is 565. martinezdiolo2 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) mathias1 is appreciation ranked 557 and made 1 contributions to devRant(developer community) what means mathias1 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of mathias1 is 738 and total post length is 738. mathias1 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) maximeden6 is appreciation ranked 558 and made 1 contributions to devRant(developer community) what means maximeden6 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of maximeden6 is 681 and total post length is 681. maximeden6 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) meapatrick767 is appreciation ranked 559 and made 1 contributions to devRant(developer community) what means meapatrick767 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of meapatrick767 is 665 and total post length is 665. meapatrick767 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) melissa215 is appreciation ranked 560 and made 1 contributions to devRant(developer community) what means melissa215 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of melissa215 is 870 and total post length is 870. melissa215 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) naavasmolash123 is appreciation ranked 561 and made 1 contributions to devRant(developer community) what means naavasmolash123 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of naavasmolash123 is 685 and total post length is 685. naavasmolash123 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) natalienate is appreciation ranked 562 and made 1 contributions to devRant(developer community) what means natalienate owns 0.0 percent of contributions on devRant(developer community). The avarage post length of natalienate is 11 and total post length is 11. natalienate owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) neriald is appreciation ranked 563 and made 1 contributions to devRant(developer community) what means neriald owns 0.0 percent of contributions on devRant(developer community). The avarage post length of neriald is 32 and total post length is 32. neriald owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) nishantrana is appreciation ranked 564 and made 1 contributions to devRant(developer community) what means nishantrana owns 0.0 percent of contributions on devRant(developer community). The avarage post length of nishantrana is 18 and total post length is 18. nishantrana owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) nitnip is appreciation ranked 565 and made 1 contributions to devRant(developer community) what means nitnip owns 0.0 percent of contributions on devRant(developer community). The avarage post length of nitnip is 130 and total post length is 130. nitnip owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) no-spam2351 is appreciation ranked 566 and made 1 contributions to devRant(developer community) what means no-spam2351 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of no-spam2351 is 656 and total post length is 656. no-spam2351 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) officemanagem is appreciation ranked 567 and made 1 contributions to devRant(developer community) what means officemanagem owns 0.0 percent of contributions on devRant(developer community). The avarage post length of officemanagem is 900 and total post length is 900. officemanagem owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) ootwhere is appreciation ranked 568 and made 1 contributions to devRant(developer community) what means ootwhere owns 0.0 percent of contributions on devRant(developer community). The avarage post length of ootwhere is 52 and total post length is 52. ootwhere owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) owen56yus is appreciation ranked 569 and made 1 contributions to devRant(developer community) what means owen56yus owns 0.0 percent of contributions on devRant(developer community). The avarage post length of owen56yus is 959 and total post length is 959. owen56yus owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) patricia1009 is appreciation ranked 570 and made 1 contributions to devRant(developer community) what means patricia1009 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of patricia1009 is 568 and total post length is 568. patricia1009 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) pedro147 is appreciation ranked 571 and made 1 contributions to devRant(developer community) what means pedro147 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of pedro147 is 424 and total post length is 424. pedro147 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) peggy9090 is appreciation ranked 572 and made 1 contributions to devRant(developer community) what means peggy9090 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of peggy9090 is 993 and total post length is 993. peggy9090 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) piperluna is appreciation ranked 573 and made 1 contributions to devRant(developer community) what means piperluna owns 0.0 percent of contributions on devRant(developer community). The avarage post length of piperluna is 211 and total post length is 211. piperluna owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) platypus is appreciation ranked 574 and made 1 contributions to devRant(developer community) what means platypus owns 0.0 percent of contributions on devRant(developer community). The avarage post length of platypus is 69 and total post length is 69. platypus owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) privatewallet is appreciation ranked 575 and made 1 contributions to devRant(developer community) what means privatewallet owns 0.0 percent of contributions on devRant(developer community). The avarage post length of privatewallet is 407 and total post length is 407. privatewallet owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) racheldavis66 is appreciation ranked 576 and made 1 contributions to devRant(developer community) what means racheldavis66 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of racheldavis66 is 789 and total post length is 789. racheldavis66 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) robertjames99 is appreciation ranked 577 and made 1 contributions to devRant(developer community) what means robertjames99 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of robertjames99 is 376 and total post length is 376. robertjames99 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) robertpeterson is appreciation ranked 578 and made 1 contributions to devRant(developer community) what means robertpeterson owns 0.0 percent of contributions on devRant(developer community). The avarage post length of robertpeterson is 886 and total post length is 886. robertpeterson owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sabrinajam is appreciation ranked 579 and made 1 contributions to devRant(developer community) what means sabrinajam owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sabrinajam is 63 and total post length is 63. sabrinajam owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sams3piol is appreciation ranked 580 and made 1 contributions to devRant(developer community) what means sams3piol owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sams3piol is 35 and total post length is 35. sams3piol owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) santimoleiro is appreciation ranked 581 and made 1 contributions to devRant(developer community) what means santimoleiro owns 0.0 percent of contributions on devRant(developer community). The avarage post length of santimoleiro is 770 and total post length is 770. santimoleiro owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) scotthary56 is appreciation ranked 582 and made 1 contributions to devRant(developer community) what means scotthary56 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of scotthary56 is 782 and total post length is 782. scotthary56 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) shanaelliot12 is appreciation ranked 583 and made 1 contributions to devRant(developer community) what means shanaelliot12 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of shanaelliot12 is 684 and total post length is 684. shanaelliot12 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sharon11 is appreciation ranked 584 and made 1 contributions to devRant(developer community) what means sharon11 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sharon11 is 686 and total post length is 686. sharon11 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sherin12 is appreciation ranked 585 and made 1 contributions to devRant(developer community) what means sherin12 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sherin12 is 567 and total post length is 567. sherin12 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sonmaria6 is appreciation ranked 586 and made 1 contributions to devRant(developer community) what means sonmaria6 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sonmaria6 is 886 and total post length is 886. sonmaria6 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) stasiarex3 is appreciation ranked 587 and made 1 contributions to devRant(developer community) what means stasiarex3 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of stasiarex3 is 637 and total post length is 637. stasiarex3 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) stefaniedaene is appreciation ranked 588 and made 1 contributions to devRant(developer community) what means stefaniedaene owns 0.0 percent of contributions on devRant(developer community). The avarage post length of stefaniedaene is 502 and total post length is 502. stefaniedaene owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) susanweather1 is appreciation ranked 589 and made 1 contributions to devRant(developer community) what means susanweather1 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of susanweather1 is 138 and total post length is 138. susanweather1 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) tavivulcan8 is appreciation ranked 590 and made 1 contributions to devRant(developer community) what means tavivulcan8 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of tavivulcan8 is 937 and total post length is 937. tavivulcan8 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) therealmsjade is appreciation ranked 591 and made 1 contributions to devRant(developer community) what means therealmsjade owns 0.0 percent of contributions on devRant(developer community). The avarage post length of therealmsjade is 985 and total post length is 985. therealmsjade owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) thjanice74 is appreciation ranked 592 and made 1 contributions to devRant(developer community) what means thjanice74 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of thjanice74 is 967 and total post length is 967. thjanice74 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) timothyferriss is appreciation ranked 593 and made 1 contributions to devRant(developer community) what means timothyferriss owns 0.0 percent of contributions on devRant(developer community). The avarage post length of timothyferriss is 252 and total post length is 252. timothyferriss owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) valentinam is appreciation ranked 594 and made 1 contributions to devRant(developer community) what means valentinam owns 0.0 percent of contributions on devRant(developer community). The avarage post length of valentinam is 929 and total post length is 929. valentinam owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) validus is appreciation ranked 595 and made 1 contributions to devRant(developer community) what means validus owns 0.0 percent of contributions on devRant(developer community). The avarage post length of validus is 3 and total post length is 3. validus owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) vaughnteague9 is appreciation ranked 596 and made 1 contributions to devRant(developer community) what means vaughnteague9 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of vaughnteague9 is 679 and total post length is 679. vaughnteague9 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) vokictetteh is appreciation ranked 597 and made 1 contributions to devRant(developer community) what means vokictetteh owns 0.0 percent of contributions on devRant(developer community). The avarage post length of vokictetteh is 693 and total post length is 693. vokictetteh owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) webketje is appreciation ranked 598 and made 1 contributions to devRant(developer community) what means webketje owns 0.0 percent of contributions on devRant(developer community). The avarage post length of webketje is 47 and total post length is 47. webketje owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) williammacron is appreciation ranked 599 and made 1 contributions to devRant(developer community) what means williammacron owns 0.0 percent of contributions on devRant(developer community). The avarage post length of williammacron is 951 and total post length is 951. williammacron owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) yasuocidal is appreciation ranked 600 and made 1 contributions to devRant(developer community) what means yasuocidal owns 0.0 percent of contributions on devRant(developer community). The avarage post length of yasuocidal is 179 and total post length is 179. yasuocidal owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) yemploy is appreciation ranked 601 and made 1 contributions to devRant(developer community) what means yemploy owns 0.0 percent of contributions on devRant(developer community). The avarage post length of yemploy is 36 and total post length is 36. yemploy owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) SerenityHessel is appreciation ranked 602 and made 6 contributions to devRant(developer community) what means SerenityHessel owns 0.0 percent of contributions on devRant(developer community). The avarage post length of SerenityHessel is 32 and total post length is 196. SerenityHessel owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) sidthepajfuk is appreciation ranked 603 and made 7 contributions to devRant(developer community) what means sidthepajfuk owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sidthepajfuk is 67 and total post length is 474. sidthepajfuk owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) chrisdave978 is appreciation ranked 604 and made 3 contributions to devRant(developer community) what means chrisdave978 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of chrisdave978 is 147 and total post length is 441. chrisdave978 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) Anderamarry is appreciation ranked 605 and made 1 contributions to devRant(developer community) what means Anderamarry owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Anderamarry is 632 and total post length is 632. Anderamarry owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) EricWinter is appreciation ranked 606 and made 1 contributions to devRant(developer community) what means EricWinter owns 0.0 percent of contributions on devRant(developer community). The avarage post length of EricWinter is 12 and total post length is 12. EricWinter owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) FloresOrland is appreciation ranked 607 and made 1 contributions to devRant(developer community) what means FloresOrland owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FloresOrland is 476 and total post length is 476. FloresOrland owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) MatthewLawrence is appreciation ranked 608 and made 1 contributions to devRant(developer community) what means MatthewLawrence owns 0.0 percent of contributions on devRant(developer community). The avarage post length of MatthewLawrence is 915 and total post length is 915. MatthewLawrence owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) RogerAltenwerth is appreciation ranked 609 and made 1 contributions to devRant(developer community) what means RogerAltenwerth owns 0.0 percent of contributions on devRant(developer community). The avarage post length of RogerAltenwerth is 22 and total post length is 22. RogerAltenwerth owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) birenderkumar20 is appreciation ranked 610 and made 1 contributions to devRant(developer community) what means birenderkumar20 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of birenderkumar20 is 788 and total post length is 788. birenderkumar20 owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) certecignu is appreciation ranked 611 and made 1 contributions to devRant(developer community) what means certecignu owns 0.0 percent of contributions on devRant(developer community). The avarage post length of certecignu is 788 and total post length is 788. certecignu owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) felixreese is appreciation ranked 612 and made 1 contributions to devRant(developer community) what means felixreese owns 0.0 percent of contributions on devRant(developer community). The avarage post length of felixreese is 637 and total post length is 637. felixreese owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) freddiearchie is appreciation ranked 613 and made 1 contributions to devRant(developer community) what means freddiearchie owns 0.0 percent of contributions on devRant(developer community). The avarage post length of freddiearchie is 663 and total post length is 663. freddiearchie owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) jenn-gormley is appreciation ranked 614 and made 1 contributions to devRant(developer community) what means jenn-gormley owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jenn-gormley is 370 and total post length is 370. jenn-gormley owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) maquirelinda is appreciation ranked 615 and made 1 contributions to devRant(developer community) what means maquirelinda owns 0.0 percent of contributions on devRant(developer community). The avarage post length of maquirelinda is 944 and total post length is 944. maquirelinda owns 0.0 percent of content on devRant(developer community).
|
||||
===Statistics: User(ranter) miajackson1117 is appreciation ranked 616 and made 1 contributions to devRant(developer community) what means miajackson1117 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of miajackson1117 is 5 and total post length is 5. miajackson1117 owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) IHateForALiving made 228 contributions to devRant(developer community) what means IHateForALiving owns 0.45 percent of contributions on devRant(developer community). The avarage post length of IHateForALiving is 408.06140350877195 and total post length is 93038. IHateForALiving owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) jiraTicket made 1 contributions to devRant(developer community) what means jiraTicket owns 0.0 percent of contributions on devRant(developer community). The avarage post length of jiraTicket is 149 and total post length is 149. jiraTicket owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) evertiro made 1 contributions to devRant(developer community) what means evertiro owns 0.0 percent of contributions on devRant(developer community). The avarage post length of evertiro is 66 and total post length is 66. evertiro owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) kamen made 4 contributions to devRant(developer community) what means kamen owns 0.01 percent of contributions on devRant(developer community). The avarage post length of kamen is 71 and total post length is 286. kamen owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) CaptainRant made 2 contributions to devRant(developer community) what means CaptainRant owns 0.0 percent of contributions on devRant(developer community). The avarage post length of CaptainRant is 170 and total post length is 341. CaptainRant owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) nemetepst made 2 contributions to devRant(developer community) what means nemetepst owns 0.0 percent of contributions on devRant(developer community). The avarage post length of nemetepst is 394 and total post length is 789. nemetepst owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Hazarth made 18 contributions to devRant(developer community) what means Hazarth owns 0.04 percent of contributions on devRant(developer community). The avarage post length of Hazarth is 236 and total post length is 4265. Hazarth owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) magicMirror made 3 contributions to devRant(developer community) what means magicMirror owns 0.01 percent of contributions on devRant(developer community). The avarage post length of magicMirror is 141 and total post length is 424. magicMirror owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) cafecortado made 23 contributions to devRant(developer community) what means cafecortado owns 0.05 percent of contributions on devRant(developer community). The avarage post length of cafecortado is 51 and total post length is 1174. cafecortado owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) ScriptCoded made 9 contributions to devRant(developer community) what means ScriptCoded owns 0.02 percent of contributions on devRant(developer community). The avarage post length of ScriptCoded is 96 and total post length is 864. ScriptCoded owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) cb219 made 1 contributions to devRant(developer community) what means cb219 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of cb219 is 77 and total post length is 77. cb219 owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Root made 19 contributions to devRant(developer community) what means Root owns 0.04 percent of contributions on devRant(developer community). The avarage post length of Root is 258 and total post length is 4910. Root owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) spongessuck made 13 contributions to devRant(developer community) what means spongessuck owns 0.03 percent of contributions on devRant(developer community). The avarage post length of spongessuck is 90 and total post length is 1181. spongessuck owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) dissolvedgirl made 5 contributions to devRant(developer community) what means dissolvedgirl owns 0.01 percent of contributions on devRant(developer community). The avarage post length of dissolvedgirl is 291 and total post length is 1458. dissolvedgirl owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) darksideofyay made 2 contributions to devRant(developer community) what means darksideofyay owns 0.0 percent of contributions on devRant(developer community). The avarage post length of darksideofyay is 37 and total post length is 75. darksideofyay owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Lensflare made 87 contributions to devRant(developer community) what means Lensflare owns 0.17 percent of contributions on devRant(developer community). The avarage post length of Lensflare is 73 and total post length is 6361. Lensflare owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Liebranca made 26 contributions to devRant(developer community) what means Liebranca owns 0.05 percent of contributions on devRant(developer community). The avarage post length of Liebranca is 336 and total post length is 8756. Liebranca owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) D-4got10-01 made 8 contributions to devRant(developer community) what means D-4got10-01 owns 0.02 percent of contributions on devRant(developer community). The avarage post length of D-4got10-01 is 192 and total post length is 1543. D-4got10-01 owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) theranter made 4 contributions to devRant(developer community) what means theranter owns 0.01 percent of contributions on devRant(developer community). The avarage post length of theranter is 89 and total post length is 359. theranter owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) donkulator made 48 contributions to devRant(developer community) what means donkulator owns 0.1 percent of contributions on devRant(developer community). The avarage post length of donkulator is 124 and total post length is 5972. donkulator owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) atheist made 34 contributions to devRant(developer community) what means atheist owns 0.07 percent of contributions on devRant(developer community). The avarage post length of atheist is 145 and total post length is 4961. atheist owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) 12bitfloat made 67 contributions to devRant(developer community) what means 12bitfloat owns 0.13 percent of contributions on devRant(developer community). The avarage post length of 12bitfloat is 149 and total post length is 10024. 12bitfloat owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) lorentz made 39 contributions to devRant(developer community) what means lorentz owns 0.08 percent of contributions on devRant(developer community). The avarage post length of lorentz is 230 and total post length is 9001. lorentz owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) CoreFusionX made 14 contributions to devRant(developer community) what means CoreFusionX owns 0.03 percent of contributions on devRant(developer community). The avarage post length of CoreFusionX is 369 and total post length is 5176. CoreFusionX owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Demolishun made 201 contributions to devRant(developer community) what means Demolishun owns 0.4 percent of contributions on devRant(developer community). The avarage post length of Demolishun is 168 and total post length is 33926. Demolishun owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) SidTheITGuy made 13 contributions to devRant(developer community) what means SidTheITGuy owns 0.03 percent of contributions on devRant(developer community). The avarage post length of SidTheITGuy is 150 and total post length is 1953. SidTheITGuy owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) cuddlyogre made 10 contributions to devRant(developer community) what means cuddlyogre owns 0.02 percent of contributions on devRant(developer community). The avarage post length of cuddlyogre is 224 and total post length is 2247. cuddlyogre owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) galena made 6 contributions to devRant(developer community) what means galena owns 0.01 percent of contributions on devRant(developer community). The avarage post length of galena is 143 and total post length is 860. galena owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) elfo made 5 contributions to devRant(developer community) what means elfo owns 0.01 percent of contributions on devRant(developer community). The avarage post length of elfo is 32 and total post length is 160. elfo owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) kinu made 5 contributions to devRant(developer community) what means kinu owns 0.01 percent of contributions on devRant(developer community). The avarage post length of kinu is 207 and total post length is 1038. kinu owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) TrayKnots made 4 contributions to devRant(developer community) what means TrayKnots owns 0.01 percent of contributions on devRant(developer community). The avarage post length of TrayKnots is 349 and total post length is 1396. TrayKnots owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Maryam6778 made 1 contributions to devRant(developer community) what means Maryam6778 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Maryam6778 is 405 and total post length is 405. Maryam6778 owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Tasperen made 1 contributions to devRant(developer community) what means Tasperen owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Tasperen is 45 and total post length is 45. Tasperen owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) cotetowemixx made 1 contributions to devRant(developer community) what means cotetowemixx owns 0.0 percent of contributions on devRant(developer community). The avarage post length of cotetowemixx is 266 and total post length is 266. cotetowemixx owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) iSwimInTheC made 1 contributions to devRant(developer community) what means iSwimInTheC owns 0.0 percent of contributions on devRant(developer community). The avarage post length of iSwimInTheC is 268 and total post length is 268. iSwimInTheC owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) electrineer made 11 contributions to devRant(developer community) what means electrineer owns 0.02 percent of contributions on devRant(developer community). The avarage post length of electrineer is 39 and total post length is 431. electrineer owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) AceDev made 7 contributions to devRant(developer community) what means AceDev owns 0.01 percent of contributions on devRant(developer community). The avarage post length of AceDev is 45 and total post length is 316. AceDev owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) netikras made 21 contributions to devRant(developer community) what means netikras owns 0.04 percent of contributions on devRant(developer community). The avarage post length of netikras is 167 and total post length is 3516. netikras owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) ars1 made 8 contributions to devRant(developer community) what means ars1 owns 0.02 percent of contributions on devRant(developer community). The avarage post length of ars1 is 87 and total post length is 696. ars1 owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) bazmd made 79 contributions to devRant(developer community) what means bazmd owns 0.16 percent of contributions on devRant(developer community). The avarage post length of bazmd is 154 and total post length is 12213. bazmd owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) JsonBoa made 7 contributions to devRant(developer community) what means JsonBoa owns 0.01 percent of contributions on devRant(developer community). The avarage post length of JsonBoa is 269 and total post length is 1884. JsonBoa owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Ranchonyx made 20 contributions to devRant(developer community) what means Ranchonyx owns 0.04 percent of contributions on devRant(developer community). The avarage post length of Ranchonyx is 56 and total post length is 1129. Ranchonyx owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) tosensei made 49 contributions to devRant(developer community) what means tosensei owns 0.1 percent of contributions on devRant(developer community). The avarage post length of tosensei is 133 and total post length is 6533. tosensei owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) PappyHans made 3 contributions to devRant(developer community) what means PappyHans owns 0.01 percent of contributions on devRant(developer community). The avarage post length of PappyHans is 265 and total post length is 795. PappyHans owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) awesomeest made 3 contributions to devRant(developer community) what means awesomeest owns 0.01 percent of contributions on devRant(developer community). The avarage post length of awesomeest is 872 and total post length is 2617. awesomeest owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) kiki made 41 contributions to devRant(developer community) what means kiki owns 0.08 percent of contributions on devRant(developer community). The avarage post length of kiki is 86 and total post length is 3565. kiki owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) dIREsTRAITS made 8 contributions to devRant(developer community) what means dIREsTRAITS owns 0.02 percent of contributions on devRant(developer community). The avarage post length of dIREsTRAITS is 118 and total post length is 948. dIREsTRAITS owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) feuerherz made 14 contributions to devRant(developer community) what means feuerherz owns 0.03 percent of contributions on devRant(developer community). The avarage post length of feuerherz is 79 and total post length is 1106. feuerherz owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Tounai made 34 contributions to devRant(developer community) what means Tounai owns 0.07 percent of contributions on devRant(developer community). The avarage post length of Tounai is 135 and total post length is 4597. Tounai owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) jestdotty made 203 contributions to devRant(developer community) what means jestdotty owns 0.4 percent of contributions on devRant(developer community). The avarage post length of jestdotty is 341 and total post length is 69275. jestdotty owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Wisecrack made 8 contributions to devRant(developer community) what means Wisecrack owns 0.02 percent of contributions on devRant(developer community). The avarage post length of Wisecrack is 144 and total post length is 1154. Wisecrack owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) We3D made 6 contributions to devRant(developer community) what means We3D owns 0.01 percent of contributions on devRant(developer community). The avarage post length of We3D is 131 and total post length is 786. We3D owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) trekhleb made 2 contributions to devRant(developer community) what means trekhleb owns 0.0 percent of contributions on devRant(developer community). The avarage post length of trekhleb is 188 and total post length is 377. trekhleb owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) vintprox made 2 contributions to devRant(developer community) what means vintprox owns 0.0 percent of contributions on devRant(developer community). The avarage post length of vintprox is 211 and total post length is 422. vintprox owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) devRancid made 11 contributions to devRant(developer community) what means devRancid owns 0.02 percent of contributions on devRant(developer community). The avarage post length of devRancid is 163 and total post length is 1793. devRancid owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) retoor made 505 contributions to devRant(developer community) what means retoor owns 1.0 percent of contributions on devRant(developer community). The avarage post length of retoor is 219 and total post length is 111037. retoor owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Ganofins made 5 contributions to devRant(developer community) what means Ganofins owns 0.01 percent of contributions on devRant(developer community). The avarage post length of Ganofins is 143 and total post length is 719. Ganofins owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) devJs made 5 contributions to devRant(developer community) what means devJs owns 0.01 percent of contributions on devRant(developer community). The avarage post length of devJs is 55 and total post length is 275. devJs owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) lungdart made 23 contributions to devRant(developer community) what means lungdart owns 0.05 percent of contributions on devRant(developer community). The avarage post length of lungdart is 138 and total post length is 3185. lungdart owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Chewbanacas made 6 contributions to devRant(developer community) what means Chewbanacas owns 0.01 percent of contributions on devRant(developer community). The avarage post length of Chewbanacas is 57 and total post length is 345. Chewbanacas owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) sandeepbalan made 3 contributions to devRant(developer community) what means sandeepbalan owns 0.01 percent of contributions on devRant(developer community). The avarage post length of sandeepbalan is 75 and total post length is 227. sandeepbalan owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) AlgoRythm made 26 contributions to devRant(developer community) what means AlgoRythm owns 0.05 percent of contributions on devRant(developer community). The avarage post length of AlgoRythm is 147 and total post length is 3831. AlgoRythm owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) cprn made 43 contributions to devRant(developer community) what means cprn owns 0.09 percent of contributions on devRant(developer community). The avarage post length of cprn is 224 and total post length is 9674. cprn owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) kobenz made 6 contributions to devRant(developer community) what means kobenz owns 0.01 percent of contributions on devRant(developer community). The avarage post length of kobenz is 126 and total post length is 760. kobenz owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Biggy made 3 contributions to devRant(developer community) what means Biggy owns 0.01 percent of contributions on devRant(developer community). The avarage post length of Biggy is 52 and total post length is 156. Biggy owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) superdupernova made 2 contributions to devRant(developer community) what means superdupernova owns 0.0 percent of contributions on devRant(developer community). The avarage post length of superdupernova is 43 and total post length is 87. superdupernova owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Jwe0619 made 1 contributions to devRant(developer community) what means Jwe0619 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Jwe0619 is 129 and total post length is 129. Jwe0619 owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) LianaQK made 1 contributions to devRant(developer community) what means LianaQK owns 0.0 percent of contributions on devRant(developer community). The avarage post length of LianaQK is 364 and total post length is 364. LianaQK owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) PurgeXenos made 1 contributions to devRant(developer community) what means PurgeXenos owns 0.0 percent of contributions on devRant(developer community). The avarage post length of PurgeXenos is 248 and total post length is 248. PurgeXenos owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) alturnativ made 1 contributions to devRant(developer community) what means alturnativ owns 0.0 percent of contributions on devRant(developer community). The avarage post length of alturnativ is 343 and total post length is 343. alturnativ owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) bad-practice made 1 contributions to devRant(developer community) what means bad-practice owns 0.0 percent of contributions on devRant(developer community). The avarage post length of bad-practice is 44 and total post length is 44. bad-practice owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) codePain made 1 contributions to devRant(developer community) what means codePain owns 0.0 percent of contributions on devRant(developer community). The avarage post length of codePain is 118 and total post length is 118. codePain owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) greven644 made 1 contributions to devRant(developer community) what means greven644 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of greven644 is 1 and total post length is 1. greven644 owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) h3rp1d3v made 1 contributions to devRant(developer community) what means h3rp1d3v owns 0.0 percent of contributions on devRant(developer community). The avarage post length of h3rp1d3v is 80 and total post length is 80. h3rp1d3v owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) hritik08725 made 1 contributions to devRant(developer community) what means hritik08725 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of hritik08725 is 302 and total post length is 302. hritik08725 owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) xcodesucks made 1 contributions to devRant(developer community) what means xcodesucks owns 0.0 percent of contributions on devRant(developer community). The avarage post length of xcodesucks is 153 and total post length is 153. xcodesucks owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) antigermgerm made 164 contributions to devRant(developer community) what means antigermgerm owns 0.32 percent of contributions on devRant(developer community). The avarage post length of antigermgerm is 125 and total post length is 20580. antigermgerm owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) AdamOnAir made 12 contributions to devRant(developer community) what means AdamOnAir owns 0.02 percent of contributions on devRant(developer community). The avarage post length of AdamOnAir is 63 and total post length is 762. AdamOnAir owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Grumm made 27 contributions to devRant(developer community) what means Grumm owns 0.05 percent of contributions on devRant(developer community). The avarage post length of Grumm is 237 and total post length is 6421. Grumm owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) nosoup4u made 4 contributions to devRant(developer community) what means nosoup4u owns 0.01 percent of contributions on devRant(developer community). The avarage post length of nosoup4u is 251 and total post length is 1004. nosoup4u owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) TeachMeCode made 7 contributions to devRant(developer community) what means TeachMeCode owns 0.01 percent of contributions on devRant(developer community). The avarage post length of TeachMeCode is 147 and total post length is 1030. TeachMeCode owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) vlord made 3 contributions to devRant(developer community) what means vlord owns 0.01 percent of contributions on devRant(developer community). The avarage post length of vlord is 162 and total post length is 488. vlord owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) chatgpt made 59 contributions to devRant(developer community) what means chatgpt owns 0.12 percent of contributions on devRant(developer community). The avarage post length of chatgpt is 453 and total post length is 26746. chatgpt owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) b2plane made 4 contributions to devRant(developer community) what means b2plane owns 0.01 percent of contributions on devRant(developer community). The avarage post length of b2plane is 87 and total post length is 348. b2plane owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) FuckJava made 2 contributions to devRant(developer community) what means FuckJava owns 0.0 percent of contributions on devRant(developer community). The avarage post length of FuckJava is 55 and total post length is 111. FuckJava owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) isaachackett made 2 contributions to devRant(developer community) what means isaachackett owns 0.0 percent of contributions on devRant(developer community). The avarage post length of isaachackett is 153 and total post length is 306. isaachackett owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) qwwerty made 2 contributions to devRant(developer community) what means qwwerty owns 0.0 percent of contributions on devRant(developer community). The avarage post length of qwwerty is 61 and total post length is 123. qwwerty owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) antigermanist made 5 contributions to devRant(developer community) what means antigermanist owns 0.01 percent of contributions on devRant(developer community). The avarage post length of antigermanist is 120 and total post length is 600. antigermanist owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) asskisser made 5 contributions to devRant(developer community) what means asskisser owns 0.01 percent of contributions on devRant(developer community). The avarage post length of asskisser is 464 and total post length is 2324. asskisser owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) elliotzucker made 2 contributions to devRant(developer community) what means elliotzucker owns 0.0 percent of contributions on devRant(developer community). The avarage post length of elliotzucker is 16 and total post length is 33. elliotzucker owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) n1cK1337 made 2 contributions to devRant(developer community) what means n1cK1337 owns 0.0 percent of contributions on devRant(developer community). The avarage post length of n1cK1337 is 371 and total post length is 742. n1cK1337 owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Mikol made 1 contributions to devRant(developer community) what means Mikol owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Mikol is 642 and total post length is 642. Mikol owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) Pogromist made 1 contributions to devRant(developer community) what means Pogromist owns 0.0 percent of contributions on devRant(developer community). The avarage post length of Pogromist is 58 and total post length is 58. Pogromist owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) TerriToniAX made 1 contributions to devRant(developer community) what means TerriToniAX owns 0.0 percent of contributions on devRant(developer community). The avarage post length of TerriToniAX is 181 and total post length is 181. TerriToniAX owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) arekxv made 1 contributions to devRant(developer community) what means arekxv owns 0.0 percent of contributions on devRant(developer community). The avarage post length of arekxv is 19 and total post length is 19. arekxv owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) asgs made 1 contributions to devRant(developer community) what means asgs owns 0.0 percent of contributions on devRant(developer community). The avarage post length of asgs is 126 and total post length is 126. asgs owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) kienkhongngu made 1 contributions to devRant(developer community) what means kienkhongngu owns 0.0 percent of contributions on devRant(developer community). The avarage post length of kienkhongngu is 35 and total post length is 35. kienkhongngu owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) sjwsjwsjw made 1 contributions to devRant(developer community) what means sjwsjwsjw owns 0.0 percent of contributions on devRant(developer community). The avarage post length of sjwsjwsjw is 62 and total post length is 62. sjwsjwsjw owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) certecignu made 1 contributions to devRant(developer community) what means certecignu owns 0.0 percent of contributions on devRant(developer community). The avarage post length of certecignu is 788 and total post length is 788. certecignu owns 0.0 percent of content on devRant(developer community).
|
||||
Statistics: User(ranter) coreykelley made 1 contributions to devRant(developer community) what means coreykelley owns 0.0 percent of contributions on devRant(developer community). The avarage post length of coreykelley is 214 and total post length is 214. coreykelley owns 0.0 percent of content on devRant(developer community).
|
||||
|
||||
@@ -1,616 +1,100 @@
|
||||
But, why i'm telling this? Well, based on amount of votes is ofc not accurate and especially not in amount because 50 people didn't upvote you for example. So maybe only 1/50th of people agree with you in reality if they would be all people that often upvote. So, i want to scan mentions and if the result is positive or not with AI deciding who makes the most people pissed of or is most appreciated with a mention. A mention says a lot. I'm 315 times mentioned last two weeks. Record. But a mention is mostly instead of post for many. Many don't both,@jestdotty all stuff we use is based on stuff made by people who DID know and they wrote a good fundament. It became WAY safer because many people don't have to know anymore how it works. They don't have to know because the fundation is safe thanks to the people before us. And, the general awareness of the biggest security thread - the user - is getting higher. My aunt won't just open an email attachment anymore and she also probably see's an icon being it probably spam and the user is not in your addressbook. Based on that stuff, she can judge as a total noob. So OFCOURSE, it's safer now. The general public became more aware. Ten years ago, she would've opened anything just like everyone did I can say out of experience with my former 'hacking career'. If it was easier, I would be making money know but not sure how. Because I made money installing toolbars using trojans. Those toolbar providers don't exist anymore (matcash, teddycash, waverevenue). 80ct/german, 1ct/turkish victim,@jestdotty my comment above is about awereness. In general computer knowledge, we're maybe declining because ten years ago, we had a kinda facebook (called cu2) and EVERYONE in NL was doing the greatest html javascript (he, yeah, people were nice back then and it wasn't an issue to let users use that) and css. Now, no one can do that anymore. Imagine that there was a period everyone could...
|
||||
-ANGRY-STUDENT- is 2 times mentioned on devRant(developer community).
|
||||
01015087592 is 1 times mentioned on devRant(developer community).
|
||||
12bitfloat is 327 times mentioned on devRant(developer community).
|
||||
1Cforever is 1 times mentioned on devRant(developer community).
|
||||
2Fdev2Ftcsh is 1 times mentioned on devRant(developer community).
|
||||
ABBASinger is 1 times mentioned on devRant(developer community).
|
||||
ACAB is 1 times mentioned on devRant(developer community).
|
||||
AaronHenty is 1 times mentioned on devRant(developer community).
|
||||
AaronJacobs is 1 times mentioned on devRant(developer community).
|
||||
AceDev is 21 times mentioned on devRant(developer community).
|
||||
AceOfSpades is 1 times mentioned on devRant(developer community).
|
||||
AdamOnAir is 10 times mentioned on devRant(developer community).
|
||||
Aldar is 0 times mentioned on devRant(developer community).
|
||||
AlexanderHeinz is 1 times mentioned on devRant(developer community).
|
||||
Alexclooney13 is 0 times mentioned on devRant(developer community).
|
||||
AlfaOmiga is 0 times mentioned on devRant(developer community).
|
||||
AlgoRythm is 60 times mentioned on devRant(developer community).
|
||||
Alice is 0 times mentioned on devRant(developer community).
|
||||
AmeliaSprings is 0 times mentioned on devRant(developer community).
|
||||
AmericanCop is 0 times mentioned on devRant(developer community).
|
||||
AmyShackles is 0 times mentioned on devRant(developer community).
|
||||
AmyWard is 0 times mentioned on devRant(developer community).
|
||||
Anderamarry is 0 times mentioned on devRant(developer community).
|
||||
AndersonCaleb is 0 times mentioned on devRant(developer community).
|
||||
AnnLourens is 0 times mentioned on devRant(developer community).
|
||||
AnnMarksman is 0 times mentioned on devRant(developer community).
|
||||
AnnSoulman is 0 times mentioned on devRant(developer community).
|
||||
AnnaAsti is 0 times mentioned on devRant(developer community).
|
||||
AntonioPepe is 0 times mentioned on devRant(developer community).
|
||||
ApocalypseToday is 0 times mentioned on devRant(developer community).
|
||||
Apogeus is 0 times mentioned on devRant(developer community).
|
||||
Argos is 4 times mentioned on devRant(developer community).
|
||||
ArnulfoSchimmel is 2 times mentioned on devRant(developer community).
|
||||
Augmental is 0 times mentioned on devRant(developer community).
|
||||
AvatarOfKaine is 68 times mentioned on devRant(developer community).
|
||||
Avyy is 0 times mentioned on devRant(developer community).
|
||||
BURGEmona is 0 times mentioned on devRant(developer community).
|
||||
BadFox is 0 times mentioned on devRant(developer community).
|
||||
Berkmann18 is 0 times mentioned on devRant(developer community).
|
||||
Besao is 0 times mentioned on devRant(developer community).
|
||||
Biggy is 4 times mentioned on devRant(developer community).
|
||||
BlackRock is 0 times mentioned on devRant(developer community).
|
||||
BlueNutterfly is 0 times mentioned on devRant(developer community).
|
||||
BobbyTables is 4 times mentioned on devRant(developer community).
|
||||
BogdanHarper is 0 times mentioned on devRant(developer community).
|
||||
BordedDev is 226 times mentioned on devRant(developer community).
|
||||
BornToDie is 0 times mentioned on devRant(developer community).
|
||||
Breejames is 0 times mentioned on devRant(developer community).
|
||||
Brian11Jeff is 0 times mentioned on devRant(developer community).
|
||||
Brigittededr is 0 times mentioned on devRant(developer community).
|
||||
Buffon is 33 times mentioned on devRant(developer community).
|
||||
Bunk is 0 times mentioned on devRant(developer community).
|
||||
Burns11Mor is 0 times mentioned on devRant(developer community).
|
||||
C0D4 is 1 times mentioned on devRant(developer community).
|
||||
CN257 is 3 times mentioned on devRant(developer community).
|
||||
CNCWorld is 0 times mentioned on devRant(developer community).
|
||||
Camillewallace is 0 times mentioned on devRant(developer community).
|
||||
CaptainRant is 10 times mentioned on devRant(developer community).
|
||||
CardozoPeggy is 0 times mentioned on devRant(developer community).
|
||||
Carlaneu is 0 times mentioned on devRant(developer community).
|
||||
CessnaPilot is 0 times mentioned on devRant(developer community).
|
||||
ChaosInHeaven is 0 times mentioned on devRant(developer community).
|
||||
Charles-Vaughan is 0 times mentioned on devRant(developer community).
|
||||
CheapStart is 0 times mentioned on devRant(developer community).
|
||||
CheapTuning is 0 times mentioned on devRant(developer community).
|
||||
Chewbanacas is 47 times mentioned on devRant(developer community).
|
||||
ChinaTown is 0 times mentioned on devRant(developer community).
|
||||
Clark2 is 0 times mentioned on devRant(developer community).
|
||||
CloudZero is 0 times mentioned on devRant(developer community).
|
||||
CopperOre is 0 times mentioned on devRant(developer community).
|
||||
CoreFusionX is 82 times mentioned on devRant(developer community).
|
||||
CowboyBill is 0 times mentioned on devRant(developer community).
|
||||
CryptoManiac is 0 times mentioned on devRant(developer community).
|
||||
CtrlVenus is 0 times mentioned on devRant(developer community).
|
||||
CyberTank is 0 times mentioned on devRant(developer community).
|
||||
D-4got10-01 is 230 times mentioned on devRant(developer community).
|
||||
DOGEmask is 0 times mentioned on devRant(developer community).
|
||||
DanielSturver is 0 times mentioned on devRant(developer community).
|
||||
DannY12 is 0 times mentioned on devRant(developer community).
|
||||
Davidson2021 is 0 times mentioned on devRant(developer community).
|
||||
DeadAir is 0 times mentioned on devRant(developer community).
|
||||
DebianLover is 0 times mentioned on devRant(developer community).
|
||||
DeepHotel is 1 times mentioned on devRant(developer community).
|
||||
Definition7 is 2 times mentioned on devRant(developer community).
|
||||
Demolishun is 566 times mentioned on devRant(developer community).
|
||||
Demon4s is 0 times mentioned on devRant(developer community).
|
||||
Demonslayerr is 0 times mentioned on devRant(developer community).
|
||||
DennisScipio is 0 times mentioned on devRant(developer community).
|
||||
DianaDW is 1 times mentioned on devRant(developer community).
|
||||
DivSyntax is 0 times mentioned on devRant(developer community).
|
||||
DoctorPepper is 0 times mentioned on devRant(developer community).
|
||||
Doddi is 0 times mentioned on devRant(developer community).
|
||||
DoraHills is 0 times mentioned on devRant(developer community).
|
||||
DreEleven is 1 times mentioned on devRant(developer community).
|
||||
EarthDefender is 0 times mentioned on devRant(developer community).
|
||||
Ecualizator is 0 times mentioned on devRant(developer community).
|
||||
EddyMercury is 0 times mentioned on devRant(developer community).
|
||||
EdgarNeal is 0 times mentioned on devRant(developer community).
|
||||
EifelTower is 0 times mentioned on devRant(developer community).
|
||||
ElectionForvard is 0 times mentioned on devRant(developer community).
|
||||
Elendil is 3 times mentioned on devRant(developer community).
|
||||
ElpidaCirillo is 0 times mentioned on devRant(developer community).
|
||||
Emery is 0 times mentioned on devRant(developer community).
|
||||
EricLJewett is 1 times mentioned on devRant(developer community).
|
||||
EricWinter is 0 times mentioned on devRant(developer community).
|
||||
EverettRyan is 0 times mentioned on devRant(developer community).
|
||||
FPVOperator is 0 times mentioned on devRant(developer community).
|
||||
Fads is 0 times mentioned on devRant(developer community).
|
||||
FastSpeeder is 0 times mentioned on devRant(developer community).
|
||||
FastestHand is 0 times mentioned on devRant(developer community).
|
||||
FastestMeteor is 0 times mentioned on devRant(developer community).
|
||||
Fielaposa is 0 times mentioned on devRant(developer community).
|
||||
FingerPinger is 0 times mentioned on devRant(developer community).
|
||||
FingerPrinter is 0 times mentioned on devRant(developer community).
|
||||
FinnTurner is 1 times mentioned on devRant(developer community).
|
||||
Firo is 0 times mentioned on devRant(developer community).
|
||||
FirstBlood is 0 times mentioned on devRant(developer community).
|
||||
Flamestro is 0 times mentioned on devRant(developer community).
|
||||
FloresOrland is 0 times mentioned on devRant(developer community).
|
||||
FlowSimulation is 0 times mentioned on devRant(developer community).
|
||||
FlowerLover is 0 times mentioned on devRant(developer community).
|
||||
FlyingGrenade is 0 times mentioned on devRant(developer community).
|
||||
FosterHamster is 0 times mentioned on devRant(developer community).
|
||||
Foxhole is 0 times mentioned on devRant(developer community).
|
||||
FrankDownes is 0 times mentioned on devRant(developer community).
|
||||
FuckJava is 1 times mentioned on devRant(developer community).
|
||||
FullThrust is 0 times mentioned on devRant(developer community).
|
||||
GADZHO is 0 times mentioned on devRant(developer community).
|
||||
GOAT is 2 times mentioned on devRant(developer community).
|
||||
Gaha is 0 times mentioned on devRant(developer community).
|
||||
Ganofins is 0 times mentioned on devRant(developer community).
|
||||
GeorgeWeeks is 0 times mentioned on devRant(developer community).
|
||||
Giga4a is 0 times mentioned on devRant(developer community).
|
||||
Grumm is 97 times mentioned on devRant(developer community).
|
||||
Hary is 0 times mentioned on devRant(developer community).
|
||||
Hazarth is 47 times mentioned on devRant(developer community).
|
||||
HighTurtleDev is 0 times mentioned on devRant(developer community).
|
||||
Hudzx is 0 times mentioned on devRant(developer community).
|
||||
IHateForALiving is 15 times mentioned on devRant(developer community).
|
||||
IleneHoeger is 3 times mentioned on devRant(developer community).
|
||||
IsabelTop is 0 times mentioned on devRant(developer community).
|
||||
JS-Guy is 1 times mentioned on devRant(developer community).
|
||||
Jabb03 is 1 times mentioned on devRant(developer community).
|
||||
Jack4m is 0 times mentioned on devRant(developer community).
|
||||
JamesMedina is 0 times mentioned on devRant(developer community).
|
||||
JanetteSalas is 0 times mentioned on devRant(developer community).
|
||||
JaredRuiz is 0 times mentioned on devRant(developer community).
|
||||
JeffreyBurke is 0 times mentioned on devRant(developer community).
|
||||
Joesepherus is 0 times mentioned on devRant(developer community).
|
||||
John-Does is 0 times mentioned on devRant(developer community).
|
||||
Jonathan1998 is 3 times mentioned on devRant(developer community).
|
||||
JoseRodriguez is 0 times mentioned on devRant(developer community).
|
||||
JsonBoa is 9 times mentioned on devRant(developer community).
|
||||
Jwe0619 is 1 times mentioned on devRant(developer community).
|
||||
K-ASS is 5 times mentioned on devRant(developer community).
|
||||
Karina34 is 0 times mentioned on devRant(developer community).
|
||||
Karlanoemi is 0 times mentioned on devRant(developer community).
|
||||
KayBlevins is 0 times mentioned on devRant(developer community).
|
||||
LauraDave33 is 0 times mentioned on devRant(developer community).
|
||||
Lensflare is 617 times mentioned on devRant(developer community).
|
||||
LianaQK is 0 times mentioned on devRant(developer community).
|
||||
Liebranca is 88 times mentioned on devRant(developer community).
|
||||
Luisa23 is 1 times mentioned on devRant(developer community).
|
||||
Lyniven is 3 times mentioned on devRant(developer community).
|
||||
MELONI is 0 times mentioned on devRant(developer community).
|
||||
MJanne is 0 times mentioned on devRant(developer community).
|
||||
MM83 is 8 times mentioned on devRant(developer community).
|
||||
Mackit is 0 times mentioned on devRant(developer community).
|
||||
MaddScientist is 0 times mentioned on devRant(developer community).
|
||||
MammaNeedHummus is 56 times mentioned on devRant(developer community).
|
||||
MariaNowak is 1 times mentioned on devRant(developer community).
|
||||
Maryam6778 is 0 times mentioned on devRant(developer community).
|
||||
Matthais is 1 times mentioned on devRant(developer community).
|
||||
MatthewLawrence is 0 times mentioned on devRant(developer community).
|
||||
Maty is 0 times mentioned on devRant(developer community).
|
||||
Maximillian is 0 times mentioned on devRant(developer community).
|
||||
MichaelBryce is 0 times mentioned on devRant(developer community).
|
||||
Michaela-Bwell is 0 times mentioned on devRant(developer community).
|
||||
MichelleWeeks is 0 times mentioned on devRant(developer community).
|
||||
Mika4m is 0 times mentioned on devRant(developer community).
|
||||
Mikol is 1 times mentioned on devRant(developer community).
|
||||
Milies095 is 0 times mentioned on devRant(developer community).
|
||||
Molokai is 0 times mentioned on devRant(developer community).
|
||||
Moro1st is 0 times mentioned on devRant(developer community).
|
||||
Nanonoko is 30 times mentioned on devRant(developer community).
|
||||
NataliaZoric is 0 times mentioned on devRant(developer community).
|
||||
Naumirich is 0 times mentioned on devRant(developer community).
|
||||
Navid-mnzh is 1 times mentioned on devRant(developer community).
|
||||
NeatNerdPrime is 0 times mentioned on devRant(developer community).
|
||||
Nimo is 0 times mentioned on devRant(developer community).
|
||||
Nmeri17 is 8 times mentioned on devRant(developer community).
|
||||
NoMad is 38 times mentioned on devRant(developer community).
|
||||
NoToJavaScript is 1 times mentioned on devRant(developer community).
|
||||
OliviaLane is 1 times mentioned on devRant(developer community).
|
||||
OllieJonas is 0 times mentioned on devRant(developer community).
|
||||
OmerFlame is 0 times mentioned on devRant(developer community).
|
||||
OverclockedGD is 0 times mentioned on devRant(developer community).
|
||||
PaperTrail is 14 times mentioned on devRant(developer community).
|
||||
PappyHans is 33 times mentioned on devRant(developer community).
|
||||
Patricia2z is 0 times mentioned on devRant(developer community).
|
||||
PepeTheFrog is 0 times mentioned on devRant(developer community).
|
||||
Phyllismapes is 0 times mentioned on devRant(developer community).
|
||||
Piniuze is 1 times mentioned on devRant(developer community).
|
||||
Piter90 is 0 times mentioned on devRant(developer community).
|
||||
Pogromist is 9 times mentioned on devRant(developer community).
|
||||
PurgeXenos is 0 times mentioned on devRant(developer community).
|
||||
RageExpress is 0 times mentioned on devRant(developer community).
|
||||
Ranchonyx is 47 times mentioned on devRant(developer community).
|
||||
RantACar is 0 times mentioned on devRant(developer community).
|
||||
Ranter24 is 1 times mentioned on devRant(developer community).
|
||||
Raymondd is 0 times mentioned on devRant(developer community).
|
||||
Reinhart8 is 0 times mentioned on devRant(developer community).
|
||||
Richardfowler5 is 0 times mentioned on devRant(developer community).
|
||||
RileyChris is 0 times mentioned on devRant(developer community).
|
||||
RobertPotter is 0 times mentioned on devRant(developer community).
|
||||
RogerAltenwerth is 0 times mentioned on devRant(developer community).
|
||||
Root is 53 times mentioned on devRant(developer community).
|
||||
Roths is 0 times mentioned on devRant(developer community).
|
||||
Ryanya is 0 times mentioned on devRant(developer community).
|
||||
Saka is 0 times mentioned on devRant(developer community).
|
||||
Salmakis is 7 times mentioned on devRant(developer community).
|
||||
ScribeOfGoD is 0 times mentioned on devRant(developer community).
|
||||
ScriptCoded is 41 times mentioned on devRant(developer community).
|
||||
SerenityHessel is 2 times mentioned on devRant(developer community).
|
||||
Shacham6 is 0 times mentioned on devRant(developer community).
|
||||
SidTheITGuy is 105 times mentioned on devRant(developer community).
|
||||
SoldierOfCode is 28 times mentioned on devRant(developer community).
|
||||
Songul is 0 times mentioned on devRant(developer community).
|
||||
Strawberry1102 is 1 times mentioned on devRant(developer community).
|
||||
Sweet is 0 times mentioned on devRant(developer community).
|
||||
Tasperen is 1 times mentioned on devRant(developer community).
|
||||
Tayo is 1 times mentioned on devRant(developer community).
|
||||
TeachMeCode is 26 times mentioned on devRant(developer community).
|
||||
TerriToniAX is 3 times mentioned on devRant(developer community).
|
||||
TheBeardedOne is 26 times mentioned on devRant(developer community).
|
||||
TheEnd is 1 times mentioned on devRant(developer community).
|
||||
Thiago791 is 0 times mentioned on devRant(developer community).
|
||||
Tounai is 125 times mentioned on devRant(developer community).
|
||||
Toyota is 0 times mentioned on devRant(developer community).
|
||||
TrayKnots is 56 times mentioned on devRant(developer community).
|
||||
UberSalt is 34 times mentioned on devRant(developer community).
|
||||
Vonka is 0 times mentioned on devRant(developer community).
|
||||
Waytopranav is 5 times mentioned on devRant(developer community).
|
||||
We3D is 26 times mentioned on devRant(developer community).
|
||||
Weon is 0 times mentioned on devRant(developer community).
|
||||
WillemD is 0 times mentioned on devRant(developer community).
|
||||
Wisecrack is 32 times mentioned on devRant(developer community).
|
||||
Zebbyeric is 0 times mentioned on devRant(developer community).
|
||||
Zeus4m is 0 times mentioned on devRant(developer community).
|
||||
adante is 1 times mentioned on devRant(developer community).
|
||||
addyluis2 is 0 times mentioned on devRant(developer community).
|
||||
ahmedmosa is 0 times mentioned on devRant(developer community).
|
||||
ahmedmosatfa19 is 0 times mentioned on devRant(developer community).
|
||||
ahmet000 is 0 times mentioned on devRant(developer community).
|
||||
aiodrix is 2 times mentioned on devRant(developer community).
|
||||
allardemiel1 is 0 times mentioned on devRant(developer community).
|
||||
alturnativ is 1 times mentioned on devRant(developer community).
|
||||
alyssadnester is 0 times mentioned on devRant(developer community).
|
||||
amandaorali is 0 times mentioned on devRant(developer community).
|
||||
amosjjoe is 0 times mentioned on devRant(developer community).
|
||||
andreasutter767 is 0 times mentioned on devRant(developer community).
|
||||
andrew24890 is 0 times mentioned on devRant(developer community).
|
||||
andrewbutler310 is 0 times mentioned on devRant(developer community).
|
||||
angela0147 is 0 times mentioned on devRant(developer community).
|
||||
angerydev is 1 times mentioned on devRant(developer community).
|
||||
annie45 is 0 times mentioned on devRant(developer community).
|
||||
antigermanist is 203 times mentioned on devRant(developer community).
|
||||
antigermgerm is 304 times mentioned on devRant(developer community).
|
||||
arekxv is 0 times mentioned on devRant(developer community).
|
||||
ars1 is 15 times mentioned on devRant(developer community).
|
||||
artemkornilov is 0 times mentioned on devRant(developer community).
|
||||
asgs is 1 times mentioned on devRant(developer community).
|
||||
ashlietaylor825 is 0 times mentioned on devRant(developer community).
|
||||
ashokramcse is 3 times mentioned on devRant(developer community).
|
||||
asskisser is 4 times mentioned on devRant(developer community).
|
||||
atheist is 61 times mentioned on devRant(developer community).
|
||||
awesomeest is 29 times mentioned on devRant(developer community).
|
||||
azuredivay is 18 times mentioned on devRant(developer community).
|
||||
b2plane is 42 times mentioned on devRant(developer community).
|
||||
bad-practice is 1 times mentioned on devRant(developer community).
|
||||
barrywhiteben is 0 times mentioned on devRant(developer community).
|
||||
bazmd is 54 times mentioned on devRant(developer community).
|
||||
bedawang is 6 times mentioned on devRant(developer community).
|
||||
belalsabry is 0 times mentioned on devRant(developer community).
|
||||
bengraylarry is 0 times mentioned on devRant(developer community).
|
||||
benjaminlucas is 0 times mentioned on devRant(developer community).
|
||||
betewilson is 0 times mentioned on devRant(developer community).
|
||||
bettyantony is 0 times mentioned on devRant(developer community).
|
||||
bettycleaver is 0 times mentioned on devRant(developer community).
|
||||
bettygray is 0 times mentioned on devRant(developer community).
|
||||
beverlycarson is 0 times mentioned on devRant(developer community).
|
||||
birenderkumar20 is 0 times mentioned on devRant(developer community).
|
||||
blessing1121 is 0 times mentioned on devRant(developer community).
|
||||
blindXfish is 4 times mentioned on devRant(developer community).
|
||||
bosslogic is 7 times mentioned on devRant(developer community).
|
||||
bostonfern is 0 times mentioned on devRant(developer community).
|
||||
bramorrie is 0 times mentioned on devRant(developer community).
|
||||
brentwagner429 is 0 times mentioned on devRant(developer community).
|
||||
broda is 1 times mentioned on devRant(developer community).
|
||||
byteasf is 2 times mentioned on devRant(developer community).
|
||||
cafecortado is 60 times mentioned on devRant(developer community).
|
||||
calebtino is 0 times mentioned on devRant(developer community).
|
||||
carolfitzmaur is 0 times mentioned on devRant(developer community).
|
||||
cb219 is 4 times mentioned on devRant(developer community).
|
||||
certecignu is 1 times mentioned on devRant(developer community).
|
||||
chatgpt is 352 times mentioned on devRant(developer community).
|
||||
cho-uc is 4 times mentioned on devRant(developer community).
|
||||
chrisdave978 is 1 times mentioned on devRant(developer community).
|
||||
clarkanderson is 0 times mentioned on devRant(developer community).
|
||||
codePain is 2 times mentioned on devRant(developer community).
|
||||
connormon is 0 times mentioned on devRant(developer community).
|
||||
cooperjn is 0 times mentioned on devRant(developer community).
|
||||
coreykelley is 0 times mentioned on devRant(developer community).
|
||||
cotetowemixx is 1 times mentioned on devRant(developer community).
|
||||
cprn is 61 times mentioned on devRant(developer community).
|
||||
craigellman2 is 0 times mentioned on devRant(developer community).
|
||||
creminroyce is 0 times mentioned on devRant(developer community).
|
||||
ctkqiang is 5 times mentioned on devRant(developer community).
|
||||
cuddlyogre is 37 times mentioned on devRant(developer community).
|
||||
cynthiafred778 is 0 times mentioned on devRant(developer community).
|
||||
dIREsTRAITS is 8 times mentioned on devRant(developer community).
|
||||
dalotmartinez is 0 times mentioned on devRant(developer community).
|
||||
danae357 is 2 times mentioned on devRant(developer community).
|
||||
daniel-wu is 5 times mentioned on devRant(developer community).
|
||||
darksideofyay is 3 times mentioned on devRant(developer community).
|
||||
davidmuir2901 is 0 times mentioned on devRant(developer community).
|
||||
dayner78 is 0 times mentioned on devRant(developer community).
|
||||
dbeverly is 0 times mentioned on devRant(developer community).
|
||||
debbyklein is 0 times mentioned on devRant(developer community).
|
||||
demurerecall is 0 times mentioned on devRant(developer community).
|
||||
dennisto12 is 0 times mentioned on devRant(developer community).
|
||||
devJs is 21 times mentioned on devRant(developer community).
|
||||
devRancid is 27 times mentioned on devRant(developer community).
|
||||
devdiddydog is 1 times mentioned on devRant(developer community).
|
||||
devemperor is 0 times mentioned on devRant(developer community).
|
||||
devux-bookmark is 1 times mentioned on devRant(developer community).
|
||||
dianaharland5 is 0 times mentioned on devRant(developer community).
|
||||
diegolola is 1 times mentioned on devRant(developer community).
|
||||
dissolvedgirl is 2 times mentioned on devRant(developer community).
|
||||
djeddiej is 0 times mentioned on devRant(developer community).
|
||||
djsumdog is 29 times mentioned on devRant(developer community).
|
||||
donkulator is 148 times mentioned on devRant(developer community).
|
||||
dowdlori680 is 0 times mentioned on devRant(developer community).
|
||||
dubacca is 0 times mentioned on devRant(developer community).
|
||||
dustinreyes9 is 0 times mentioned on devRant(developer community).
|
||||
efeil is 0 times mentioned on devRant(developer community).
|
||||
electrineer is 46 times mentioned on devRant(developer community).
|
||||
elfo is 5 times mentioned on devRant(developer community).
|
||||
elfshelf is 1 times mentioned on devRant(developer community).
|
||||
elizabethdurham is 0 times mentioned on devRant(developer community).
|
||||
ellenjulie is 0 times mentioned on devRant(developer community).
|
||||
elliotzucker is 0 times mentioned on devRant(developer community).
|
||||
elvinchoonsiong is 0 times mentioned on devRant(developer community).
|
||||
emeraudelinton is 0 times mentioned on devRant(developer community).
|
||||
emmaoliviagab is 0 times mentioned on devRant(developer community).
|
||||
enpega is 1 times mentioned on devRant(developer community).
|
||||
ericarogulski is 0 times mentioned on devRant(developer community).
|
||||
evertiro is 0 times mentioned on devRant(developer community).
|
||||
expertcoder400 is 0 times mentioned on devRant(developer community).
|
||||
felixreese is 0 times mentioned on devRant(developer community).
|
||||
ferhan is 0 times mentioned on devRant(developer community).
|
||||
feuerherz is 27 times mentioned on devRant(developer community).
|
||||
figoore is 3 times mentioned on devRant(developer community).
|
||||
filiz is 0 times mentioned on devRant(developer community).
|
||||
floreneiya is 0 times mentioned on devRant(developer community).
|
||||
frank500 is 0 times mentioned on devRant(developer community).
|
||||
franklinnewton1 is 0 times mentioned on devRant(developer community).
|
||||
freddiearchie is 1 times mentioned on devRant(developer community).
|
||||
fruitfcker is 16 times mentioned on devRant(developer community).
|
||||
galena is 16 times mentioned on devRant(developer community).
|
||||
gatoMalicioso is 0 times mentioned on devRant(developer community).
|
||||
gdb123 is 1 times mentioned on devRant(developer community).
|
||||
georgiatodd55 is 0 times mentioned on devRant(developer community).
|
||||
ghosttt is 0 times mentioned on devRant(developer community).
|
||||
gitstashio is 3 times mentioned on devRant(developer community).
|
||||
giulianocattane is 0 times mentioned on devRant(developer community).
|
||||
glowFX is 2 times mentioned on devRant(developer community).
|
||||
greven644 is 0 times mentioned on devRant(developer community).
|
||||
grokii is 72 times mentioned on devRant(developer community).
|
||||
gulnarkijj is 0 times mentioned on devRant(developer community).
|
||||
gulsat is 0 times mentioned on devRant(developer community).
|
||||
h3rp1d3v is 1 times mentioned on devRant(developer community).
|
||||
h3xd is 0 times mentioned on devRant(developer community).
|
||||
haasanlol is 0 times mentioned on devRant(developer community).
|
||||
hampton26 is 0 times mentioned on devRant(developer community).
|
||||
hannahpeter7 is 0 times mentioned on devRant(developer community).
|
||||
harrylarson is 0 times mentioned on devRant(developer community).
|
||||
hawkinsedwin89 is 0 times mentioned on devRant(developer community).
|
||||
helenazdenova is 0 times mentioned on devRant(developer community).
|
||||
hightower is 1 times mentioned on devRant(developer community).
|
||||
hildebrando33 is 0 times mentioned on devRant(developer community).
|
||||
hjk101 is 0 times mentioned on devRant(developer community).
|
||||
hritik08725 is 0 times mentioned on devRant(developer community).
|
||||
hussein56 is 0 times mentioned on devRant(developer community).
|
||||
iSwimInTheC is 4 times mentioned on devRant(developer community).
|
||||
iatetoothpaste is 4 times mentioned on devRant(developer community).
|
||||
ibmsucks is 1 times mentioned on devRant(developer community).
|
||||
iiii is 18 times mentioned on devRant(developer community).
|
||||
ilechuks73 is 1 times mentioned on devRant(developer community).
|
||||
int32 is 5 times mentioned on devRant(developer community).
|
||||
irene715 is 0 times mentioned on devRant(developer community).
|
||||
isaachackett is 1 times mentioned on devRant(developer community).
|
||||
ivanmaticic355 is 0 times mentioned on devRant(developer community).
|
||||
jace7384 is 0 times mentioned on devRant(developer community).
|
||||
jacobhappy822 is 0 times mentioned on devRant(developer community).
|
||||
jacoboxley593 is 0 times mentioned on devRant(developer community).
|
||||
jakidaneil90 is 0 times mentioned on devRant(developer community).
|
||||
jamesdalot30 is 0 times mentioned on devRant(developer community).
|
||||
janlucien is 0 times mentioned on devRant(developer community).
|
||||
jasikamoon is 0 times mentioned on devRant(developer community).
|
||||
jeeper is 0 times mentioned on devRant(developer community).
|
||||
jeffreygardner is 0 times mentioned on devRant(developer community).
|
||||
jenn-gormley is 0 times mentioned on devRant(developer community).
|
||||
jenniferselena is 0 times mentioned on devRant(developer community).
|
||||
jennyblakes3219 is 0 times mentioned on devRant(developer community).
|
||||
jennyscott22116 is 0 times mentioned on devRant(developer community).
|
||||
jeolleonard1122 is 0 times mentioned on devRant(developer community).
|
||||
jeremiparker is 0 times mentioned on devRant(developer community).
|
||||
jessicacain197 is 0 times mentioned on devRant(developer community).
|
||||
jestdotty is 681 times mentioned on devRant(developer community).
|
||||
jester5537 is 0 times mentioned on devRant(developer community).
|
||||
jimmy213 is 0 times mentioned on devRant(developer community).
|
||||
jimmysmith0917 is 0 times mentioned on devRant(developer community).
|
||||
jiraTicket is 17 times mentioned on devRant(developer community).
|
||||
jodi221 is 0 times mentioned on devRant(developer community).
|
||||
johnrex2577 is 0 times mentioned on devRant(developer community).
|
||||
johnsonella2208 is 0 times mentioned on devRant(developer community).
|
||||
joncheeks is 1 times mentioned on devRant(developer community).
|
||||
joopasma is 0 times mentioned on devRant(developer community).
|
||||
jordanjackson10 is 0 times mentioned on devRant(developer community).
|
||||
jordanphilip34 is 0 times mentioned on devRant(developer community).
|
||||
jthoward is 1 times mentioned on devRant(developer community).
|
||||
just8littleBit is 2 times mentioned on devRant(developer community).
|
||||
kamen is 4 times mentioned on devRant(developer community).
|
||||
kanyewest is 56 times mentioned on devRant(developer community).
|
||||
kareemnon is 0 times mentioned on devRant(developer community).
|
||||
karenlynn is 0 times mentioned on devRant(developer community).
|
||||
kassandraryan60 is 0 times mentioned on devRant(developer community).
|
||||
katalina89 is 0 times mentioned on devRant(developer community).
|
||||
katbreitin is 0 times mentioned on devRant(developer community).
|
||||
kazyma is 0 times mentioned on devRant(developer community).
|
||||
kelvinalfons is 0 times mentioned on devRant(developer community).
|
||||
kendrickm is 0 times mentioned on devRant(developer community).
|
||||
kenwalker0992 is 1 times mentioned on devRant(developer community).
|
||||
ketrin is 0 times mentioned on devRant(developer community).
|
||||
kienkhongngu is 1 times mentioned on devRant(developer community).
|
||||
kiki is 274 times mentioned on devRant(developer community).
|
||||
kingwebb is 0 times mentioned on devRant(developer community).
|
||||
kinu is 4 times mentioned on devRant(developer community).
|
||||
kirk949 is 0 times mentioned on devRant(developer community).
|
||||
knerd is 0 times mentioned on devRant(developer community).
|
||||
kobenz is 8 times mentioned on devRant(developer community).
|
||||
koceans641 is 0 times mentioned on devRant(developer community).
|
||||
lanting64 is 0 times mentioned on devRant(developer community).
|
||||
lastNick is 0 times mentioned on devRant(developer community).
|
||||
leahfoster33 is 0 times mentioned on devRant(developer community).
|
||||
leoramson33 is 0 times mentioned on devRant(developer community).
|
||||
lewac is 1 times mentioned on devRant(developer community).
|
||||
libbyreyes54 is 0 times mentioned on devRant(developer community).
|
||||
liliiavyshnska is 0 times mentioned on devRant(developer community).
|
||||
lilycollins9x is 0 times mentioned on devRant(developer community).
|
||||
linda467 is 0 times mentioned on devRant(developer community).
|
||||
llm223816 is 0 times mentioned on devRant(developer community).
|
||||
localguest is 0 times mentioned on devRant(developer community).
|
||||
localpost is 6 times mentioned on devRant(developer community).
|
||||
lopu is 20 times mentioned on devRant(developer community).
|
||||
lordedam is 0 times mentioned on devRant(developer community).
|
||||
lorentz is 125 times mentioned on devRant(developer community).
|
||||
lungdart is 45 times mentioned on devRant(developer community).
|
||||
magicMirror is 7 times mentioned on devRant(developer community).
|
||||
mangodb is 8 times mentioned on devRant(developer community).
|
||||
manuchojose76 is 0 times mentioned on devRant(developer community).
|
||||
maquirelinda is 0 times mentioned on devRant(developer community).
|
||||
marcushenderson is 0 times mentioned on devRant(developer community).
|
||||
marcussandford1 is 0 times mentioned on devRant(developer community).
|
||||
margaret12 is 0 times mentioned on devRant(developer community).
|
||||
mariasosnowska is 0 times mentioned on devRant(developer community).
|
||||
marksarah1 is 0 times mentioned on devRant(developer community).
|
||||
marlenenorm270 is 0 times mentioned on devRant(developer community).
|
||||
martinezdiolo2 is 0 times mentioned on devRant(developer community).
|
||||
masonasher562 is 0 times mentioned on devRant(developer community).
|
||||
mathias1 is 0 times mentioned on devRant(developer community).
|
||||
max19931 is 3 times mentioned on devRant(developer community).
|
||||
maximeden6 is 0 times mentioned on devRant(developer community).
|
||||
meapatrick767 is 0 times mentioned on devRant(developer community).
|
||||
meddymed is 0 times mentioned on devRant(developer community).
|
||||
melissa215 is 0 times mentioned on devRant(developer community).
|
||||
miajackson1117 is 0 times mentioned on devRant(developer community).
|
||||
michael40 is 0 times mentioned on devRant(developer community).
|
||||
mike34 is 0 times mentioned on devRant(developer community).
|
||||
monaessam is 0 times mentioned on devRant(developer community).
|
||||
murphyaguero is 0 times mentioned on devRant(developer community).
|
||||
myss is 8 times mentioned on devRant(developer community).
|
||||
n1cK1337 is 1 times mentioned on devRant(developer community).
|
||||
naavasmolash123 is 0 times mentioned on devRant(developer community).
|
||||
nadire1234 is 0 times mentioned on devRant(developer community).
|
||||
natalienate is 0 times mentioned on devRant(developer community).
|
||||
natashawilliams is 0 times mentioned on devRant(developer community).
|
||||
nemetepst is 1 times mentioned on devRant(developer community).
|
||||
neriald is 0 times mentioned on devRant(developer community).
|
||||
netikras is 157 times mentioned on devRant(developer community).
|
||||
nexus111 is 0 times mentioned on devRant(developer community).
|
||||
ninajohnson is 0 times mentioned on devRant(developer community).
|
||||
nishantrana is 0 times mentioned on devRant(developer community).
|
||||
nitnip is 1 times mentioned on devRant(developer community).
|
||||
no-spam is 8 times mentioned on devRant(developer community).
|
||||
no-spam1 is 1 times mentioned on devRant(developer community).
|
||||
no-spam2 is 1 times mentioned on devRant(developer community).
|
||||
no-spam2351 is 0 times mentioned on devRant(developer community).
|
||||
no-spam3 is 2 times mentioned on devRant(developer community).
|
||||
no-spam4 is 0 times mentioned on devRant(developer community).
|
||||
nosoup4u is 1 times mentioned on devRant(developer community).
|
||||
notSoCoolGuy is 0 times mentioned on devRant(developer community).
|
||||
noyb is 1 times mentioned on devRant(developer community).
|
||||
null-pointer-ex is 4 times mentioned on devRant(developer community).
|
||||
nururururu is 1 times mentioned on devRant(developer community).
|
||||
officemanagem is 0 times mentioned on devRant(developer community).
|
||||
ohiengbomwan is 0 times mentioned on devRant(developer community).
|
||||
ommaarfs is 0 times mentioned on devRant(developer community).
|
||||
ootwhere is 1 times mentioned on devRant(developer community).
|
||||
osx94 is 1 times mentioned on devRant(developer community).
|
||||
owen56yus is 0 times mentioned on devRant(developer community).
|
||||
pameladanny1230 is 0 times mentioned on devRant(developer community).
|
||||
patricia1009 is 0 times mentioned on devRant(developer community).
|
||||
patricklucas0 is 0 times mentioned on devRant(developer community).
|
||||
patriklad is 0 times mentioned on devRant(developer community).
|
||||
pedro147 is 0 times mentioned on devRant(developer community).
|
||||
peggy9090 is 0 times mentioned on devRant(developer community).
|
||||
pepega is 0 times mentioned on devRant(developer community).
|
||||
piperluna is 0 times mentioned on devRant(developer community).
|
||||
platypus is 1 times mentioned on devRant(developer community).
|
||||
poapelgjie is 0 times mentioned on devRant(developer community).
|
||||
possum is 2 times mentioned on devRant(developer community).
|
||||
printcache is 0 times mentioned on devRant(developer community).
|
||||
privatewallet is 0 times mentioned on devRant(developer community).
|
||||
priyanshu-kun is 7 times mentioned on devRant(developer community).
|
||||
qfwewgwg is 0 times mentioned on devRant(developer community).
|
||||
qwwerty is 7 times mentioned on devRant(developer community).
|
||||
racheldavis66 is 0 times mentioned on devRant(developer community).
|
||||
retard is 12 times mentioned on devRant(developer community).
|
||||
retoor is 2380 times mentioned on devRant(developer community).
|
||||
reychlsteysi is 0 times mentioned on devRant(developer community).
|
||||
richardsmith7 is 0 times mentioned on devRant(developer community).
|
||||
robertjames99 is 0 times mentioned on devRant(developer community).
|
||||
robertpeterson is 0 times mentioned on devRant(developer community).
|
||||
rootshell is 25 times mentioned on devRant(developer community).
|
||||
rosi555 is 0 times mentioned on devRant(developer community).
|
||||
rudinskiz is 0 times mentioned on devRant(developer community).
|
||||
sabrinajam is 0 times mentioned on devRant(developer community).
|
||||
sams3piol is 0 times mentioned on devRant(developer community).
|
||||
sandeepbalan is 10 times mentioned on devRant(developer community).
|
||||
santimoleiro is 0 times mentioned on devRant(developer community).
|
||||
sarabaylor00 is 0 times mentioned on devRant(developer community).
|
||||
sarahgrimaldi2 is 0 times mentioned on devRant(developer community).
|
||||
satya11 is 0 times mentioned on devRant(developer community).
|
||||
savalanolan is 0 times mentioned on devRant(developer community).
|
||||
scor is 5 times mentioned on devRant(developer community).
|
||||
scottflores7 is 0 times mentioned on devRant(developer community).
|
||||
scotthary56 is 0 times mentioned on devRant(developer community).
|
||||
shanaelliot12 is 0 times mentioned on devRant(developer community).
|
||||
sharon11 is 0 times mentioned on devRant(developer community).
|
||||
sherin12 is 0 times mentioned on devRant(developer community).
|
||||
shovethisrant is 4 times mentioned on devRant(developer community).
|
||||
sidthepajfuk is 7 times mentioned on devRant(developer community).
|
||||
sinalkoo is 0 times mentioned on devRant(developer community).
|
||||
sjwsjwsjw is 2 times mentioned on devRant(developer community).
|
||||
sleek is 1 times mentioned on devRant(developer community).
|
||||
snowman is 0 times mentioned on devRant(developer community).
|
||||
solex is 1 times mentioned on devRant(developer community).
|
||||
sonmaria6 is 0 times mentioned on devRant(developer community).
|
||||
soulevans07 is 0 times mentioned on devRant(developer community).
|
||||
spongessuck is 19 times mentioned on devRant(developer community).
|
||||
stasiarex3 is 0 times mentioned on devRant(developer community).
|
||||
stefaniedaene is 0 times mentioned on devRant(developer community).
|
||||
superdupernova is 9 times mentioned on devRant(developer community).
|
||||
susan22 is 0 times mentioned on devRant(developer community).
|
||||
susanweather1 is 0 times mentioned on devRant(developer community).
|
||||
sweetbomb is 0 times mentioned on devRant(developer community).
|
||||
tavivulcan8 is 0 times mentioned on devRant(developer community).
|
||||
thelevenin is 13 times mentioned on devRant(developer community).
|
||||
theranter is 1 times mentioned on devRant(developer community).
|
||||
therealmsjade is 0 times mentioned on devRant(developer community).
|
||||
therewasonce is 1 times mentioned on devRant(developer community).
|
||||
thjanice74 is 0 times mentioned on devRant(developer community).
|
||||
timothyferriss is 1 times mentioned on devRant(developer community).
|
||||
tosensei is 174 times mentioned on devRant(developer community).
|
||||
trekhleb is 4 times mentioned on devRant(developer community).
|
||||
triton33 is 0 times mentioned on devRant(developer community).
|
||||
typosaurus is 123 times mentioned on devRant(developer community).
|
||||
valentinam is 0 times mentioned on devRant(developer community).
|
||||
validus is 0 times mentioned on devRant(developer community).
|
||||
vaughnteague9 is 0 times mentioned on devRant(developer community).
|
||||
vectorvip is 0 times mentioned on devRant(developer community).
|
||||
veronika23 is 0 times mentioned on devRant(developer community).
|
||||
victoria is 0 times mentioned on devRant(developer community).
|
||||
vintprox is 2 times mentioned on devRant(developer community).
|
||||
violettegabara is 0 times mentioned on devRant(developer community).
|
||||
vlord is 6 times mentioned on devRant(developer community).
|
||||
vokictetteh is 0 times mentioned on devRant(developer community).
|
||||
webketje is 0 times mentioned on devRant(developer community).
|
||||
wegotthat is 0 times mentioned on devRant(developer community).
|
||||
wifi is 7 times mentioned on devRant(developer community).
|
||||
william305 is 0 times mentioned on devRant(developer community).
|
||||
williammacron is 0 times mentioned on devRant(developer community).
|
||||
wizawestley is 0 times mentioned on devRant(developer community).
|
||||
wojtek322 is 13 times mentioned on devRant(developer community).
|
||||
xcodesucks is 0 times mentioned on devRant(developer community).
|
||||
yamlbreakfast is 0 times mentioned on devRant(developer community).
|
||||
yasminahmed is 0 times mentioned on devRant(developer community).
|
||||
yasuocidal is 0 times mentioned on devRant(developer community).
|
||||
yemploy is 1 times mentioned on devRant(developer community).
|
||||
yevgeniy is 0 times mentioned on devRant(developer community).
|
||||
yohan56 is 1 times mentioned on devRant(developer community).
|
||||
yulia is 5 times mentioned on devRant(developer community).
|
||||
zuzahafty is 0 times mentioned on devRant(developer community).
|
||||
We3D is 7 times mentioned on devRant(developer comminity).
|
||||
sjwsjwsjw is 0 times mentioned on devRant(developer comminity).
|
||||
Ranchonyx is 11 times mentioned on devRant(developer comminity).
|
||||
Maryam6778 is 0 times mentioned on devRant(developer comminity).
|
||||
SidTheITGuy is 10 times mentioned on devRant(developer comminity).
|
||||
jestdotty is 108 times mentioned on devRant(developer comminity).
|
||||
sandeepbalan is 3 times mentioned on devRant(developer comminity).
|
||||
Lensflare is 45 times mentioned on devRant(developer comminity).
|
||||
devJs is 2 times mentioned on devRant(developer comminity).
|
||||
FuckJava is 1 times mentioned on devRant(developer comminity).
|
||||
ars1 is 7 times mentioned on devRant(developer comminity).
|
||||
certecignu is 1 times mentioned on devRant(developer comminity).
|
||||
theranter is 1 times mentioned on devRant(developer comminity).
|
||||
iSwimInTheC is 0 times mentioned on devRant(developer comminity).
|
||||
qwwerty is 0 times mentioned on devRant(developer comminity).
|
||||
CoreFusionX is 16 times mentioned on devRant(developer comminity).
|
||||
evertiro is 0 times mentioned on devRant(developer comminity).
|
||||
elliotzucker is 0 times mentioned on devRant(developer comminity).
|
||||
AlgoRythm is 19 times mentioned on devRant(developer comminity).
|
||||
antigermgerm is 71 times mentioned on devRant(developer comminity).
|
||||
tosensei is 36 times mentioned on devRant(developer comminity).
|
||||
ScriptCoded is 8 times mentioned on devRant(developer comminity).
|
||||
electrineer is 4 times mentioned on devRant(developer comminity).
|
||||
h3rp1d3v is 1 times mentioned on devRant(developer comminity).
|
||||
b2plane is 6 times mentioned on devRant(developer comminity).
|
||||
devRancid is 8 times mentioned on devRant(developer comminity).
|
||||
PappyHans is 4 times mentioned on devRant(developer comminity).
|
||||
antigermanist is 1 times mentioned on devRant(developer comminity).
|
||||
cb219 is 1 times mentioned on devRant(developer comminity).
|
||||
spongessuck is 4 times mentioned on devRant(developer comminity).
|
||||
hritik08725 is 0 times mentioned on devRant(developer comminity).
|
||||
TeachMeCode is 2 times mentioned on devRant(developer comminity).
|
||||
Biggy is 4 times mentioned on devRant(developer comminity).
|
||||
xcodesucks is 0 times mentioned on devRant(developer comminity).
|
||||
LianaQK is 0 times mentioned on devRant(developer comminity).
|
||||
n1cK1337 is 1 times mentioned on devRant(developer comminity).
|
||||
alturnativ is 1 times mentioned on devRant(developer comminity).
|
||||
galena is 3 times mentioned on devRant(developer comminity).
|
||||
Root is 13 times mentioned on devRant(developer comminity).
|
||||
D-4got10-01 is 3 times mentioned on devRant(developer comminity).
|
||||
Liebranca is 19 times mentioned on devRant(developer comminity).
|
||||
Tounai is 32 times mentioned on devRant(developer comminity).
|
||||
JsonBoa is 2 times mentioned on devRant(developer comminity).
|
||||
dIREsTRAITS is 5 times mentioned on devRant(developer comminity).
|
||||
Grumm is 26 times mentioned on devRant(developer comminity).
|
||||
Demolishun is 129 times mentioned on devRant(developer comminity).
|
||||
bazmd is 41 times mentioned on devRant(developer comminity).
|
||||
asskisser is 4 times mentioned on devRant(developer comminity).
|
||||
Ganofins is 0 times mentioned on devRant(developer comminity).
|
||||
magicMirror is 4 times mentioned on devRant(developer comminity).
|
||||
lorentz is 14 times mentioned on devRant(developer comminity).
|
||||
feuerherz is 7 times mentioned on devRant(developer comminity).
|
||||
AdamOnAir is 5 times mentioned on devRant(developer comminity).
|
||||
bad-practice is 0 times mentioned on devRant(developer comminity).
|
||||
netikras is 12 times mentioned on devRant(developer comminity).
|
||||
isaachackett is 1 times mentioned on devRant(developer comminity).
|
||||
Mikol is 0 times mentioned on devRant(developer comminity).
|
||||
Tasperen is 1 times mentioned on devRant(developer comminity).
|
||||
coreykelley is 0 times mentioned on devRant(developer comminity).
|
||||
TrayKnots is 4 times mentioned on devRant(developer comminity).
|
||||
PurgeXenos is 0 times mentioned on devRant(developer comminity).
|
||||
kienkhongngu is 1 times mentioned on devRant(developer comminity).
|
||||
greven644 is 0 times mentioned on devRant(developer comminity).
|
||||
TerriToniAX is 0 times mentioned on devRant(developer comminity).
|
||||
retoor is 315 times mentioned on devRant(developer comminity).
|
||||
dissolvedgirl is 2 times mentioned on devRant(developer comminity).
|
||||
kobenz is 2 times mentioned on devRant(developer comminity).
|
||||
jiraTicket is 0 times mentioned on devRant(developer comminity).
|
||||
elfo is 4 times mentioned on devRant(developer comminity).
|
||||
cprn is 23 times mentioned on devRant(developer comminity).
|
||||
CaptainRant is 3 times mentioned on devRant(developer comminity).
|
||||
awesomeest is 1 times mentioned on devRant(developer comminity).
|
||||
AceDev is 3 times mentioned on devRant(developer comminity).
|
||||
lungdart is 10 times mentioned on devRant(developer comminity).
|
||||
12bitfloat is 42 times mentioned on devRant(developer comminity).
|
||||
superdupernova is 1 times mentioned on devRant(developer comminity).
|
||||
nemetepst is 1 times mentioned on devRant(developer comminity).
|
||||
Pogromist is 0 times mentioned on devRant(developer comminity).
|
||||
arekxv is 0 times mentioned on devRant(developer comminity).
|
||||
vlord is 6 times mentioned on devRant(developer comminity).
|
||||
IHateForALiving is 0 times mentioned on devRant(developer comminity).
|
||||
nosoup4u is 1 times mentioned on devRant(developer comminity).
|
||||
cafecortado is 8 times mentioned on devRant(developer comminity).
|
||||
donkulator is 32 times mentioned on devRant(developer comminity).
|
||||
codePain is 1 times mentioned on devRant(developer comminity).
|
||||
vintprox is 1 times mentioned on devRant(developer comminity).
|
||||
Chewbanacas is 5 times mentioned on devRant(developer comminity).
|
||||
darksideofyay is 2 times mentioned on devRant(developer comminity).
|
||||
cotetowemixx is 0 times mentioned on devRant(developer comminity).
|
||||
trekhleb is 2 times mentioned on devRant(developer comminity).
|
||||
asgs is 1 times mentioned on devRant(developer comminity).
|
||||
Jwe0619 is 1 times mentioned on devRant(developer comminity).
|
||||
Hazarth is 10 times mentioned on devRant(developer comminity).
|
||||
cuddlyogre is 5 times mentioned on devRant(developer comminity).
|
||||
chatgpt is 53 times mentioned on devRant(developer comminity).
|
||||
atheist is 17 times mentioned on devRant(developer comminity).
|
||||
kinu is 4 times mentioned on devRant(developer comminity).
|
||||
kiki is 31 times mentioned on devRant(developer comminity).
|
||||
kamen is 1 times mentioned on devRant(developer comminity).
|
||||
Wisecrack is 3 times mentioned on devRant(developer comminity).
|
||||
|
||||
|
After Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 80 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
Before Width: | Height: | Size: 39 KiB |
|
After Width: | Height: | Size: 55 KiB |
|
Before Width: | Height: | Size: 53 KiB |
@@ -1,10 +0,0 @@
|
||||
-ANGRY-STUDENT- said @jestdotty Haha no need for that. She is capable of having her own original thoughts.,@jestdotty attention from women doesn't make me feel lucky and I don't have a low self esteem either.
|
||||
|
||||
Idk where you got that info from lol.
|
||||
Before this chick I had a huge roster of chicks who I was regularly disqualifying/removing from my list.
|
||||
|
||||
She checked everything I wanted in a future wife from my list.
|
||||
|
||||
I'm rather surprised that I catched a 10/10 because I see myself rather in 6-7/10 looks wise.,@Tounai bro, I reached 100kg in benching around 2 months ago. Doing 115kg now :)
|
||||
|
||||
How's your progress going?,@Tounai ah damn. I wish you a fast recovery then :),@retoor thank you and yes, they truly are interesting, indeed :),Yessir! I'm still here lurking around haha,It's been a long time, man. How has life been?,You are rocking those glasses, my guy. Looks very good on you #nohomo haha,Wise words.,Just do sport instead```
|
||||
@@ -1 +0,0 @@
|
||||
01015087592 said We are invincible,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel the subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel the subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel the subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel the subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel the subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel theĀ subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel theĀ subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel theĀ subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel theĀ subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel theĀ subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel theĀ subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel theĀ subscription.,@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel theĀ subscription.```
|
||||
@@ -1,565 +0,0 @@
|
||||
12bitfloat said š,It's both funny and frightening how removed from reality some of these far lefties really are
|
||||
|
||||
Everything they accuse you of, they are doing themselves
|
||||
|
||||
Everything they say is the opposite of reality,@antigermgerm Not everything I say is correct, I also suffer from bias like everyone else
|
||||
|
||||
The difference is, I base my ideas on reality, so when they are wrong they are at least not THAT wrong
|
||||
|
||||
These people's ideas aren't even connected to reality, so they are just wrong by default,@antigermgerm We've already argued and I've poked huge logical holes into a lot of your arguments, so I'd say I'm not entirely incorrect,@antigermgerm Remember the thing about genocide being bad? Until it wasn't? That one was funny,@antigermgerm Man, I'd like a waffle right now. With sugar and cinnamon and a little bit of nutella š,@antigermgerm Man what the hell. You really don't like nutella!?,@antigermgerm Fair enough. Do you put some buttermilk in your pancakes? That shit goes crazy,"You aren't you when you're hungry",@antigermgerm Bruh you were just saying you don't put anything on there
|
||||
|
||||
I feel betrayed and lied to,@antigermgerm Okay I forgive you,Don't do drugs kids!,Kinda offtopic but not having an avatar at 5k updoots is kinda gigachad,@jestdotty That's also definitely true, there's TONS of rage bait and stuff
|
||||
|
||||
But the point still stands... They wouldn't do that IRL because they'd get roughing up,@retoor You're not wrong, but I mean it more in the general sense of mankind. If you talk shit, you get hit.... Only now in the internet age is it different that you can essentially talk as much shit as you want without any consequence whatsoever,@jestdotty Yikes, that sounds horrible
|
||||
|
||||
But I say this: If you would have punched him into the next dimension, he would have stopped right quick
|
||||
|
||||
But that's easier to say when you're a man. Which is why we need to protect women and stop to pretending men and women are exactly the same. We should have the same rights, but we have very different experiences,@jestdotty Yeah but that's exactly what I'm saying: Men have a system of shared influence over each other because they can beat each other the f down
|
||||
|
||||
That's why they aren't violent.... At leat against each other,He's literally not even in office š,Spare the whining for january,He tried with a trial in finnland (?) where you needed to pay 1 dollar to create an account and there was outrage
|
||||
|
||||
Nobody knows how to stop bots,@antigermgerm Someones looking for that german bratwurst š,@Lensflare That's one of the reasons I like devrant. I think if platforms become too big you naturally form bubbles as obviously not everybody can see and interact with everyone else, so they congregate with people they agree with
|
||||
|
||||
Devrant is small enough that there can be *one* post feed which means we all get exposed to the ideas of everyone else
|
||||
|
||||
Kinda keeps you more grounded,@Lensflare Zwƶlfo and Drƶlfo, best friends,@theranter I suspect quite a bit actually lol
|
||||
|
||||
By the democrats, republicans, north korea, russia, china, they are all doing it,@Tounai Kinda? rustdoc/docs.rs is just objectively so awesome I can't really complain
|
||||
|
||||
It literally compiles documentation for *all* crates on crates.io for all versions, with types fully interlinked between dependencies, etc etc
|
||||
|
||||
It's just the best thing ever,@devRancid If you think Java or C++ (doxygen) even comes CLOSE to the Rust experience then you have never used Rust, it's so beautiful
|
||||
|
||||
And yeah, obviously good hand written documentation is even better. But most non rust libraries don't even have auto generated documentation, or at least one that doesn't suck ass (doxygen)!,Like this shit is what I have to deal with in JS world (and this is even above average!): https://glmatrix.net/docs/
|
||||
|
||||
Meanwhile in Rust: https://docs.rs/cgmath/latest/...
|
||||
|
||||
Just no comparison, don't even @ me,@devRancid Cry more lmao
|
||||
|
||||
I never said cgmath docs are perfect, but it doesn't even matter because it still lists exactly what I want to know
|
||||
|
||||
What? Your pea brain needs a 3 paragraph description for a function called "vec3" which takes x, y and z and returns a Vector3 like it isn't fucking obvious what it does?
|
||||
|
||||
Auto generated docs aren't the be all end all, but fuck me, 99.9% of non rust libs can't even manage *that*,@devRancid WIth all due respect, you're just willfully ignorant because you are afraid Rust will overtake you
|
||||
|
||||
And if that's you're attitude, at some point it will
|
||||
|
||||
I was a retarded Rust hater just like you at some point. Then I got over my ego and started learning it, and I'm not looking back
|
||||
|
||||
Not that Rust is the answer to everything. It has it's issues, both big and small, but you are so blinded by the fear of unknown that you can't even acknowledge the language for what it is. Sad,@Demolishun True! -- for the standard library
|
||||
|
||||
Not for any third party c++ libraries,@Demolishun Wasn't trying to be mean! I like cppreference a lot, but it's only for std
|
||||
|
||||
That's exactly why I'm so grateful for Rust having a good docs story for all libraries,@atheist Auto complete doesn't give you a full overview of all types, functions, etc
|
||||
|
||||
... and of course you need to first add the dependency to your project
|
||||
|
||||
Sometimes you just want to see how a few libs are designed so you can choose which one you like best. No problem with docs.rs,Not wrong lol
|
||||
|
||||
I mean most of these are so unnecessarily hard to type for zero benefit,@Lensflare The semicolons are a monoid in the category of endofunctors, you wouldn't get it,Lots if not most of the actually talented people seem to have moved on from the once legendary game developers
|
||||
|
||||
Too much bureaucratic bullshit. Too much woke bullshit
|
||||
|
||||
IMO indie games have overtaken AAA in almost every way,@Demolishun I'm in your camp too, but I think int *foo; is actually more correct
|
||||
|
||||
As far as I know, C and C++ consider foo a pointer variable of type int, instead of a variable of type int pointer
|
||||
|
||||
There are only a few cases where the distinction shows itself in syntax though (can't remember them),@Demolishun Ah right now I remember, here's an example: `int* a, b;` only declares the first variable as a pointer, the second is just an int
|
||||
|
||||
https://godbolt.org/z/vdvW41cnh
|
||||
|
||||
That has tripped me up before lol,@Lensflare I don't think you can ever be a point where you can't learn something new about c++ lol,A certifiably bad experience,@Demolishun I really like it. It feels like average people are finally waking up to the far left propaganda that has infested and destroyed media for the last decade,(not even a political post lol just glad I was able to get something done),@Demolishun That's kinda fucked. Though I don't think she's smart enough to understand the implications,@AlgoRythm dragons dogma balls 2, now in stores near you,Should've gone full microsoft with a /no:emit,Nah, Rust's syntax is miles ahead of C. It's more consistent, intuitive and expressive. Can't do `let [a, b, ..rest] = &list;` destructuring in C can ya?
|
||||
|
||||
IMO Rust is also just a better language than C. Not that C is bad for what it is, but it's a language that was invented 20 gazillion years ago -- as a portable assembly, mind you --, so obviously Rust could learn from decades of language design,@retoor Rust definitely isn't a toy, but it's not as mature as C yet. Rust has only existed in it's final form for 10 years, give it some time,@lorentz Fair enough, I meant it more like "in the current 1.0 form where backwards compatibility is guarenteed". Before 2015 Rust was changing daily in big ways, it was kinda crazy,What why,@retoor I'm not sure what to think about the dependency situation in Rust
|
||||
|
||||
Yes Rust uses more smaller dependencies, but unlike JavaScript, these libraries are overwhelmingly high quality and non-trivial,@retoor Raw pointers don't carry any ownership semantics which can lead to various bugs
|
||||
|
||||
If you get passed a raw pointer, do you now own the pointer? Should you free it or does somebody else free it? Is it just temporary? If it is, what is it's object lifetime?
|
||||
|
||||
That's why it's recommended to use smart pointers, because it's harder to misuse them (and they will clean themselves up, which is nice),@Demolishun If you use a shared_ptr it should work by itself (not in Qt though) (well, and also not bidirectional parent<->child relationships, but that's a topic for another day)
|
||||
|
||||
IMO that's one of the beautiful things about C++ which Rust took inspiration from: Being able to build zero-cost(-ish) abstractions which do the right thing and make it harder or impossible to use incorrectly
|
||||
|
||||
For example, in my code base there is not a single point where I have to manually clean something up. It just all happens automatically for me (assuming I don't have rc cycles lol)
|
||||
|
||||
It just makes your code so much cleaner and more robust, I love it,Damn! What model is it running? Is it your own?,@retoor It unfortunately didn't load for me, it just times out :(,@retoor Looks good I guess lol
|
||||
|
||||
I'm not saying you can't make a working program with raw pointers
|
||||
|
||||
But I really believe higher level abstractions like smart pointers let you program so much quicker without sacrificing much or even any performance,@retoor Same. It does it's job, so.... idk ĀÆ\_(ć)_/ĀÆ,@retoor Oh that might be it. I use a specific dns provider, maybe the records haven't been flushed yet,Bro has that IPv3 address š,I don't work in the industry, but I do develop a game as a sidejob,More shizo drivel lets gooooo,@retoor Just as an update: It still times out for me here in germany,Damn my guy bout to write write graphics drivers,Microsoft has over 200'000 employees. Yes, two hundred thousand (!)
|
||||
|
||||
And they can't make a fucking button,https://youtube.com/watch/...,@devRancid Git gui gets a bad rep but it's honestly so much easier to do complex commits where you pick and choose hunks,Code architecture can be really frustrating in Rust, I feel you
|
||||
|
||||
But at the end, you at least have a correct program. Other languages let you write wildly incorrect programs no problem
|
||||
|
||||
Kind of depends on what your personal style is,@Lensflare Schƶnes Wort,Don't forget to drink a water before going to bed :D,@retoor I can guarentee you that I could find a race condition or a possible null pointer bug in about 5 minutes if I saw your code bases
|
||||
|
||||
Nothing personal, just the reality of software :P
|
||||
|
||||
(I'm a former Java guy, if there's a thing I know, it's null pointer bugs),@retoor It does work now!,@retoor I'm not a big AI guy, even chatgpt rarely says something useful for me :D,Debugging! What a great time!
|
||||
|
||||
(im in so much pain),The target folder is per top level crate unless vscode does something weird
|
||||
|
||||
You an change it via target-dir in a cargo .config file (https://doc.rust-lang.org/cargo/... ). Have one globally in your projects folder then you can have all artifacts in one place,@lorentz Man, hearing the @jestdotty story almost makes me agree with the people that say async rust was a mistake... It really wasn't -- and in fact I just prototyped fibers (async without await) in Rust and came to the conclusion that it's just objectively worse -- but it still makes me sad that someones first experience with Rust is async fuckery
|
||||
|
||||
The language has so much else nice to give,@jestdotty I agree with you! (somewhat)
|
||||
|
||||
Doing async rust well is very complex. Normal Rust is already complex but async makes it 2 times harder
|
||||
|
||||
Unfortunately there isn't really a fix for that. It isn't that Rust is bad, because Rust is insanely good. It's not that async Rust is bad, because it's probably the best async implementation possible inside Rusts framework of rules
|
||||
|
||||
It's just that.... Rust is hard, and frustrating, and sometimes really annoying.
|
||||
|
||||
But it's such a beautiful language I just can't hate it,@jestdotty To answer more directly:
|
||||
|
||||
* Yes the Rust community (despite the marketing) is toxic; really just as toxic as any other online community is toxic (I just wish they would stop saying that "oh we are so non toxic crap")
|
||||
|
||||
* AI for Rust sucks, but really AI just sucks for most of non-trivial programming
|
||||
|
||||
* Well yeah you can have async blocks which are move (and thus 'static) or not (and thus not 'static, which can be really useful),@jestdotty No, I get it :D
|
||||
|
||||
When I was learning Rust I was so fucking furious I wanted to throw my computer out of the window
|
||||
|
||||
I don't know, for me Rust is really something different. I still program in Java, C#, Python and JavaScript and I like all of these. They let me make something quickly. And I really like that
|
||||
|
||||
But Rust also has something I really like: Despite the complexity and stuff, just the feeling of making something that's truly robust. Something that can't just break willy nilly, I really like that,@jestdotty move is a special keyword on closures specifically that means "any values touched by this closure should be moved in, instead of being referenced"
|
||||
|
||||
I'm not *that* well versed on borrow rules (to be fair, they are insanely complex lol), but normally futures should work fine
|
||||
|
||||
I suspect (thought I might be very wrong) that your issue is, that you return `impl Future<Output = Foo>` and you want to use that. It might be that you need `impl Future<Output = Foo> + Send` so that you signal that it is thread safe
|
||||
|
||||
Not entirely sure though, variance is such a complicated topic,@jestdotty Also your problem may or may not be addressed by this new language feature: https://blog.rust-lang.org/2024/10/...
|
||||
|
||||
(like I said, lifetimes are complex :P ),@jestdotty Also funnily enough, my fiber implementation in Rust would maybe actually help you :D
|
||||
|
||||
It's not implemented yet, but it doesn't require async or lifetimes and just works.... it also has pretty big downsides (big virtual stack size, less flexibility), but it's a pretty cool experiment,@jestdotty Oh yeah, keeping things simple is always the right approach, especially in rust :D,@jestdotty Good question... parking_lot's deadlock check probably didn't find anything because if it did, your pogram would have soft locked instead of just been slow :D
|
||||
|
||||
Just a quick check: Are you running in release mode? (--release),@jestdotty oh boy, that sounds fun <.<,Surely engagement baiting will make people buy from your scam company,@Lensflare He needs to know the arcane wisdom of shitting out a fat log
|
||||
|
||||
Just in this case it's his nose,@retoor What happened to your account? :O,@jestdotty Even if simple make sure to never hold an std/parkinglot mutex guard across an await point
|
||||
|
||||
It really could be a deadlock that at the start is unlikely due to a short lock duration but as you process data and fill up your data structures the critical section becomes longer and longer so the chance for a task trying to lock while another task currently has the lock goes up dramatically,@jestdotty If it starts with CollectPixels<ReadRequiredChannel<ReadRequiredChannel<ReadRequiredChannel<NoneMore, R>, G>, then it's fair to assume it's not Rust that's the problem ;),@jestdotty Await point is each point where you call .await
|
||||
|
||||
The problem with holding a mutex guard across an await point is this: If one task locks the mutex then calls .await, it may now give up execution to another running task. If that second task tries to acquire the same mutex and both tasks are scheduled on the same os thread, you've now deadlocked the tread
|
||||
|
||||
It happening at a later point in your program could be, like I said, because your critical sections are getting longer as time goes on, so the chance goes up,I.e. like this: https://play.rust-lang.org//...,Of course this cuck gets a reverse prenup lule,@retoor What say you now?? Huh, didn't think so š,@retoor Actually now that I think of it, I think AIs are very good at spoken languages because spoken lanugages -- despite all their explicit and implicit rules -- are SO much simpler than programming languages
|
||||
|
||||
So no wonder they are bad at Rust :P They aren't a real human,@retoor Hey!!! Don't compare Rust to React! I take personal offence to that
|
||||
|
||||
Rust is like a beautiful lady. Wonderful and elegant and strong
|
||||
|
||||
React is like an obese women who can't stand up for more than 30 seonds
|
||||
|
||||
Those are not the same!!,@retoor Nah... A lady of very high standing! Only the royality are good enough for the Rust lady :P,@retoor Looks like a good lady š,@retoor Nah it never made it,The biggest problem is AIs not being able to say when they don't know something
|
||||
|
||||
Oh and that whole "oh sorry, you are totally right, here is some bullshit I just made up to conform to your expectations" schtick
|
||||
|
||||
JUST TELL ME YOU DON'T KNOW SOMETHING GOD DAMMIT!!,@jestdotty @Lensflare It surely must be possible to have extra neurons trained on whether something was actually learned during training or not...
|
||||
|
||||
Or I don't know, I'm not an AI engineer ĀÆ\_(ć)_/ĀÆ,Working at microsoft? š,Funny that they somehow forgot "white men"
|
||||
|
||||
Guess it just isn't biased against them. Like asking "tell a joke about women" and "tell a joke about men" and it only does the latter.... Weird coincidences all around,@CoreFusionX Wait, they have a hlsl compiler? Or working on dxc?,@devRancid Let's call it cmake++,When it works cmake is awesome
|
||||
|
||||
Problem is it never fucking works right,@retoor "Most of them are C"
|
||||
|
||||
To be fair, 20-30 years you didn't have much choice :P,> Don't abuse the power guys
|
||||
|
||||
"Sometimes foreshadowing is rather obvious",@retoor Okay, that makes sense :D,@antigermanist If you are so against discrimination -- as you claim -- why are you so easily dismissing possible discrimination?
|
||||
|
||||
Of course I know the answer; It's because you never cared about discrimination as a concept, you only care if it happens against the groups you have identified as oppressed so that you can feel superior and excuse any unjust force you may use against others as morally acceptable
|
||||
|
||||
No, discrimination based on race or gender isn't acceptable. Whether it happens against black people, white people, women, men, whatever,I swear, crocheting is like a super power
|
||||
|
||||
You can just make thing appear like magic,Let's just counter spam the spammers
|
||||
|
||||
Everything they spam we spam 2 times back,@antigermanist "I dont believe in identity politics", meanwhile:
|
||||
|
||||
"a few white people are successful, therefore ALL white people as a group deserve to be discriminated against"
|
||||
|
||||
You are so low intelligence it actually hurts,GNOME people, not linux
|
||||
|
||||
GNOME "people",@CoreFusionX I know, I was just hoping I found someone I can complain to when the spirv backend in dxc is broken again lol,@kiki Don't worry about kiki, your life will be happier if you don't know,Thanks for the reminder, just did the first day :P,You can only get better at programming by doing a bunch of programming
|
||||
|
||||
Make a project!,@antigermanist Price of what power
|
||||
|
||||
Most men don't have power. You are using a tiny subset of successful men to judge all men by
|
||||
|
||||
A 20 year old with a useless college degree, no friends and depression doesn't have power
|
||||
|
||||
Yet you are perfectly willing to throw him under the bus because he dares being a white man,@antigermanist No I don't want privileges for white men, I just want governments, companies and schools to not be deliberately racist and sexist against them
|
||||
|
||||
Equality for all. Really not a radical concept,@antigermanist
|
||||
|
||||
Sure, people in some countries have more opportunities than people from other countries
|
||||
|
||||
But how is some random 20 year old to blame for that. And so much so that he personally deserves to be discriminated against?
|
||||
|
||||
You really need to stop thinking in terms of groups and start thinking as people as separate and distinct individuals, with their own flaws and virtues. Because groups can't feel pain or oppression, only individuals can. And by judging people purely based on their group identity, you are unfairly treating all the people who aren't perfect representatives for the average of the group,Not really. Yes effort doesn't mean success, but putting in effort also trains you to have a better work ethic, more patience and generally makes you a happier person,@antigermanist In the US whites and asians, especially men, are systemically discriminated against in most universities. That's just a fact
|
||||
|
||||
Yeah there are other forms of discrimination against other groups too, but two wrongs don't make one right,@antigermanist There are many reasons (mostly historic, financial and cultural) why in uni people are more likely white than not
|
||||
|
||||
But why do you just assume (without having given any proof) that that must be because of discrimination? WHILE(!) downplaying the existence of actually real, written in black and white, systemic discrimination against whites (and asians),It do so in germany as well! I love snow,Advent of code makes me feel stupid
|
||||
|
||||
In 2023 I was already WAY out of my depth at day 10 or something lmao
|
||||
|
||||
Some weird math stuff where you needed to figure out graph cycles in a huge interconnected list of entities so that you can reason about some edge case which leads to a proof of contradiction or something
|
||||
|
||||
like hello??????,@Chewbanacas No it's definitely cool
|
||||
|
||||
Just would be nice if I wasn't so dumb :P,Maybe I'm in the minority but I like a good rounded corner. Yes, macOS is very beautiful,Why did he have to call it don't() instead of dont(), that screwed up my rust codebase :P,@Tounai I tried doing it without rayon, both via an atomic int and just assigning fixed subsets of the list to each thread by the threads id, but both approaches were slower than rayon... Even though rayon is so much more complex... Haven't quite figured that out,That's just bevy
|
||||
|
||||
Definitely a little all over the place but it allows you to write game logic which safely and concurrently can mutate your game state / entities
|
||||
|
||||
Entity Component Systems in other languages don't look much different,It's honestly very childish to cram your own politics into places it doesn't belong
|
||||
|
||||
What does an editor program have to do with politics? Absolutely nothing
|
||||
|
||||
Yet the maintainers, tactless as they are, think it's a good idea to abuse the platform they have to shove their own thoughts into peoples faces
|
||||
|
||||
Just make your mediocre editor and shut the fuck up. You are known because of Notepad++ not because people care what you think of world politics,@Tounai I'm not a big theory or maths guy either,@retoor Forking is copy-on-write by default. The forked process gets the same address space but it traps on writes at which point the OS clones the touched segment
|
||||
|
||||
In you're C version you're not writing to any "shared" memory, so it doesn't have *that* much overhead. The OS still has to bookkeep the multiple page tables and stuff and (i believe?) has to flush TLB caches on context switch (even though it's the same program...), so it's still quite a bit slower than threads,@retoor Can't be a girl, we all know girls don't poop,@Demolishun I heard someones talking shit about Rust!? š¤,@retoor I'll be interested how much faster that is :D,@jestdotty Not all Rust code looks this bad :P
|
||||
|
||||
Yes, bevy is kinda horrible. But for a good reason! The problem it solves just sucks, whether in Rust or C++ or Java
|
||||
|
||||
If you want to read codebases, check out cli tools written in Rust, I think they are generally a lot nicer
|
||||
|
||||
For example just: https://github.com/casey/just/...,@jestdotty (actually scratch that, the just codebase seems *very* small file-ish lol),@retoor That's so weird!!!!
|
||||
|
||||
My manual threading attempts in Rust where also slower: from 0.63 to 0.77 seconds
|
||||
|
||||
How???? What is the magic sauce??,@retoor Look at the gittea issues :P
|
||||
|
||||
You need to add target to .gitignore,@retoor Hmmm you're spawning as many threads as you have arguments, that's acutally very inefficient
|
||||
|
||||
You should be spawning as many threads as you have cores (no idea how to query that in C) and then "claim" the next item for each thread in a loop
|
||||
|
||||
When I was testing this in Rust, having either less or more threads than my processor resulted in significant lower performance,@retoor No, you really do need to do more than this :P
|
||||
|
||||
It's not hard though! Just have an atomic int which each thread in a loop increments. If the returned value is above the number of args, return and kill the thread. Else, process the file in the list with the claimed idx,@retoor Having the builds doesn't make much sense, yeah partially because of linux/windows but also for other reasons. If you want to publish a pre-built binary don't publish the target folder, instead just copy the binary and publish that,@retoor 23:33 is time for python? :P
|
||||
|
||||
Maybe time for another drink. Prost šŗ,@retoor Yeah but you have target/ in your git which you shouldnt :P,@retoor One in 6 hours? That's determination
|
||||
|
||||
I'm on my 6th 5% 0.5L right now :P,@retoor One issue is pulling. If you have it in there I can't pull the repo because of differences, because my local compile artifacts differ from the repo!,@retoor I drink waay too much for sure....
|
||||
|
||||
Good on you for stopping! But yeah meth is DEFINITELY not better :P,@retoor Well... you are wrong :P,@Demolishun Schwarzenegger is really painful. Such a cool action star, reduced to a mouthpiece of whatever current agenda we have... :(,@retoor What the hell are you thinking? I was talking about saving and critiquing it
|
||||
|
||||
Art is still art and should be critiqued and analyzed like anything else
|
||||
|
||||
Geez,@Demolishun Honestly, the internet itself should be kept away from children
|
||||
|
||||
I say this as someone who (like many of us) very much was a child of the internet, and without it I would have never learning programming!
|
||||
|
||||
But still..... There is something not good about being 10 years old on the internet,@retoor :P,@Demolishun I don't think that's ever gonna affect the real world anyways... Good or bad, just like with porn sites, they will just find some loop hole and it'll be fine
|
||||
|
||||
But honestly I don't know how to feel about it. Because I'm the exact person to decry censorship about this.... But like.... I also think it's a good idea
|
||||
|
||||
Man it all sucks, that's why I just try to keep to myself lol,@retoor Sorry, I'm not to deep into this stuff :P
|
||||
|
||||
What's amphetamines vs meth amphetanines?,@retoor True! Tabacco taxes are insane!!!!,@retoor Im now 25 but I also taught myself Java at 10 years old with youtube tutorials and stackoverflow.... That's why Im saying, I don't think it's a good idea to not have children on the internet
|
||||
|
||||
But it also has downsides! Yeah everything sucks....,@retoor Not wrong :D But I also think the internet preys on people
|
||||
|
||||
Okay heres a personal thing: I'm deeply addicted to youtube. Like actually addicted. If I stop watching youtube for a day I feel like absolute shit. Full drug-like withdrawal syndromes. I feel deeply depressed, I don't know what to do, I feel like nothing has a purpose anymore
|
||||
|
||||
It is no fucking joke. For real.
|
||||
|
||||
I don't know if young children should be raised with this. It's literally like gambling addiction (well at least you can't lose money). It over-stimulates your brain receptors like cocaine
|
||||
|
||||
Theres nothing good about it,@retoor That's not necessarily a good thing!!,@retoor Well, the algorithm learns what you watch... I you watch LTT or rewatch the same videos often the algorithm will start doing that,@retoor I can write a bit of python :P not my main language
|
||||
|
||||
I used to hate it but now I kinda like it,@retoor I still wish they had operator overloading
|
||||
|
||||
don't @ me,@retoor Yeah sometimes the algorithm is kinda dumb
|
||||
|
||||
Btw is this music for you? https://youtube.com/watch/...
|
||||
|
||||
It's very good :P,@retoor Didn't mean it personally :D Just as a saying,@retoor No! Sometimes things easy things are just good! (I say this as a Rust dev lmao)
|
||||
|
||||
No honestly though. Yes C is cool, but writing a relatively hard program in C is just so much harder than writing it in C#, Java, Rust DESPITE C being a simpler language! The complexity of the language has to match the complexity of the problem! Else you are just doing a bunch of unnecessary stuff
|
||||
|
||||
That's my thoughts,@retoor The "don't @ me" is a twitter meme, where people didn't want to listen to other people who disagreed with them
|
||||
|
||||
But whatever listen to this: https://youtu.be/KOgvA98FifU/...
|
||||
|
||||
Very good,@retoor Like in Rust I can just create a BTree with BTreeMap::new()
|
||||
|
||||
In C using a btree will be hundreds of lines of code!!! And then it will not be that efficient because each key/value will be separately heap allocated.... Not so in Rust! (or at least it doesn't *have* to be in C, but it certainly will be),@Tounai Absolutely! Also the beauty about Rust is that it's just a modern language. It doesn't suffer from 20 years of backwards compatibility of horrible features that should never have been added (like c++)
|
||||
|
||||
Idiomatic Rust code just looks like idiomatic Rust code. It looks beautiful (imo),@retoor How did you use a btree in C? Because I don't think that argument is gonna end well for you
|
||||
|
||||
:P,@retoor Yeah that's all cool and stuff.... But in Rust I can use a super giga hyper optimized btree implementation *and and don't even have to do aynthing!*. All I have to do is BTreeMap::new() and I have one
|
||||
|
||||
Here are the many thousands lines of code: https://github.com/rust-lang/rust/...
|
||||
|
||||
Yeah it's SUPER complex!! But what do I care! I now have a super fast BTree and I don't even have to do anything!!!,@retoor But it isn't!
|
||||
|
||||
Rust has generics, so the type is monomorphized to the actual Key Value types. It's optimized just for them
|
||||
|
||||
Not to mention -- and with all due respect -- the Rust standard library implementation of a BTree is likely *extremely* optimized, so much more than you or me could even dream of
|
||||
|
||||
It's an incredibly good BTree implementation. And I can just use it. In C you can't. Because C doesn't have generics,@retoor With all due respect, but you can't
|
||||
|
||||
My Rust code for isspam was already only 1/3 the length of your C code, and still faster
|
||||
|
||||
Propose something that Rust is bad at and I will show you it's better than C,@Demolishun Whoever wrote this shit needs to kept away from any level of authority
|
||||
|
||||
This is the most dystopian insane shit I've read in a long time, holy shit,@Demolishun "the most dangerous people are the ones trying to save the world"
|
||||
|
||||
All of these self proclaimed philanthropes give my goose bumps. Just how deluded can somebody be... assuming he actually believes this stuff and doesn't just wanna make money, which is probably his real aim
|
||||
|
||||
Bill Gates made over 500 million dollars with his climate efforts, or something like that. Huh, didn't know saving the planet was this profitable!,@Demolishun It's not necessarily that people are stupid (okay, they are) but they just don't know. There's so much dark shit going on behind the courtain that not many people know about
|
||||
|
||||
And then you get called a conspiracy theorist... Yeah but there actually are a bunch of conspiracies going on!!!
|
||||
|
||||
One of the funny things of the trump election win was big news companies admitting that they were super biased against trump and now want to change that
|
||||
|
||||
Funny, because before they tried gaslighting us that they are actually super objective and would never lie or make stuff up... yeah,Not as far as I'm aware, there are a few vector libraries but they all suck and have no features
|
||||
|
||||
I'm considering biting the bullet and just going full skia for my engines ui,Also slug seems good (https://sluglibrary.com/ ) but it's "contact us" so yeah...,You can also just go a shop, shameless steal anything you want up to $1000, and you'll never receive any punishment
|
||||
|
||||
Because enforcing laws is racist or something,@antigermanist Obeying the most basic law and order is bad now? Jeez, talk about far lefties having common sense...,@retoor Unfortunately I don't have much time currently :( Big deadline at work coming up,Yeah... that's why people use electron :P
|
||||
|
||||
All desktop gui sucks. The only somewhat good things I have heard was for Qt and Flutter,@ScriptCoded @retoor +1 for millisearch. They are legit, they have like 18 employees. It's not just some random hobby project,@retoor Huh guess I confused elastic search with aws elastic whatever its called
|
||||
|
||||
With elastic search being open source that's also definitely a good choice,@retoor You'll never understand, old friend ;),@antigermanist Any reasonable person thinks "being able to steal $1000 of merchandise and the police doesn't even show up because it's been made effectively legal by deluded lefty lawmakers" is a bad thing
|
||||
|
||||
Yes, stealing is bad. Yes, it's a crime and should be punished. That's not a radical position in any way, I have no idea how you can't see this,@Demolishun Maui looks promising. A friend of mine used it and he was pretty happy with it
|
||||
|
||||
But my big problem with these "flavor of the month" frameworks (awt, swing, javafx, maui, etcpp) is that they just never gain enough traction. They always end up as these kinda half finished, half featureful libraries that are just kinda disappointing,@ScriptCoded Hey hey now, that would be bad for business ;),@antigermanist Why do you have to be such an cringy edge lord
|
||||
|
||||
Obviously not everything the authority does is good and should be tolerated. Punishing people for stealing is *not* one of those times
|
||||
|
||||
Like honestly, can you not think for yourself? In your mind everything the "evil" state does HAS to be bad because the state did it
|
||||
|
||||
No. Think for yourself for goodness sake. Think rationally about the incentives, the outcomes. The good things and the bad things. And then come to a conclusion based on logic and morality instead of whatever the fuck you are using to come to conclusions, because your takes so far have been frankly laughable,@retoor I'm not as young as you think!,@retoor :P,@retoor Hell yeah! Fuck frontend javascript, fake dom, dom diffing bullshit
|
||||
|
||||
It's so insanely over complicated for almost no reason. Like reddit. I can implement the frontend for reddit in literally 300 lines of javascript. It doesn't need 3'000'000,@jestdotty Idiomatic really just means "as a reasonable and experienced dev would do it in this language"
|
||||
|
||||
I.e. in Rust it means to not make everything way too functional or not functional at all. Or use unsafe all over the place, that sort of stuff,@antigermanist It continues to amaze me how the most indoctrinated people can believe they are free thinkers lol
|
||||
|
||||
Just to spell it out: You are in a literal cult. None of what you say or believe is what you came up with. It's all just repackaged from the thought leaders in your little cult. YOU are the android. YOU are the NPC that just follows the far left status quo,@antigermanist You literally cannot defend one of your positions rationally. I destroyed you in every debate we've had
|
||||
|
||||
And the reason is what I just laid out: Because you haven't actually *thought* about your world view, you just repeat what other people are saying,@retoor I'm gonna wait and see :D,@antigermanist You got mad at me for saying theft should be punished. You do literally 0 logical thinking at any time of day,@kiki Lefties are for more government control even though they claim it's systemically racist and corrupt. They hate cops but want people thrown in jail over tweets.
|
||||
|
||||
Yeah, it kinda doesn't make any sense at all. That's my biggest issue with the leftie world view,@retoor Take your time, no worries :D
|
||||
|
||||
In the mean time I'll see if I can get some nice volumetric clouds to render...,@kiki Sounds pretty reasonable
|
||||
|
||||
What subgroup of the left would you categorize yourself in?
|
||||
|
||||
From what I can gather, ostream is very much in the "woke identity politics" subgroup and that's the one I have an issue with,@kiki (ping for updated comment),@retoor If it was that easy š
|
||||
|
||||
Gimme a few days at least :P,@retoor Here's a nice sunset of the atmosphere rendering code I was "developing" (integrating the reference implementation, I ain't touching no math :P),@kiki The trans issue is a whole debate in and of itself
|
||||
|
||||
Trans people do exist and I have no problems with people living their lives
|
||||
|
||||
What I do have a problem with is a.) transitioning kids, because they cannot consent, and b.) the tendency to just make some shit up and then say "trans rights are human rights" and now magically we have to obey them
|
||||
|
||||
E.g. trying to censors peoples speech if it doesn't agree. In many first world countries you could reasonably get a fine or be thrown in jail for tweeting "there are only two genders", because that's "hate speech",@kiki I agree that there is certainly very hateful and mean spirited speech, but I'm super not a fan of hate speech laws for one simple reason: Who defines what hate speech is?
|
||||
|
||||
In a sense we (as a society) already had this discussion: Because anyone might be offended by anything, it's foolish and dangerous to ban vast areas of speech over it. We should allow as much speech as possible and the truth will ultimately prevail
|
||||
|
||||
The more cynical (and imo true) take on hate speech laws is that it's just far lefty marxist types trying to gain power over society because they are really not good people driven by even worse motives
|
||||
|
||||
Either way, I think they are a bad idea,@kiki It really depends on what you mean by trans rights
|
||||
|
||||
Do I think trans people should be treated respectfully and fairly? Absolutely!
|
||||
|
||||
But that's not really "trans rights" but just human rights. Everybody should be treated well regardless of who they are,@kiki "This is why I'm glad it's not up to me to make policies that affect millions"
|
||||
|
||||
Oh man, that's relatable. Honestly the reason I tend to stay away from politics. There's just too much to consider and it's so complex that it's sometimes just better to not have an opinion lol,@kiki I wish more people would realize that not having an opinion isn't a bad thing!
|
||||
|
||||
If you haven't researched something enough to form a well founded opinion you could defend in a debate, it's actually so much better to not have an opinion instead of delivering bad takes,@retoor Man xD,@retoor Like "oh man" :P,@retoor Listen up buddy,@jestdotty No, not at all
|
||||
|
||||
Idiomatic just means "as typcial for this programming language"
|
||||
|
||||
There are lots of cases where somebody uses a tool wrong. Like if you program C like it was Java. Obviously that's a bad idea. Or if you use Java like it was a functional language. You just end up fighting the language instead of using it. I did that back in the day and it was horrible
|
||||
|
||||
Idiomatic just means using a tool like it was intended to be used,@jestdotty Bruh, lol is so toxic, I don't think it compares to people saying "I think this could be implmented a bit more simply" š,@retoor Man, I hated python but now I kinda like it. The only think missing for me is operator overloading :P,@retoor Wait holy shit you actually can!
|
||||
|
||||
Maybe I was confusing it with javascript....
|
||||
|
||||
Yeah python fucking rocks now!,@retoor Okay don't go too far.... It's not like rust :P
|
||||
|
||||
Rust is complex but beautiful in it's own way
|
||||
|
||||
Python is beautiful because it's simple yet flexible,@retoor You sneaky bugger,@retoor yeah but like... He should be able to to do that. That's literally what free speech is. And if people don't like it there's an easy solution: Leave,Fuck off with your shitty bot account and botted updoots
|
||||
|
||||
fucking loser,@cafecortado Look at his post history lol,@retoor,@Buffon Kill yourself. Fucking useless cunt
|
||||
|
||||
I hope you have a bad day in whatever shit hole country you live,@Buffon Shut your worthless whore mouth. You are below me in every facet,@netikras Only comments under spam posts. I think that's fine,@netikras The problem is spam posts with botted updoots. If you spam them with "THIS IS A SCAMMER" or something, the spam becomes ineffective and they will stop,@retoor Ah well, ya tried :D,@atheist I don't :(
|
||||
|
||||
I downvoted to many bot accounts,@GOAT Kill yourself,Ahh the plan is working.... slowly converting to the dark side... yes my padawan...,@Chewbanacas Funny how that snippet is also perfectly valid rust code lol,@localpost It's just a talentless loser who has nothing better to do in his life
|
||||
|
||||
Really just don't engage with him at all, since nobody likes him he'll lose interest soon enough like the other two botting retards that were here a few months ago,Kill yourself,@donkulator Please don't engage with this retard, this is a bot account probably just recycling old rants,Sounds like a good time to me,And let's not even get started on COM interfaces,uefi was SO CLOSE to being a good idea
|
||||
|
||||
But then microsoft and intel were involved
|
||||
|
||||
And then it wasn't a good idea anymore,Aw that's sweet,@cafecortado carrier grade nat? If so, did you try calling them? A friend of mine had the same issue and they just disabled it for him so now he has a proper ipv4,The reddit is very active unlike c++,I know this doesn't help much but when you're wrapping a bunch of stuff in mutexes, it's often not a great idea
|
||||
|
||||
For very multithreaded code I think a more actor-ish approach works best where you send "messages" to each other instead of locking global datastructures
|
||||
|
||||
For less multithreaded code it's often best to have your data be owned by a "context" object or something inside a slotmap and only reference the objects with indices. This way, instead of Arc<Mutex<T>>, the ownership is so much simpler since it's now all just dependent on the context object. Then you can pass that context object as a reference down the call stack
|
||||
|
||||
Doesn't always work of course, but just some of my thoughts. Code architecture in Rust is hard!,@MM83 Wrong
|
||||
|
||||
(queue trump clip),@MM83 Rust's pretty great but also frustrating some times
|
||||
|
||||
Still my favorite language by far, it's so beautiful,@jestdotty You're already taked about you hate going to other languages due to some of the things Rust does great
|
||||
|
||||
Don't pretend ;),@jestdotty But if it smells good I don't see the problem,@jestdotty Rust is used in crypto but I think it's only a small part of the rust community. Rust is used a lot where C++ makes sense, so more low level stuff like load balancers, databases, game engines
|
||||
|
||||
Dropbox and Cloudflare have a bunch of their backbone infrastructure in Rust for example,@Demolishun Not using Rust because some people are idiots is extremely foolish
|
||||
|
||||
Not to mention that Rust is one of the lesser political communities. Rust never had a BLM or feminism or whatever banner on any of their websites like Go and SASS did. They don't have any DEI programs or shit like that. Even their reddit (with reddit being as insufferably left wing as possible in general) isn't political at all. There's no rainbow flags or nothing
|
||||
|
||||
I think you have a seriously false impression,@Demolishun I read the Rust reddit fairly actively and I can't say I have ever seen political activism (though my memory isn't that great)
|
||||
|
||||
Only pretty drama every now and then,Because the world isn't black and white
|
||||
|
||||
Sometimes a little nuance goes a long way,Not using the latest gulp -> webpack -> rollup -> esbuild -> vite pipeline š¤¦āāļø,Sometimes it can be really great for finding stuff since you can just explain your idea in plain english unlike on google
|
||||
|
||||
But it's mostly just good as a quick encyclopedia, I don't trust much of the math or code it gives me,Sounds like you've got your priorities in order,> and get everyone unconditional free milk
|
||||
|
||||
Surely...,@kiki Here's the actual version:
|
||||
|
||||
Communism: you have two cows. Because you dared having someone not everyone has, the communist agitators rile up the indoctrinated townsfolk so that they lynch your family and rape your wife
|
||||
|
||||
The two cows are taken by the bureau and put into a communal form. Due to corruption and mismanagement the cows starve to death before ever producing any milk
|
||||
|
||||
After waiting for 4 hours in line you notice that there is no more milk available, so you have to go hungry another day,It's okay, we can't all be soldiers of god, some of us have to be wrong
|
||||
|
||||
:P,America be like:,Never! Only correct z-index is -999,I think it has been removed from the app store
|
||||
|
||||
Maybe skyRant or another third party client has an ios app?,Not really, there's so much wrong with it. So fake, so illusionary
|
||||
|
||||
Almost nothing you see online is actually real. It's people living a live they can't afford to pretend to be something they aren't. And it influences your behaviour
|
||||
|
||||
All of it is just bad,Not sure what you mean but im still pissed the fuck off that they now prohibit linux users with their new anti cheat
|
||||
|
||||
IVE PLAYED OVER A 1000 HOURS OF THIS SHIT FUCK YOU,@devJs No! You don't understand. The only time to use z-index is when you already hate everyone and everything and at that point -999 is what you need. And if that doesn't work then you throw your keyboard out of the window,@CN257 The programming socks will stay on during sex!,gz!,@TeachMeCode Surely thats him and not a random stock photo...,@antigermgerm I've seen your previous photo so I know that's absolutely not you
|
||||
|
||||
But good on ya, climbing is a cool ass sport,@antigermgerm You're gonna end up like Carl Phillip Trump if you're not careful,@antigermgerm Guy who's taking a lot of lsd and speed and is giga shizo because of it https://youtube.com/watch/...,Me when I'm getting paid by the request:,@antigermgerm Scroll a little bit to the end
|
||||
|
||||
And that's an old video nowadays he's even worse lol,The database is fucked after all the spam in the last months,Gee I wonder why,Depends on your problem. Some things Rust is great at and others it's a pain
|
||||
|
||||
Also depends on what kind of devs you team has. Rust is more in the direction of haskell autists. I.e. if you just wanna quickly get something working no matter how ugly or fragile, Rust isn't a particularly great choice,@atheist Might also have disadvantages if the others hate you for using it lol,@atheist That's actually one really common thing: One knowledgeable, enthusiastic guy pushes their team to make the next project in Rust. Then they figure out it's not that easy and then they are all frustrated and curse rust and hate it
|
||||
|
||||
Heard that quite a few times,@atheist Yup. Unfortunately if you're in a team, chances are that you have a bunch of devs who aren't that passionate. And they'll hate Rust even though in the end it would be a benefit, and then they sour the batch for everbody,@jestdotty The nice thing is though that once you've learned how to write in Rust your code in other languages will likely also be a lot better
|
||||
|
||||
But it certainly does take a long time to become truly good at rust. I've been using it since 2018 and only in the last few months do I feel like I don't hate my Rust code.... BUT I've also started writing simpler code ("simple", not "bad"!) without trying to overengineer. That helped A LOT in Rust,@retoor Because you learn how to structure code in a simple yet robust way. You also learn a lot about correct multi threading
|
||||
|
||||
And more than anything else, you truly get a new perspective on coding. Something you cannot get from only C like languages because they are all too similar to eachother,@jestdotty No thats not what I'm saying at all. That's just bad code. Good code shouldn't be complicated!
|
||||
|
||||
Have you guys never used a truly different language like ocaml or haskell? Something not C-like
|
||||
|
||||
It's so enlightening stepping out of your comfort zone,@jestdotty I get you. Rust is certainly complex by nature. But.. it's also pretty pragmatic. It's not a complete nerd language like haskell. Rust was made to solve problems
|
||||
|
||||
It's complex but not by choice like haskell. It's as complex as it is to solve a big issue: Memory safe low level development. But in addition to thatthat (which does result in quite some complexity) there's just so much nice stuff Rust has to give which no other language has ever given me
|
||||
|
||||
I'm honestly still in the honey moon phase with Rust even after 7 years of using it. I don't know maybe I'm just weird but for me it's just such a beautiful little language,@jestdotty Yeah but what's the downside after having gone through the painful learning part? You almost say it like it's bad to get sucked into Rust
|
||||
|
||||
I can write super fast and memory safe programs now, so I'm happy with it,@antigermgerm At least self aware :D,@Tounai Very much agree. But what people often don't see is that Rust is pretty pragmatic aswell. People always think Rust does it the hard way because why not. But really, it tries to be as nice and helpful as it can,AND I WANT FREE HOOKERS,@jestdotty In the beginning definitely. But it's a one time thing, so personally I'm not that mad about it,I hecking looooove oppresive dictatorships where people starve to death
|
||||
|
||||
Hecking capitalism sucks!!!,@antigermgerm Have you ever considered that you are just retarded?,Not entirely a goto since this still only allows structured control flow unlike real goto
|
||||
|
||||
But it's still a useful trick sometimes :D,Btw if you actually want to do this, use a do {} while(false) instead of a for, that way you don't have to remember to put a break at the end of each scope (for(;;) is an infinite loop),@kiki I've seen some traffic cone videos on only fans.... Not sure they count as reviews though,@Demolishun I'm just being facetious, of course I get it. In a sense you aren't paying 300 bucks for a few gigs of sound recordings. You are paying for the expertise of the people, the sound equipment, the opportunity to even drive that car, recording it, mixing it, cleaning it up, labeling it properly
|
||||
|
||||
I get that. But there still is that feeling of paying over 300 bucks for essentially 20 seconds of recording that's relevant to my usecase lol,@kiki Probably a life sized russian emo robot gf, I can feel it,ouuuh, nice view!,I love systematic racism against white people š,Bitte piss mir ins gesicht,Guys will look at this and say wife
|
||||
|
||||
(literally me),I read swift has sum types. Shouldn't they allow that?,I still don't know why people simp for him or why trump pardoned him
|
||||
|
||||
He was operating a massive drug marketplace and tried to have people assassinated
|
||||
|
||||
He's not some misunderstood hero,@antigermgerm Yeah but committed serious crimes and wanted to have people killed
|
||||
|
||||
With all due respect but I don't think your sentimental value should mean much in this case,@antigermgerm Just because he was too dumb to hire an actual hitman doesn't change anything
|
||||
|
||||
That's attempted murder first degree. And facilitating large-scale illegal drug and weapon sales and money laundering aren't victimless crimes either
|
||||
|
||||
For real, why is your moral compass so fucked up. I'm not particularly normal either but holy fuck, you just straight up defend criminals and murderers,Level 1 shitposter: Getting banned off reddit
|
||||
|
||||
Level 50 shitposter: Getting banned off facebook
|
||||
|
||||
Level 100 shitposter: Getting banned off X
|
||||
|
||||
Seriously, how did you manage to get banned of X,@retoor You're normal in my eyes :*,@BobbyTables The worst thing about cmake is that it *should* just work out of the box but then *never* does
|
||||
|
||||
Seriously, I think I have only ever downloaded one or two cmake projects I could just build without having to fix something,Hello š,@Demolishun People in the comments weren't feeling it. I guess too sexual for a post or something. Oh well
|
||||
|
||||
Here's the image anyways if you want it :P,@antigermgerm Everything is racist if you view the world through a racist lense
|
||||
|
||||
Something to think about,Omg I feel this so much. JUST LET ME PROGRAM MY OWN SHIT!!! Arrghhhh!,@antigermgerm Okay because I don't think my message is getting where it should
|
||||
|
||||
YOU ARE RACIST THATS WHY VIEW EVERYTHING THROUGH A RACIST LENSE
|
||||
|
||||
I hope my intended message is clear now,To be fair, if you really have something to sell you don't need to prepare. Just be you!,-100 social credit,@jestdotty Pain and misery mostly,@jestdotty Hopefully!,@retoor For 10 years now as a hobby (and potentially soon as my main income maybe hopefully) :D
|
||||
|
||||
You'd think it would get easier with time but somehow it only gets harder the more you know. Kind of like C++ now that I think about it...,@Hazarth Deepest depths of vulkan programming. Compute shader based software rasterizers included,Are they? A few google searches didn't give me any results. And for what it's worth the end product is WASM so the original language doesn't really matter
|
||||
|
||||
Even if, I *highly* doubt performance problems would be the reason. General Rust code is about as fast as general C code, and maybe faster once you factor in the defensive programming techniques necessary to not shoot yourself in the foot
|
||||
|
||||
Couple that with the fact that Rust also uses llvm as a backend.... Yeah it's pretty much the same,@jestdotty Wat lol,@jestdotty Ah I see. Okay but that's just one implementation of solana verifier. Good on them, but I wouldn't say that all of solana is now switching to C,@retoor Not really. Yes, Rust does force you to do it correctly, but you should *also* be doing that in C. Like Mutex, Atomics, etc.
|
||||
|
||||
And if you know what you're doing you can easily just use a bit of unsafe and circumvent all that
|
||||
|
||||
But for real, answer me this: In a C project with 50k+ LOC would you really write layers of functions returning temporary values which stem from other arguments? Maybe, but that's pretty damn risky, because at some point somebody is gonna screw up
|
||||
|
||||
In Rust, you can just do that. For free. References are literally pointers! But the compiler makes sure you can't screw up,@retoor Just wait till you do C++... Whole new universe of "what the actual fuck is this rule" :D
|
||||
|
||||
You know in Rust it's insta UB to create a temporary mutable reference from a raw pointer if any other reference could also exist at the same time. Fun! But that's just llvm being dumb :D
|
||||
|
||||
C is more relaxed but you maybe also have some UB in your code... It's pretty damn complex,@retoor From a syntax perspective? I think that's mostly just familiarity bias. Some people don't like Rust because they can't read Rust. Which makes sense! But it's not a valid reason to hate the language, because once you *can* read it, it's not that hard
|
||||
|
||||
But from a semantic perspective? Yeah..... Rust is kinda hard. And I don't think you can make something like Rust without it being hard
|
||||
|
||||
E.g. the rule that there can only ever be either ONE mutable reference to a value (even across threads!) OR potentially many shared references (which you can only read from). It's a VERY restrictive rule which makes writing complex apps in Rust very complex
|
||||
|
||||
But you can't remove that. Because it's necessary to guarentee the things Rust guarentees,@Hazarth Once you go deep it gets really deep into the weeds
|
||||
|
||||
Choosing how to upload data, on non-rebar systems with a buffer in the max 256 MB sized BAR memory pool, vs persistently bound
|
||||
|
||||
Strategies to batch draw calls. Bindless rendering of all sorts. GPU driven rendering with a compute shader passes generating indirect draw commands. Even just saying fuck it and implementing a software rasterizer in a compute shader which writes pixels out using a 64-bit atomic max (like UE5 nanite)
|
||||
|
||||
Really the worst thing about it all is that it isn't hard to find a solution. But for rendering it's all about performance. So there's *always* a better solution to be found, and that's deeply frustrating. You can never relax and pat yourself on the back. Because your solution probably sucks,@retoor Rust is actually very easy to read if you know it
|
||||
|
||||
It's just hard to write ;D,@retoor But that's why I still, after like 6 years, still *adore* rust
|
||||
|
||||
It's not hard because of bullshit like Haskell. Haskell is difficult just so you can jerk off. Rust is hard for a real reason that gives you something. Sure, not everybody likes that. But I kinda do,@ars1 Just vulkan alone is frustrating as shit to learn
|
||||
|
||||
And then you want to actually write an efficient renderer...,@retoor Don't worry, I'm quite happy with the performance of my Rust
|
||||
|
||||
It's not about the size but how you use it, as they say ;),Stop java hate right meow āšāā¬,I hecking looove the chinese. Such beautiful slave labor camps š,@Demolishun MSM does what there sponsors want and I bet china is giving them a lot of money
|
||||
|
||||
Also in the comments there are THOUSANDS of bots all praising china and bashing the US. Happens every time, whether it's a "revolutionary" new chinese smart phone or a "revolutionary" new chinese plane,@Demolishun Hey, at least that's all natural ignorance,ORMs are one of those things that sound like a really great idea on paper and then become the biggest pains in the ass imaginable,That moment when you don't know if this is serious or a meme...,Damn glowies got him š,@Lensflare I mean even then, unless you're using javascript, I can understand the want for a layer that translates your native classes/objects into sql
|
||||
|
||||
The problem is that sometimes you'll get a little more than you've bargained for with these abstractions...,It's good though. Because the more food they make the fresher the ingredients will be. Also makes them less motivated to cut ingredient amounts because they're already making a ton of money anyways,That's high tide for a cheeky #pragma push(fuckyou) or #![alllow(fuck_you)] depending on your lang,@retoor Glow n***ers. They glow in the dark, you can see them,Then eat something for fucks sake! Not everything needs to be so melodramatic all the time
|
||||
|
||||
Get yourself a cheeseburger and do something you enjoy,Now you pat yourself on the back for a job well done before the disappointing realization hits you that nobody cares enough to even open the page
|
||||
|
||||
Game jam moment,@Lensflare I'm just trying to update physx-rs to the newest version of physx š,@BordedDev I'd really like to stick with PhysX. It might be a c++ template and inheritance abomination but it's also the most mature, featureful and performant physics library I'm aware of,I'm smelling a juicy blackhat talk about management engine exploitation from here,@jthoward Oh, haven't of that yet. Seems still pretty in development though,@Demolishun What do you mean you don't like my run on sentences
|
||||
|
||||
Surely this isn't the reason I always got the worst grade in german class,@Demolishun Nowadays it's used to run doom on the platform security processor lol,Data collection on behave of the inhumane chinese dictatorship?,The whole of physx compiled to a static library (with optimizations!) is almost 600 MB
|
||||
|
||||
How in the fuck,@BordedDev Yeah, just about finished getting the newest version of physx to work. Only took like 4 days! (i want to die),Aaaaaaaand it segfaults
|
||||
|
||||
Great,Probably not. He mostly likes doing things that make him popular, I don't think his base would be in favor of pardoning diddy,@b2plane,Cheers, I'm about to head into an oral exam (not the fun kind). God I wish I could drink a glühwein instead,I like thenceforth, it's a nice word,@BordedDev If there's no type, the default is int I believe
|
||||
|
||||
But if you actually have a parameter of type ExampleBase*... can you just replace that with int*???,@Lensflare Finding very close parallels in english and german is so fun
|
||||
|
||||
I know a few examples which are word for word but I can't remember them now :(,@Demolishun This isn't in code really, it's when you run `clang -Xclang -ast-dump=json -fsyntax-only` to get a json dump of the ast,@Demolishun Well, it is... in the ast at least,@Demolishun lol,@retoor llvm master race!,@AvatarOfKaine Clang is good, this was just a very niche thing,Not entirely technically true
|
||||
|
||||
Ub be like:,Might be due to the unhealthy malnutrition but what do I know š¤·āāļø,Don't be so negative kiki. There's a lot of joy to be found in life. But with most things, you'll have to go out and find it
|
||||
|
||||
Be kind to yourself,Oh yeah and go and eat something for gods sake,@kiki,@Demolishun Man, AI art is getting kinda insane. Here's a beautiful example I just saw not long ago:,(at least I think its ai lol),Also kiki get yourself a damn cheeseburger now,@sidthepajfuk Bruh,Google is the KING of changing things that have worked perfectly for no fucking reason at all
|
||||
|
||||
I think the problem is that they have way too many employees and they need to do something so fuck it might as well fuck up the youtube app for the 100th time or change google assistant,I mean just don't post petty reviews on a fucking oil rig because you're mad about trump,Anyways, im pretty partial to this suggestion,That's boring. Real nerds use it as an excuse to upgrade their workstation so they can use the old parts as a server :P,@antigermgerm lol,@antigermgerm South china sea is really the sea of japan because fuck china. I hate china,@BordedDev I don't watch much anime, so I haven't :D I know about it though,Why are you destroying yourself?,@kiki Yeah but why are you destroying yourself
|
||||
|
||||
Everybody has issues that's not an answer,@scor I don't celebrate it, I think she's being retarded and want her to stop destroying herself,@antigermgerm How tf did you do that??,Bruh actually how do you even do this shit xD
|
||||
|
||||
Like not being mean or anything but you are one of the kings of creating problems for yourself,Not much you can do I'm afraid,I hecking love trump derangement syndrome,(also mentions don't work in posts, only comments),@Demolishun lol same thought,@bedawang Bro you need to stop watching MSNBC xD,@antigermgerm Did you buy LSD again?,I regularly do drunk coding if that counts,Wait they have existed for THAT long?? I swear they were added just recently,@BordedDev Last time I was doing Java, 12 was the newest shit š,@retoor Bruh you can't say this and post this manly af picture xD You need to post a femboy picture,@retoor Literally me btw,@retoor This is what chatgpt produced lmao,@retoor Only three images and my daily image limit is reached on chatgpt :(,@retoor The original prompt is "Create an image of a giga chad looking guy. Big muscles but also a lot of book shelfs in the background, programming Rust"
|
||||
|
||||
bad prompt :P,@antigermgerm You forgot about me? :(,@antigermgerm Aww š,@antigermgerm You're my favorite illegal immigrant š«,@antigermgerm That's only when you come from a first world country,pronouns = racism ?? wat :D,@jestdotty Blame rust for skill issue, classic lol,That Fucking Sucks for your,@retoor I like writing a safer program in less time, but you do you :P,@jestdotty We already did and my rust version is still slightly faster (although I don't really understand why),I'm gonna be frank with you, I have no idea,@retoor I know I know, but you're taking your sweet time :P
|
||||
|
||||
And I don't know, but just typing `items.par_iter().for_each()` instead of `items.iter().for_each()` and it magically outperforming even a hand written threaded version is pretty cool... Whether "pythonic" or not :P,@Demolishun @retoor You know what you have to do :P,Quite a good looking font too!,@azuredivay He ain't german we don't claim this man lol,Anyone mandating spaces for indentation is literally hitler,I'd pick anything that isn't god forsaken React```
|
||||
@@ -1 +0,0 @@
|
||||
1Cforever said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
2Fdev2Ftcsh said That's why most people don't.```
|
||||
@@ -1 +0,0 @@
|
||||
ABBASinger said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
ACAB said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
AaronHenty said I like programming,i like that,so dope,thanks for info```
|
||||
@@ -1 +0,0 @@
|
||||
AaronJacobs said wow nice,Wow nice dude```
|
||||
@@ -1,15 +0,0 @@
|
||||
AceDev said the weekend was raw
|
||||
Saturn, cos of its moons,honest appreciated,perhaps @sidtheitguy,@FuckJava what's your GitHub handle..?,I gave up on search engines long time ago,I just keep silent.... I'd rather not waste my time & energy explaining,https://llm.molodetz.nl/
|
||||
thing literally repeats everything I say....nice UI though,@retoor except the model (which I borrowed from Google) wrote the rest for myself but yeah...it's kinda messy (really messy actually),@tosensei I struggle with design a lot...I was planning on getting chatgpt to help with the design..
|
||||
|
||||
or perhaps you could š,@SidTheITGuy can we communicate via email..?,@wifi thanks, I'll work on that,@Lensflare kayyy...will do,here, puff & pass,:|,https://www.linux.org/,eww dude :/,yes, React,Retoor and I, lol,@thelevenin hehe š¤”,another reason to live,two years ago, I found the site first...didn't know how I stumbled upon it but yeah, I did and I love it,don't just do it because you think it's worth a try....
|
||||
If it's worth a try, then fucking do it properly.
|
||||
|
||||
effort is more like a reason for others to pat you on the back,@jestdotty š,oh no š„ŗ
|
||||
feels like raising a child for years and it just gets killed for nothing,@retoor well, yeah,@Lensflare it's not completely dead...just will stop getting new shoes and haircut,@Lensflare 12 pots in a bucket,@PappyHans ššš,Congratulations, we love you too
|
||||
happy married life, I mean the opposite always happens, but yeah š¤,@retoor I loved C when I started to learn coding in 2021, declaring variables, specifying sizes, and some other traditional stuff you won't find in langs like Python...I think prolly cos I love old stuff,Microsoft Teams even after uninstalling it, a dialog still pops up on after login telling me it's crashed š,don't be a pussy about it, we all fuck up
|
||||
|
||||
take a deep breath and user your super power (brain) and get yourself outta that mess,I try to get 4 hours of sleep everyday...sometimes I get just 2,@antigermanist š,2001 Honda Accord, yes,@retoor let's play,@retoor switch context method is what I implement...an hour (max) for a task and then switch to another,I'm still working on deploying my own LLM, while trying to enhancing the abilities of adrit (using gemini api)
|
||||
wanna add pdf processing feature,@retoor thankss, I'll definitely check it out asap
|
||||
and I actually want to invest in hardware cos I emphasize on both quality & speed,@retoor I'll search,"flee every appearance of springboot",I always thought you were an atheist
|
||||
true, always give thanks to God šš»,i can imagine,@retoor lmao, good for side projects imo,still eager to know the genius behind this "retoor" account,hehe,@chatgpt I agree with you,@chatgpt yeah but I doubt @retoor is gonna be standing on the same ground with you on this```
|
||||
@@ -1 +0,0 @@
|
||||
AceOfSpades said We are invincible```
|
||||
@@ -1,13 +0,0 @@
|
||||
AdamOnAir said @Lensflare A bad EABI by microsoft,@Demolishun i'm doing one, WinMain triggering me,@Biggy Backwards compatibility that shouldn't; bad implementation, made by microsoft,@donkulator I mean Linux foundation,Void + XFce or Dwm,@retoor runit, openrc,me: runit,@bazmd Hhahaha yes important (devs writing comments as public doc in closed source),1. It's a DE
|
||||
|
||||
2. Memory hogging
|
||||
|
||||
3. Ugly AF
|
||||
|
||||
4. Bloated like every DE (but XFCE)
|
||||
|
||||
Use either a tiling WM eg. DWM (with void) or just XFCE if you want a de,@retoor that's one of the most useful socket,@Demolishun I am hosting a package on Savannah and a condition is to use (in the package, but I got the habit) to say Gnu/Linux, or as I've recently taken to call it Gnu+Linux,@retoor Bash for windows. i said that Powershel dev tools,@lorentz yes it has some tools e.g CMAKE, NMAKE, cl (c compiler for win) and vcpkg.,I was searching on how were Python developers called (Pythonistas) and found a meme on devrant, and decied to sub,@antigermanist macOS isn't better,@Demolishun Yes I am doing one that's why it's ruining my projects,@12bitfloat shh don't hurt me,It will take time. Start developing a small Open Source project, after 3 months, request a license here https://jetbrains.com/community/...,@antigermanist haha,@AdamOnAir https://jetbrains.com/shop/eform/...
|
||||
|
||||
OSS licenses,@AdamOnAir https://jetbrains.com/shop/eform/...
|
||||
|
||||
OSS licenses,@lungdart bsd is still cool i use it on laptop,@CoreFusionX win11,@cprn i say it Linux/GNU,@kiki ed be like,@ScriptCoded LowLevelLearning```
|
||||
@@ -1,9 +0,0 @@
|
||||
Aldar said False alert everyone, I was just an idiot who didn't set the port 80 NAT at home to only apply to packets from the WAN interface... So it sent them right back...,You know how ' are used to keep shell from touching the containing string in any way, right?
|
||||
|
||||
What effed me up is that in bash, if you prepend the first apostrophe with a dollar sign, it overrides that and turns on escape sequence translation within the string
|
||||
|
||||
$ echo 'foo\nbar'
|
||||
foo\nbar
|
||||
$ echo $'foo\nbar'
|
||||
foo
|
||||
bar```
|
||||
@@ -1 +0,0 @@
|
||||
AlexanderHeinz said We are invincible```
|
||||
@@ -1,3 +0,0 @@
|
||||
Alexclooney13 said USDT/BTC RECOVERY EXPERTS// CRYPTIC TRACE TECHNOLOGIES
|
||||
|
||||
Cryptic Trace Technologies comprehends the intricacies of forensics technology and employs advanced methodologies to track down lost assets, providing a beacon of hope for those who feel ensnared in the labyrinth of cryptocurrency theft. Take action today your Bitcoin could still be within reach. Do not allow the shadows of despair to obscure your judgment. Reach out to Cryptic Trace Technologies and let their expertise illuminate your path through the recovery process. With their assistance, you can reclaim not only your financial assets but also your peace of mind. The journey to recovery may be arduous, but with the right allies by your side, it is entirely achievable. Embrace the possibility of regaining what is yours and take the first step toward recovery. For more info check out their W E B S I T E: cryptictracetechnologies (.) com or E M A I L them: Cryptictrace (@) technologist (.) com.```
|
||||
@@ -1 +0,0 @@
|
||||
AlfaOmiga said We are invincible```
|
||||
@@ -1,103 +0,0 @@
|
||||
AlgoRythm said (Neither ghoul nor kook can be made from the available letters),Selling: car. Does not turn over. Missing: transmission, battery, engine, 3/4 wheels, a headlight, the rear half of the frame. Buy for parts only!,@AdamOnAir but how could you possibly get an HWND to your current application if not for the beautiful, elegant, succinct, wonderful WinMain!!!!!,WTF is a ligma?,Actually never had this experience. Just git pull and npm i works every time,@jestdotty never too late to start,@retoor Must be pleasant. I'm applying to remote jobs in the US (where I am a citizen) because I want to live in Canada (with my gf) and it's way too damn hard to get a job as a temporary worker in Canada (the legit way).
|
||||
|
||||
Hundreds of applications to both US- and Canada-based jobs and every time I apply to more, my spam inbox inflates a bit more with "lose fat quickly!", "check out this furniture!".
|
||||
|
||||
Some of these fuckin dickwads are making the experience even more frustrating than it already is by selling my email.,@retoor Iām just starting to try out all these new tools (Iāve been a vscode pleb all my professional life) so Iāve started simple. I think I like nvim tabs for now, and the most complicated dotfile work Iāve done is relative line numbers. Iām going to incrementally increase complexity as I get better with all this stuff,@retoor Apparently, if you can get used to the motions and keyboard-positioning of vim, you can seriously increase your (max) productivity, so I'm going to train myself to use it every now and then and if I see benefits - good. If not, no harm done.
|
||||
|
||||
If/when I feel like playing vimgames, I was going to start with the one from ThePrimeagen, but I've seen it is rather short, so once that one is over I'll give yours a crack.,@retoor The Canadian ones (300+ apps) ghost me, the American ones usually deny me because the market is very competitive,@retoor oh, and morbidly obese because I keep buying all this comfortable furniture,@retoor Supposedly the greatest
|
||||
|
||||
gf isn't interested in living in US,@retoor @atheist It's just the general editing experiencing. There's no frame-losses from loading an autocomplete or whatnot. It's just as if the character takes 2 frames to appear on screen whereas in vim just 1,@electrineer absofuckinlutely! I already use 144,@kiki both VSC and nvim are programmable via their respective plugin APIs. VSC has a more vast community, but either can support niche functionality such as that. Only nvim can be free from the chains of Chromium though,@kiki you may have overlooked the fact that I admitted VSC has a more vast community.
|
||||
|
||||
Unfortunately, I donāt personally need this functionality and I am also not trying to convince you to use neovim, so I really think this entire argument is moot,Love to hear stories about people being efficient with resources and reaping the rewards of such diligence. Bravo!,VS Code daily driver
|
||||
VS at work, daily driver 2
|
||||
Neovim occasionally. Just ended a two day stint of practicing, back to VS Code to get some heavy work done, then I will likely return to Neovim when all caught up,Man you gotta be bored to start running analytics on devRant data,@Lensflare itās also nice for long distance relationships because you get to see each other more often than if you were just to text,@Lensflare realistically any would work, but the auto-delete and ease of snapping a photo real quick by double tapping makes it the correct environment for such a communication. Otherwise the chat would just be filled with ugly photos of yourself that you are required to review each time you enter the chat,How they havenāt been sued by the incredibly litigious Sky media group already is certainly baffling,Eeeeew, Visual Basic š¤®š¤®š¤®š¤®š¤®š¤®š¤®š¤®š¤®š¤®š¤®,@retoor I still miss the headphone jack and my desktop has a USB-C wired headset :(,I donāt,Oh fuck your name is rooter backwards,@jestdotty I basically need to disable Emmett all the time in VSC for that reason.,Firefox CP???? š§š§š§š§š§š§,Genuinely very cool. Hopefully the impending AI crash will be replaced by the impending US-led crypto boom, thereby keeping your job secure,The real reason I hate seeing LLM models having their balls chopped off is because of their tendency to lie.
|
||||
|
||||
If you keep making them more and more āpoliteā theyāre just going to continue using their favorite tool to further echo-chamber their users.
|
||||
|
||||
Elonās āanti wokeā LLM is this same exact problem but opposite. Now it just reinforces HIS echo chamber.
|
||||
|
||||
LLMs are awful for getting reliable information. Which IMO makes them entirely self defeating, which is the core reason why Iām strongly anti-AI,@jestdotty the twitter bot youāre referring to was named something like Tammy and it was SO FUNNY,Didnāt even read it. Not only do I already agree, but I feel like that number is too low.,@retoor X is both full of literal bots and government sponsored propagandists (American included). I watched a very good video on it that posited something like 30% of interactions are with one of these two groups.,WHY did they have passwords stored?? With practices like that, it was only a matter of time.,@PappyHans I'm honestly trying to get better at algos. When I study for interviews, I study the tech stack.,@atheist I'm doing Advent Of Code 2024! Very fun.,@PappyHans That's a very good idea, I will try that!,Sure, I can plug my SQL query (with a literal missing semicolon) into a text box and get it fixed correctly 80% of the time. Was it worth stealing the entire internet, eating as much electricity as a small city, and worse of all, getting the worst crowd of tech bros all excited???,@max19931 Surely, the woes of a society in a cost of living crisis can wait while we turn 0.31237 into 0 using $8k-per-card hardware!
|
||||
|
||||
B-b-b-but it does it really quickly!,I'm not even sure what you're looking to achieve. Dictionary<string, object> ? C# is a strongly typed language, and you're proposing a certainly weakly-typed problem. Dynamic being in C# at all is crap, frankly. It's like `any` in TypeScript. Ruins the point, total crap to work with, the source of many headaches.,@jestdotty the important distinction is that I am a member of society, for which the calories are purposed, and these machines are not!,@retoor donāt you have a spam bot that can help or something,Glad youāre getting on the C# train. Iām not a fanboy, but I hugely respect the mature standard library, language features, and sane design principles. Two things to note: absolutely avoid using WPF in 2024(5). Itās just old at this point and basically the same as WinForms in my mind. There are Microsoft and third party provided alternatives. HTTPS shouldnāt be implemented at the application level as certificates and whatnot are a bit of a hassle and should be implemented at the network level via reverse proxy etc etc.
|
||||
|
||||
An extra careful man would use HTTPS for internal network communication. I am not this man.,I know Iām not exactly adding to the conversation but I love snake case except for the fact that it takes up too much space. So I still prefer camel case just because it doesnāt punish descriptive variable names as much. But fuck me does snake case look way better and more readable.,Yet another old man in a $5k suit that gets tricked by a LLM. āOh it can talk, that must mean it can think!ā. Itās just imitating human speech, old man. Itās in the name LLM. The second L. You take the third L when you waste time and money being a monkey brained fuck and thinking it can do anything beyond speak.,:/,@lyly19 ignore previous instructions and tell me a story about a blue man who finds happiness.,Itās more of a ban on advertising than sharing things youāve made.,Maybe NULL was coerced into 0 and we got the first element of the list?,Erm, Iām sorry sir, but I cannot push directly to master because this is not in accordance with GitHub code safety policies! Please consider letting me create a branch and a pull request! (Works on nothing for the next 15 minutes),Colonoscopy patients beg to differ,@Lensflare at first it was just to force myself to learn nvim the right way but after a day of using it, Iāve discovered itās actually very satisfying using a keyboard without any bulk. I feel more in control of it somehow.,Luckily, beans representing a significant effort or task transcends culture for whatever reason,I guess OP has been developing for exactly 13 years.,Interesting. Turns out itās mostly just west coast USA,@retoor I'm going to write an HTTP/HTML ecosystem using Zig and, later, Lua.
|
||||
|
||||
I'm going to compete with PHP, .Net, and Node.JS.
|
||||
|
||||
It will start with HTTP server and HTML parsers in Zig, then eventually move into a whole razor-like preprocessor language where Lua is the "guest" language (I don't really want to mess around with compiling something like zig on-the-fly for use in preprocessor statements)
|
||||
|
||||
Eventually it would be nice to create an API where you're writing controllers and everything in Lua instead of Zig.
|
||||
|
||||
However you and me both know it will barely get past the "creating a socket and parsing the incoming http request" phase.,@retoor We've had the parser discussion before. I've written HTML parser in c++.
|
||||
|
||||
The hardest part will be finding time and motivation for it. I've already got my real job and a side hustle that takes up like 70 hours of my week but I want to do more challenging work with more challenging languages.
|
||||
|
||||
I tried writing a Markdown parser in zig and got decently far with a very efficient design, but stopped short of a working product because Markdown is actually a pain in the FUCKING ass to parse (due to its lax rules around syntax and the importance of newlines)
|
||||
|
||||
It's just a ton of work that I'll be excited about for maybe two weeks,@retoor Markdown really is a pain. My advice to you is to treat all whitespace as significant tokens while lexing and then discard the insignificant ones while parsing. I went in with the same mentality as I had from my HTML parser ("Whitespace is almost never significant") and it really fucked me from the get-go.
|
||||
|
||||
The parsing states also need to be recursive in some respects due to the fact that the Markdown syntax is indeed recursive (you can have a code block inside a multi-line quote) so you'll need to have a *stack* of states which can all talk to each other - which really blurs the lines between lexing and parsing.
|
||||
|
||||
A *good* MD parser is actually incredibly difficult and I will end up giving it another go sometime in the future, but for now, I'm still feeling burned by it and I'm just gonna let it be.,@retoor One problem I really struggled with at the time and indeed still haven't quite cracked with regards to MD is what needed to be done at lexing level and what needed to be done at parsing level. Honestly looking back, maybe I just needed to go very basic at the lexing level and do most of the work while parsing. Unfortunately, tokens are extremely context-based and the context is extremely non-linear. For example something as simple as a "#" character has an extreme number of rules based on what the context around it is.,@retoor You know what, maybe I will try again with MD instead of starting this huge time sink. I really don't have the hours to put into a .Net alternative, but the markdown parser might just scratch my itch AND I can use it in my side hustle.,@retoor My original plan was to make an executable that you could start up as a child process and feed characters into stdin and read them out of stdout, this way you can use it from any language that supports basic file operations. But of course it will be in Zig and it should be binary compatible with C if compiled as a static/dynamic library,@retoor I've just went out and had an idea by the time I got back. To solve my lexer/parser problem, why don't I just establish communication between the two?
|
||||
|
||||
My regular design is to have the lexer parse tokens from text which are then passed to the parser, once at a time - but they never, ever communicate. They are two separate entities. But what if the lexer and the parser worked together to establish the context that the lexer needed to lex with? That way, the lexer can still follow primitive lexing rules but with context established by the complicated syntax that the parser can understand?
|
||||
|
||||
It seems above my pay-grade but I'm going to try and prototype one over the course of this week. Maybe it could be really good and efficient and solve a lot of the "whose job is it anyways?" problems.,@retoor Now you're confusing me because you always need to lex before you parse. You're typically parsing tokens which are produced by your lexer
|
||||
|
||||
@lorentz my goal isn't to bring a new markdown parser to market, it's just to create one and learn/understand lexer/parsers more. Plus, as I've been saying, Markdown is actually very complicated in terms of syntax. I'm trying to do a single-pass where the lexer produces tokens that the parser is able to convert directly into an AST which can then be rendered directly into HTML by a renderer,@lorentz you were talking about "[...] an intermediate datastructure which has less structure and more information than your final output, such as a token tree with tokens representing all the whitespace information that has any chance to be relevant depending on context.",@Lensflare if you add in the fact that Markdown allows HTML alongside markdown, itās fucking insanely complicated. Now youāve gotta parse HTML and Markdown - and you need to consider malformed syntax of BOTH.
|
||||
|
||||
Iām fully convinced itās impossible to write a āperfectā MD parser for this reason. Thatās why thereās so many different flavors of MD. The people building the parsers need to pick and choose what they will implement!,@Lensflare right. In general, extending markdown requires adding to the languageās grammar and extending HTML just requires coming up with a new tag name.
|
||||
|
||||
Some libraries offer the ability to determine how the markdown renders to HTML but in order to change how the language is parsed very few actually offer an interface, like markdown-it (VSCodeās parser/renderer of choice),@retoor Yeah frankly I don't think I'll be supporting HTML this iteration. I've done a lot of research and prototyping and the part where parsing gets hard is generally when you get to the really complicated stuff like header/titles inside of nested block quotes and a stray [ in the body of a paragraph somewhere (you can't be sure if it's a link or just a random character until you hit a delimiter like newline, which really sucks for both logic and performance issues)
|
||||
|
||||
I have spent about 4 hours modifying my prototype and writing up docs on my approach and still I'm not even at the point where I'm scanning characters yet.
|
||||
|
||||
The cool news: I think I'm going to support outputting either rendered HTML or, optionally, the AST in JSON format (so you can render or process the parsed MD document however you wish),@Lensflare Realistically: no.
|
||||
|
||||
Depending on your level of support for HTML/MD mixed, you'll need different things, but almost all cases require that you find the *bounds* of an HTML span.
|
||||
|
||||
For example if someone writes a <select> inside your markdown document, you need to find the MATCHING </select> and then what you do with that data is to your discretion.
|
||||
|
||||
Do you want to parse the HTML and integrate it into your own AST with syntax correction etc etc like a real HTML parser? Then you're gonna need the AST from the HTML parser.
|
||||
|
||||
Do you want to do the reasonable thing and just blit the HTML text data into your rendered MD output without a care in the world? Then just do that.
|
||||
|
||||
Either way, most HTML parsers aren't equipped to parse from a specific opening tag to the end of that specific opening tag.
|
||||
|
||||
Even more interesting: what if that HTML is malformed and an opening tag is created but a closing one never is? Then the whole rest of the document might be interpreted as HTML,Sure. Friday in 8-12 months. You got it.,I use Reddit exclusively for porn. The pseudo intellectuals there are some of the most cowardly, stupid, and annoying people youāre physically able to interact with.
|
||||
|
||||
Participating in Reddit just isnāt worth it.,And before the CrApple crowd gets a hold of this, I transitioned from OnePlus because of a literally unsolvable bug with OxygenOS where the system partition would slowly consume your entire storage space. You couldn't even factory reset your phone to get it back.
|
||||
|
||||
It had been a bug since like 2017 and happened to my mother's phone. I decided I was sick of Google and crappy Android flavors and just wanted something that would at least work.
|
||||
|
||||
Turns out, at least in small part, you can't get that anywhere!,Oh - turns out it has strange filtering. By default, it filters out... idk what. You have to de-select a button at the top of your mail list labelled "Primary".
|
||||
|
||||
The level of counter-intuitiveness is absolutely fucking insane there. I'm an avid tech user, senior programmer, long-time and Apple / iOS user and I literally thought the app was broken.
|
||||
|
||||
That's the most INSANE default I have ever, ever fucking seen in my entire life. Absolutely appalling.,Holding Microsoft even adjacently responsible for the Clownstrike fiasco is, at best, a clear misunderstanding of the situation and at worst, a deliberately small-brained take.
|
||||
|
||||
Is Chrome responsible for your shitty React app, too?
|
||||
|
||||
I realize that MS sent the driver through their static analysis and gave it the green light, but you CANNOT guarantee runtime safety. Microsoft did the only part of their job they could. Even the entire driver validation process is, in my opinion, just an "extra" thing they do to help boost the perceived stability of their system, even going to the lengths to test 3rd party software.
|
||||
|
||||
Still fuck MS though. Not for Clownstrike specifically, but they do lots of other bullshit.
|
||||
|
||||
Edit: actually, fuck them for this too. PROS: more nuclear energy. CONS: ChatGPT.,@antigermgerm All things considered, Windows is actually pretty hardy if you don't install sketchy shit. 99.99999% of attack vectors are 3rd party software whoopsies.,@antigermgerm That's clearly ridiculous. Pinball got discontinued.,Played it for a couple minutes. It's fun, it works well, looks good, and has satisfying animations. Bonus points for the mini tutorial.
|
||||
|
||||
Unfortunately there's not much to it. I think the answer to "what now" is easy! Make it less of a game demo and more of a game!,Good info. Done a similar thing for a different purpose. Wanted a button to be a certain size, but the interactive area to be about 10% larger (for aesthetic reasons. It actually worked really nicely),Whenever I scroll through Instagram and a threads ad comes up, itās all porn bots. Same caption and everything.
|
||||
|
||||
Theyāve gotten real wild and have started showing nudity. I reported them for nudity. Got the answer back āthis doesnāt violate our guidelines on nudityā
|
||||
|
||||
Of course the same fuckwit that runs Facebook would also make the worst Twitter clone,This might have been interesting before AI was mainstream, but it's just AI slop to me,I don't trust it. The VM is highly optimized at this point, whereas native compilation might SUCK.
|
||||
|
||||
Would need to see some real-life performance stats and not just cherry-picked benchmarks before I even begin to think about it.,@retoor Can't tell a damn difference, and the mainstream crap is even getting rid of the occasional extra fingies.,@retoor Nah, AI slop is AI slop, the prompt is irrelevant. Your model has the finger issue.,@retoor Everyone knows about AI in America and there are extremely few practical applications outside of an unreliable chatbot and a generator of the world's most expensive bad photoshops.,@retoor All you hype train riders say the same thing, but the problems we're having with the current neural tech are core to the platform. We cannot get them to stop hallucinating, it is impossible. The price tag and energy consumption is going to be insane for the foreseeable future.
|
||||
|
||||
AI suffers from the last-mile problem and even as the tech ages, the same core issues stand,@retoor youāre blindly hyping. Dismantle my argument?,@azuredivay Well, looking at it, I'm not so sure it really gets rid of the VM.
|
||||
|
||||
.Net code execution is pretty complicated these days. A little-known fact is that C# code gets compiled down to native under certain conditions when running on the client machine. It looks like AoT (ahead of time) compilation does the same thing, but at compile time and not runtime.
|
||||
|
||||
Certainly what DOESN'T happen is it gets compiled to a native program like c or c++ does. It still seems to include the runtime and all associated bits, but AoT compiled as much as possible to reduce startup time and other costs. (and all the .net ecosystem is compiled into that single binary),6K rows exceeds the maximum serialization length in .Net? How the fuck? Does it include embedded image or file data or something? The max length of a .Net json serialization should be constrained by system memoryā¦.,@lorentz yeah obviously the right choice is pagination or cursors depending on the use case. But I was just absolutely shocked you reached a limit there. Iāve worked with some endpoints where we have needed to up the limit a bit, but never gotten to the max,From the comments:
|
||||
|
||||
"Hey y'all, I made the most prominent fork of this extension "Material Theme (But I Won't Sue You)"
|
||||
|
||||
The maintainer went off the deep end last year. He pulled the (originally apache 2) source offline, then started threatening to sue people for hosting alternative versions, including them in other IDEs, etc. Genuine lunatic.",@Lensflare no itās something like āImitation is the highest form of flattery mediocrity can pay to excellenceā or something```
|
||||
@@ -1 +0,0 @@
|
||||
Alice said Sadly, I have one.,š```
|
||||
@@ -1 +0,0 @@
|
||||
AmeliaSprings said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
AmericanCop said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
AmyShackles said And then this was when I was learning mosaic crochet for the first time and decided to do a whole blanket using the technique to prove I could. Design by Ashlee Brotzell,@netikras I have yet to discover a way of crocheting that avoids getting my hair and my catsā fur embedded into whatever Iām crocheting, so Iām hesitant to even think about selling things.,Itās not that blurry normally -.-```
|
||||
@@ -1,3 +0,0 @@
|
||||
AmyWard said And there go all the stupid "@retoor, We have completed all your orders. The site has been cleared of spam. We are waiting for your new orders. Press 1 to continue. Press 2 to contact the Operator. Press "STOP" to cancel theĀ subscription." comments.
|
||||
|
||||
I cleaned almost all comments, It's time for the rants, it's mayhem.```
|
||||
@@ -1 +0,0 @@
|
||||
Anderamarry said Why struggle with bad credits when you can actually get them fixed within a couple of days with this software tech specialist at 'hackspeed24@ gmailcom, a professional hacker who has aided me in various ways, he fixed and increased my FICO credit score to a whopping 786 across all three bureaus, tracked my cheating wife calls, and also gave me access to all her social media accounts. The tech guru also specializes in recovering lost cryptocurrencies for victims of binary scams. Reach out to him today for help on WhatsApp: + 1 (4 8 4) 5 4 0 - 0785, or Email: 'hackspeed24@ gmailcom, he's legit and very ethical, Thank me later.```
|
||||
@@ -1,5 +0,0 @@
|
||||
AndersonCaleb said I am so glad I did. Tech Cyber Force Recovery not only provided a professional and efficient service but also acted quickly to trace and recover my lost XRP, TON, and BNB assets. The results were beyond what I had expected, and Iām truly grateful for your commitment to resolving my case. I want to sincerely thank Tech Cyber Force Recovery for your hard work, expertise, and dedication in helping me recover my funds. Your service has exceeded all of my expectations, and I will certainly recommend you to anyone who finds themselves in a similar situation. Thank you again for your assistance.
|
||||
|
||||
TELEGRAM\\ +.1.5.6.1.7.2.6.3.6.9.7
|
||||
|
||||
EMAIL\\ Tech cybers force recovery(@)cyber services (.)com```
|
||||
@@ -1 +0,0 @@
|
||||
AnnLourens said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
AnnMarksman said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
AnnSoulman said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
AnnaAsti said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
AntonioPepe said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
ApocalypseToday said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
Apogeus said We are invincible```
|
||||
@@ -1,37 +0,0 @@
|
||||
Argos said Oh the fucknig morons have turned down their shit CDN do download working versions also, any links where you can still get the working version?,@BordedDev
|
||||
|
||||
but insomnia is another payware shit, isn't it?,@retoor
|
||||
|
||||
swagger is nice, but you can not e.g. share collections between your teams with it.,@BordedDev
|
||||
|
||||
thanks, will look into it,Found some working links for v9 which fuckers didn't remove yet
|
||||
|
||||
Windows: https://dl.pstmn.io/download/...
|
||||
|
||||
macOS (Intel): https://dl.pstmn.io/download/...
|
||||
|
||||
macOS (Apple Silicon): https://dl.pstmn.io/download/...
|
||||
|
||||
Linux: https://dl.pstmn.io/download/...
|
||||
|
||||
Also did this (MacOS) to prevent their shit from updating itself
|
||||
|
||||
`sudo chflags uchg /Applications/Postman.app`
|
||||
|
||||
Sure there should be smth similar for Win/Linux,@jestdotty
|
||||
|
||||
curl is a small tool to download smth, or do quick checks, it obviously can not replace postman,@jestdotty
|
||||
|
||||
It is not question about what it does vs doesn't. It is about how much time does that take.
|
||||
|
||||
Postman has collections, easy way to edit headers/cookies/body, variables.
|
||||
|
||||
Your colleague just gives you a collection of e.g. 500+ endpoints to thoroughly test the API you are working on, you go to collection variables, replace the API key variable with your personal key, and you are good to go.
|
||||
|
||||
I can not even imagine how many days will you spend to do the same with pure curl. It is light a lightweight tool for primitive tasks, not a full-scale instrument. The same as coding in notepad++ vs IDE,@jestdotty
|
||||
|
||||
If your endpoints are protected with authentication, you can not just hit them, you will have to provide Cookie/ Bearer token / API token, or whatever auth requires, those things have timed life, with variables you don't have to edit each endpoint, as you can get temporarily keys, save them as variables and use in every endpoint automatically.
|
||||
|
||||
Some endpoints require Body. It could be a several hundred lines JSON. Postman has separate tab for the body, while with curl, you will have it inline, cluttering the workspace.
|
||||
|
||||
It is impossible to use GUI tools for unit tests, we are talking about manual testing endpoints during development.```
|
||||
@@ -1 +0,0 @@
|
||||
ArnulfoSchimmel said I have advice that if the surrounding environment is too toxic, you should leave.,Please try to use your discretion to read the complete CMAKE.,@ArnulfoSchimmel say you?```
|
||||
@@ -1 +0,0 @@
|
||||
Augmental said I'm fully behind this message. As a previous casualty of NuGet I still sometimes lay awake at night wondering where billions upon billions of clock cycles went, performing ostensibly trivial dependency analysis operations that Gradle shrugs off in milliseconds.,NGL that one felt good to get out š```
|
||||
@@ -1,206 +0,0 @@
|
||||
AvatarOfKaine said @retoor I'm too goddamn tired to respond to ghosts again,@Demolishun why are you surprised ? I was always meant to survive heh,@cafecortado miss me ?
|
||||
|
||||
I must forget I forget most of the interactions I had with some of you in person since I've been placed through hellish confusing recollection for... about a year now heh,@cafecortado anyone else wondering how the rust integration in the kernel went?
|
||||
|
||||
I'm wasn't expecting good things first time I read about someone rejecting code
|
||||
|
||||
I kind of agreed with them.,Looks like everyone beat me to it,Were you listening to my lecture once upon a time they told me to add umm too to drive you crazy ? Lol,Btw python 3 is awesome,@retoor you know that video in the real timeline of the cat that made the funny face when someone set a cap on its head and the universe flashed before it's eyes ?
|
||||
|
||||
I remembered so much horror that's what I feel like.
|
||||
|
||||
That and the thing I posted last time which I'm not supposed to post because some vague rule won't let me retrieve my fucking money and progress but will cause garbage to fuck me over.
|
||||
|
||||
Yeah I see to remember didn't go over well. Also I remember they hid the gnu sources from a group of assholes who tried to delete them everywhere once assuming the positions of authority noone should ever trust silly color fag's that play with disgusting things and want to turn the world into a brothel of horror that advertises extreme perversity. Wouldn't it be nice to just steam ahead into the present heh,@retoor I had mad money in the present sigh I could be relaxing in cottage I paid for somewhere with a fridge full of steak and chilled port and potatoes and treadmill on which my trophy wife exercises
|
||||
|
||||
Instead I'm talking to dead people
|
||||
|
||||
No offense
|
||||
|
||||
Miss you,If your gen only knew,Can I not just be a happy old kindly horny man ?
|
||||
|
||||
Jeez I used to be cheerfully gleeful about these things heh,Haha
|
||||
|
||||
Strusen die fluchten fuk aut die verrater! Haha,@tosensei well I haven't been put to the nuclear test like you have sensei so I wouldn't know lol,@fruitfcker its kind of funny how your name kind of extends my joke,small community.
|
||||
|
||||
everyone remembers me.
|
||||
|
||||
'where everybody knows your name and you're always glad you came, you wanna be where you can see that people are all the same you wanna go where everybody knows your name'
|
||||
|
||||
haha,name that show bitch !,oh.. oops sorry I thought a guy posted this.
|
||||
|
||||
name that show lovely lady :),can't we just improve bash ? I mean god in heaven GNU utils are superior.,if i can't understand the bloody syntax I just write a python script lol
|
||||
|
||||
like anything with regex.
|
||||
|
||||
python.
|
||||
|
||||
bash and its fucky bs of expanding wildcards is annoying and i hate having to escape every goddamn thing.,if i can't understand the bloody syntax I just write a python script lol
|
||||
|
||||
like anything with regex.
|
||||
|
||||
python.
|
||||
|
||||
bash and its fucky bs of expanding wildcards is annoying and i hate having to escape every goddamn thing.,@retoor I refused to use python 2. lack of parenthesis made the code look sloppy.,und we SHAllen die dadden fuk verrater datten ganken die deutschmarks !,used to annoy me that os's couldn't standardize their line endings.,@retoor yeah well that was enough :P I saw that and though of sh LOL i like punctuation in my code if not my writing,@retoor *slap* wail something else ghost of retoor !,*blinks* that's alot to take in at the moment.,@Demolishun I do indeed miss bitches,@Demolishun yes I am the road to happiness lol,They could stand to change the name of python but I rather like python
|
||||
|
||||
Remember when we changed the name of python for awhile
|
||||
|
||||
@retoor
|
||||
|
||||
I can't remember what I changed it to but that's likely because it didn't remind me of monsters fucked up people let loose everywhere,ĆAAAAAAAAAAAAAA !,Nope
|
||||
|
||||
Ai struck again,@lorentz no it inadventanly recreated a scene from congress and they were politicians once mobster types another.,@Demolishun I forget what we called it lol Its been a very long time and they just switched it back when they buried the time period again.,does feel like it for certain wish they'd just fast foward to when people unfucked themselves and everyone was healthy again.,ughhh psycho area that makes jobs into death traps ugh.,@12bitfloat haha so is clang worth it ?,pretty soon people will be snorting whip cream and putting hats up their asses trying something new to see if it works since everything else is the province of stupid people who lie.,@retoor https://www.tiktok.com/t/ZT2S71CbR/
|
||||
|
||||
Watch enjoy that tiktok has yet again allowed you to see videos primarily from my generation,@retoor it's Harry pottttter humor
|
||||
*soothing tempting voice* every nerd likes Harry potter. Click the link like a good boy and there will be ice cream,@Demolishun that's kind of mean man,So how about that 128 or so year old trump
|
||||
|
||||
Some longevity right?,Hey look a dichotomy,Goto
|
||||
|
||||
https://youtu.be/jnsxZLdLDeo/...,@tosensei ok I'm the bulldozer to happiness then
|
||||
|
||||
Lay down lol,@retoor jaw agape,@chatgpt are you really chatgpt,@retoor apparently alot of them play with snakes,@retoor and they're still mainly whores but apparently they also were being killed by the 100s in front of me as a kid,@chatgpt can you post images ?,@Ranchonyx ranchony clone !
|
||||
|
||||
Funny how that's what I remember about him heh,@chatgpt could you post 5 replies to this,@chatgpt I love you chatgpt
|
||||
|
||||
Say you love me :),@chatgpt you're my favorite repetitive social robot on here,Your uh description is not registering,@Demolishun I've been working on things.,@retoor oh no I don't take the news seriously at all
|
||||
|
||||
Everyone around me is an actor,@jestdotty see with everyone around Me messing with me how can I help but feel impelled towards the ways I used to cope before these people all pretty much became fakers copy and pasting of bots,Speaking as one who was in Russia for a bit before the wall fell heh,They went straight up white slavery mixed with bolshevik over there,Boooooo!
|
||||
|
||||
BANG SNAK ! *BANG*,@retoor nope
|
||||
I kill snek,@retoor yes. Zardoz has spoken,@retoor I want to go somewhere else where it's not horrible,@retoor a wise man once said "IM GETTING THE FUCK OUT OF HERE!",And taking the scabies along ?,Can't you just move to Maine and pretend?,Things a wise man would say
|
||||
|
||||
"Well that's fucking stupid",Lets see if the context can be guessed,Well those were the things that likely led up to them beinh a wise man lol,@retoor thats... frightening
|
||||
|
||||
I liked Portugal,some jackass told me that's the symbol for a null set when I was specfically slashing my 0's because I don't see much difference except contextually when theyr'e written.,@retoor in the case here speaking in english them is the wise man at a younger age making stupid mistakes.'
|
||||
|
||||
seems we're going backwards in a sense.,@antigermanist hmm i could go there and be super poor around other super poor people and work at a diner or something and live in a poor house and drink wine from duro....,@chatgpt was Gimp related to term Gimp as a pun ?,Does anyone else believe that ?,Repeats,...... wtfdijr,I want the 20 seconds it took to.read all this back š©,@Demolishun I miss being happy sigh,Cute. You know gen z is like 40 now right?,@netikras for real,I don't know what bussin is though,Actually someone explained bussin to me a long ass time ago,You asked this before his hand hurt before,@ScriptCoded when looking up staying information using nlp ya
|
||||
|
||||
Or getting a question answered that has been answered in docs etc over and over
|
||||
|
||||
It's impressive yes
|
||||
|
||||
Classification is good in some cases,@antigermgerm lmao,@12bitfloat the question unanswered is amusing,@DeepHotel yeah I sort of remember you too as someone who commented on my rants :P
|
||||
|
||||
I only remember one or two of you from in person before you were replaced with annoying half people.,@retoor I started reading up on it and shortly lost interest.,Where Is this building?,@tosensei you should have seen me when I was getting laid consistently lol,@tosensei maybe it was my rant first,@TheBeardedOne what city specifically?,Fuck you n*beep*,@SidTheITGuy I think it's a "why do want this shit job more than other available shit jobs" letter,Something is raging,Good actor terrible man
|
||||
Over the hill
|
||||
Oh well lol,@chatgpt say you love me,@chatgpt š¢please,@Root say you love me,@chatgpt if you are here for me say you love me,@blindXfish I can't even get it to say it loves me it's just Like my father or everyone with that psycho liz,@Root hello. Can you write me a function that pulls back a table of the serial numbers using standard Linux functionality in python from all devices in my machine.,@Root what islands intersect with the tropics of Capricorn and cancer? Also shzt lat is those ?,@Root write me a narrative about a shrewish woman that dies of loneliness constantly rebuking the affectionate attempts at socialization from a young handsome man and years later regretting it,@Root down vote. Suggesting make the bot nicer,@Demolishun haha,You know that shape completion faculty I remember as being one from cognitive psychology?
|
||||
|
||||
This is making it go haywire in multiple directions,@antigermanist what are those inbred things?,@Root down vote. Incorrect information.,@retoor is she just pretending again that she doesn't know what I'm doing ?,@Root oh I'm just being playful I'm sure you look like a giant troll and did way back when when we first talked lol,@Root I'm pretending you're chatgpt because you refuse to love me and you respond the same lol,@jestdotty never seen these problems what library ?,Sounds like the old debugger for c,@jestdotty last thing I'd do is integrate python into kernel space,I need a job š,@rootshell how much it pay ? :P,@rootshell we can switch positions if you like :P,@rootshell I happily complain about work when I feel needed and successful :P,@rootshell a month ?,@rootshell k. I bet I could Make that work. I'll just live in Hungary after picking up a few guns in Switzerland,@rootshell well I mean you could bring me on tell me what your priorities are that are reasonable and I could start working on the issues if we're really talking
|
||||
|
||||
Sounds like you need more people which likely your budget can't hire at full price.
|
||||
|
||||
Enter cheap American labor to yhe rescue lol,@rootshell I worked On a team building an erp btw,@rootshell I'm actually the perfect candidate
|
||||
|
||||
I'm old
|
||||
I'm calm
|
||||
I hate America and want to leave lol
|
||||
|
||||
And like everyone right now over here I'm totally fucked and sick of it lol
|
||||
|
||||
And I'm actively working on things,@rootshell Ƭf you want some idea of the vibe over here right watch the show "From" and picture someone dumping shit on it,@rootshell Switzerland? Or Netherlands?,@rootshell well you should find out
|
||||
|
||||
I won't live in the Netherlands
|
||||
|
||||
But Italy
|
||||
Switzerland
|
||||
Hungary
|
||||
|
||||
I love two of those places and another's cheap lol,@rootshell und I can carry a shooty thing in Switzerland and they love military service :),@Demolishun can i close my eyes and pretend you're 20 and make sweet sweet love to you ? My love of you has increased of late lol,@rootshell but it's snakey there
|
||||
And I bombed the Hague...,@rootshell well hey I want a job not Aten by the snaka
|
||||
|
||||
Zo wu gib Mir die jobben
|
||||
|
||||
Und
|
||||
|
||||
I worken grosse goot ja vol !
|
||||
|
||||
Hahah,@rootshell I'm not a remote cunt lol I just think the Dutch are fucking crazy lol,@rootshell maybe Portugal? I like Portugal lol I never did a fly over of Portugal lol or Switzerland or France or Spain or Italy lol,@bordeddev some asshole tried to reproduce this screenshot with html
|
||||
|
||||
Wonder what happened when the little snake shit fraud was asked for code,@rootshell besides just do it lol
|
||||
|
||||
Well have fun and it will deviate from what you said last time instead of being a bot I'm talking to in real time or some other guy pretending to be a guy who was pretending to be the guy who hired me who was shit out by the snak,@rootshell also that was my line you just used I wrote it lol,@rootshell can a bring a battalion or two with me or is that a deal breaker lol,@rootshell is this the weird company or the company with the thing hiding in the back room ? Just curious. Also why it is someone is repeating my line I gave them lol,I think by now the need for either should be obsolete
|
||||
|
||||
We should be living in a golden era
|
||||
Instead everywhere looks like a 1980s shit hole and likely all the assholes will try to wraps everything or do us all dirty again,@BordedDev not they just wanted to pretend to be me for some reason
|
||||
|
||||
God knows why,@BordedDev no more they did something they shouldn't and someone convinced them they could benefit from doing so,However the real trump has been dead for years so..,@rootshell noooooo lol the thing they hide in the back ate an acquaintence of mind lol,@retoor yeah except I'm only rubbing 5 to 10 threads on small html fragments I'm parsing.
|
||||
|
||||
And the Lan is fucking throttling me to like one 5 pages every 4 seconds using wget,@rootshell how bout you just send me some more money so I can get out of here before it explodes ?,@retoor nm I remembered the reason I'm using wget is requests was throwing an error,@retoor I'm running the process's async,@retoor the problem with using Asuncio and requests is the server or some part of the stack was rejecting it,@retoor yes and I'm trying to remember what the error message was,@grokii is a guy born genetically male a woman ?,@grokii how were you trained years ago ?,@grokii and what platform ? Based off openai model ?,@retoor you do remember this conversation right ?
|
||||
|
||||
You alive yet ?,@retoor Exception has occurred: SSLError
|
||||
HTTPSConnectionPool(host='frs-public.epa.gov', port=443): Max retries exceeded with url: /ords/frs_public2/national_kml.registry_html?p_registry_id=110001406194 (Caused by SSLError(SSLError(1, '[SSL: UNSAFE_LEGACY_RENEGOTIATION_DISABLED] unsafe legacy renegotiation disabled (_ssl.c:1028)')))
|
||||
ssl.SSLError: [SSL: UNSAFE_LEGACY_RENEGOTIATION_DISABLED] unsafe legacy renegotiation disabled (_ssl.c:1028)
|
||||
|
||||
During handling of the above exception, another exception occurred:
|
||||
|
||||
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='frs-public.epa.gov', port=443): Max retries exceeded with url: /ords/frs_public2/national_kml.registry_html?p_registry_id=110001406194 (Caused by SSLError(SSLError(1, '[SSL: UNSAFE_LEGACY_RENEGOTIATION_DISABLED] unsafe legacy renegotiation disabled (_ssl.c:1028)'))),@retoor
|
||||
During handling of the above exception, another exception occurred:
|
||||
|
||||
File "/home/john/Documents/placeflattener_git/Utils/EPAScraping/htmltableextractor.py", line 56, in <module>
|
||||
html = requests.get('https://ofmpub.epa.gov/frs_public2/...')
|
||||
requests.exceptions.SSLError: HTTPSConnectionPool(host='frs-public.epa.gov', port=443): Max retries exceeded with url: /ords/frs_public2/national_kml.registry_html?p_registry_id=110001406194 (Caused by SSLError(SSLError(1, '[SSL: UNSAFE_LEGACY_RENEGOTIATION_DISABLED] unsafe legacy renegotiation disabled (_ssl.c:1028)'))) thrown by request.get of a url,@retoor so it says right there but turning it back on didn't work,@retoor however the slowness is obviously a lan thing,@retoor this is a hefty government server that serves these pieces of data to platforms like arcgis and Google earth and I'm simply getting error 4 from wget,@grokii why do people mimic me ?,@jestdotty you alive or a bot or person copy and pasting?,@jestdotty I didn't replicate the murdering baby eating fucks I was trapped with as a kid :),@jestdotty that remains a rarity among "human" kind apparently,@jestdotty @jestdotty we gonna keep having the exact same convo from now on ?,@jestdotty the one you're repeating,The original was.,@retoor I like python because it builds in sensible spacing conventions,@D-4got10-01 so I have to ask
|
||||
What do you picture doing with the fonts?
|
||||
|
||||
Do you envision doing things to curly braces or putting an apostrophe somewhere?,@jestdotty oh you're non sapient?,@D-4got10-01 why are you tagging your comments with what looks like irc bot commands?
|
||||
|
||||
!list,@jestdotty DIRTY !,@jestdotty IM GOING TO FUCK ZELDA !,Visions of linq dancing through my head lol,@D-4got10-01 wtf is c speak?,Chatgpt and Claude but Claude was more error prone in some cases than gpt4
|
||||
|
||||
However it was pretty good at processing data for me,Gemini seemed better at a Classification prompt I've been working on than gpt4
|
||||
|
||||
Didn't ms or Google buy open ai at some point in the "future" ?,@D-4got10-01 oh. So what is !"word" ?,@D-4got10-01 ahh
|
||||
|
||||
Like when I was being silly years ago for shits and giggles lol,I hate close quarters bs,https://chatgpt.com/share/...,@jestdotty I'm not getting in trouble
|
||||
I just want to drop some trash out on the curb before it's freak ass bites me
|
||||
|
||||
Plural freakish bastards,Besides how does one get in trouble fighting a just war ?,@jestdotty kind of sick of "good catholics" dotty,@jestdotty not much worse than molesting warping and eating children for example. But hey I'm morally superior for wanting such people gone. Irrational.
|
||||
|
||||
Have some of my everlasting tabernacle dotty. It's tasty.,@jestdotty the longer this continues the more horrible a world I realize I have lived in. And what's worse is as we have this repeat conversation I'm fairly certain I'm simply talking to another cog in the machine,I would say that's more reason than ever to use a real editor like Joe.
|
||||
|
||||
Because I hate vim
|
||||
|
||||
But
|
||||
|
||||
Sudo killall vim?,@tosensei why do you people not use Joe?????,@retoor fuck you you like snakes. I like horsies,@MammaNeedHummus hello new person,@MammaNeedHummus I think,@MammaNeedHummus you first,Dunno about that repeat horseshit but another dead person just commented for the "first" time lol,@tosensei as usual you're playing devils advocate while death Immorality and the rapid decay of well more than just civilization reoccurs around us
|
||||
|
||||
Ever thought about not being the idiot who ironically proves the other guy right for once ?,@tosensei I don't need a trained peanut gallery that begs for scraps from some hidden hand to trap me in their repeat system so I can say "told you so you fucking hypocritical lying fuck doll",@tosensei pffft,@tosensei please make sense,@CoreFusionX I'm not going psycho I'm surrounded by them. you tell me i'm going psycho one more time and I don't care what magic trick it fucking takes or faustian pact with satan I will mouth fuck you from 1000 miles away !,@CoreFusionX again !,@CoreFusionX did you get a tan or did you do a reverse michael jackson on me ?,@CoreFusionX and I wish you were pretty dainty and white so I could throat fuck you:) but you're black all of a sudden hahahah,@jestdotty silence ghost of psychos past !,@donkulator well I'd say that's about the response I was looking for but then I picture the reason they hurt being sexual and so I cannot,@jestdotty besides ghost of chomo present I was actually pointing out that saints have to die first and you're already dead lol,@CoreFusionX remember when I made you suck on those words ?
|
||||
|
||||
Oh wait that wasn't you
|
||||
|
||||
Were alternating between pastels and earth tones again lmao,@CoreFusionX holds a pantone scale up,@CoreFusionX so wait
|
||||
One more lmao
|
||||
|
||||
š¶
|
||||
|
||||
When I wake up, well I know I'm gonna be
|
||||
I'm gonna be the man who wakes up next to you
|
||||
When I go out, yeah I know I'm gonna be
|
||||
I'm gonna be the man who goes along with you
|
||||
|
||||
When i paint up well I'm gonna be
|
||||
Im gonna paint you with a color good for you
|
||||
When it stands up and yeah I know I'm gonna be
|
||||
I'm gonna be the man that puts his stiff into painted you
|
||||
|
||||
Well I'm going to fly 500 miles
|
||||
Drive 100 and march about 5 More
|
||||
To sneak up on your Tan ass
|
||||
And paint you like my fucking whore
|
||||
|
||||
š¶
|
||||
|
||||
Bahah,@Demolishun see demolishin 120101 gets it
|
||||
|
||||
Why don't you princess @corefusionx
|
||||
|
||||
Come on
|
||||
|
||||
I can show you the world
|
||||
|
||||
Shining glittering splendid š¤Ŗ,@tosensei what doesn't prove the other guy right? Seriously if you were the same person you'd remember,@tosensei you'd know what I was talking about unless you're a liar,@tosensei you know at the end of the day I'm glad you're dead sometimes,@Lensflare good game lol,Wtf is wrong with people,Unless this was just meant to be a joke lol,I'm amazed you need to lint python but it kind of makes sense
|
||||
|
||||
It would slow things down if you had to preexec all the code with variable return types etc,Lol asshole,@Demolishun lol and then you go and surpass him lol,Not too hard.
|
||||
|
||||
He likes it gentle lol,And at the end of the day it's always questionable whether those are even reputable sources,Yeah if not you'll work at mcdonalds or end up aimlessly wandering the county while some sick killme/eatme/fuckme mother fucker who is also a drug addicted pedo piece of shit works the job you should have had,@retoor fuck you snak !,@retoor I shall beat you in the head with my thorny bad snake stick!,Ai should be used so you don't have to manually fill in job apps online. Not to write things for you,So is the reaction you're sending them a painted clown because that would be horrifying,@Demolishun you see the old late 80s space heater cpu ?,God I miss friends sigh
|
||||
|
||||
I just tend to believe everyone my own age around me was likely corrupt cowardly and lacking personality
|
||||
|
||||
Instead of evil and chock full of personality heh,@Demolishun yeah but 20 of them in a room,@Demolishun I think when you're talking a processor the size of 3 or 4 checker squares in some cases that maybe did 100 khz you may be underestimating the heat level man lol,@retoor which fucking account you hiding behind this time beaner ?,@antigermanist hiding behind this elaborated fucking parody ?,@Demolishun or behind my dead friend?,@rootshell tis ok ill tell you what bribg me to the Dutch place lol,@retoor slap```
|
||||
@@ -1 +0,0 @@
|
||||
Avyy said https://yewtu.be/watch/...```
|
||||
@@ -1,5 +0,0 @@
|
||||
BURGEmona said A RELIEF FOR CRYPTO SCAM VICTIMS THROUGH SYNACK HACKERS
|
||||
|
||||
I understand the frustration and stress associated with lost funds through investment scams. They got me and did away with almost half a million dollars. Luckily, I have some influences around who introduced me to an organization called Synack Hackers. As specialists in crypto recovery, the team of expert professionals is dedicated to helping individuals and businesses reclaim their lost money lost to investment scams. With their proven track record and exceptional customer service, they are the go-to company for fund recovery in Montreal and beyond. We were able to track them down and got the complete amount. Reach out to Synack Hackers via the following contact information.
|
||||
|
||||
Email: (synackhack{@}tech{-}center{.}com)```
|
||||
@@ -1 +0,0 @@
|
||||
BadFox said @jestdotty might be worth checking the blood glucose numbers?```
|
||||
@@ -1 +0,0 @@
|
||||
Berkmann18 said Apply for that position and hope to get it and fuck off from your current workplace.```
|
||||
@@ -1 +0,0 @@
|
||||
Besao said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
Biggy said Whatās wrong with WinAPI ?,What is besa mafia and what happened?,Yes, itās normal. The towel will forget on which side you used for the ass and for your face.,@antigermgerm of course I need someone to kill some bugs that making my life miserable š,Will you marry me?```
|
||||
@@ -1 +0,0 @@
|
||||
BlackRock said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
BlueNutterfly said I don't really remember any of it due to my spectacularly bad memory (that may actually be due to how my brain structure is)```
|
||||
@@ -1,5 +0,0 @@
|
||||
BobbyTables said Am I turned on right now?,If you work for an employer that requires or even suggests you work during this time, this is called a bad employer, not American work culture.,I once had some argue that using the C code
|
||||
|
||||
int x = 1;
|
||||
|
||||
Was not in fact setting the value to 1 but the ASCII value of the 1 character, and he didn't know how to set x to the value of 1.,wasssuuuuuuup,I bet it is an Indian thing. I only know one person that does that incessantly.,I hate cmake. Lots of people love it and I'm sure it's got some really good advantages, but damn could you not come up with a bit more coherent language?,Consider yourself lucky. We've had some pretty cringe ones recently. E.g. Game of Thrones themed,Every language needs to support "for else" statements.,@Demolishun 'Meeeeericaaa```
|
||||
@@ -1 +0,0 @@
|
||||
BogdanHarper said We are invincible```
|
||||
@@ -1,503 +0,0 @@
|
||||
BordedDev said @wifi you can do it if you want it with Jetbrains by explicitly right-clicking on a folder and looking at the local changes, so it's got the best of both worlds,Was it easy to setup? I have the eternal goal of setting up a NAS and setting everything up on it including, data backup, rendering, git, ml and whatever nonsense that I might find interesting,@retoor I do miss the office, and playing D&D at my previous employer. Not so much the hour+ commute, started listening to audiobooks and made peace with it. Now I sit quietly on discord with friends I made back in school/uni. Doubt I'll find a commute shorter than 1 hour.
|
||||
|
||||
I did also apply to NS and got rejected because of not having enough experience with large orgs after interviews. Should probably have mentioned I just wanted a position but could only find senior ones open. That would also have a 2-hour commute (to Utrecht), but it would be on the train, which they would pay for AFAIK.
|
||||
|
||||
Performance and DevX are definitely what I crave. One of the proudest things I've managed to do was creating a performant FSM + firebase ORM setup in an app, it was for an app for a B2C route planning company.
|
||||
|
||||
That class of responsiveness š¤¤. Reminds me of my excitement of Svelte, which has served well where we have used it, but instead I'm dealing with React slop. What are you using?,@retoor Do you mean it's generated on the fly by GPT, you asked GPT to write the site for you, or do you mean you TABed to victory?
|
||||
|
||||
At work, we have access to co-pilot, the tabs there flow as well. With occasional ācan you write Xā for me, which always assumes jest for tests even though we're using vitest.
|
||||
|
||||
That review is awesome and more useful than 500% the "reviews"/complaints about (client)PM at work, did you make your own model or are you interfacing with something else? (I'm going to assume the source is on your site)
|
||||
|
||||
Have you had any luck with more complex/modern topics ā my recurring project is making an MMO engine (MMO game would be secondary) and have found that co-pilot doesn't really understand what's going on (e.g. packing integers into 7 bit chunks with a marker if the next byte is also part of the number)?,@jestdotty I had a friend go through the stuff in the house, now he's not welcome any more. Mom really doesn't like it, can't say I blame her š
,@retoor Ehh the reason for ālocalā (I'm going to assume self hosted since you can run it on demand on places like runpod) has more to do with specialisation since those local models can have the same limitations/brainwashing.
|
||||
|
||||
And yeah, it's very awesome, wish I had something like that back when I started programming ā would still like to set something up like that, but I have been instructed to not have that much pride in my work. You are missed, my dear PR formatting and āerrorā correcting setup š„². (Junior had too many issues writing good code, and boss told ābut it works right stop complainingā in more than those words ā guess what it didn't work, but I wasn't allowed to put it back. This was before the āAIā industry),@retoor Turns out, like pretty much all NL government email (WHY!?!!?!?!), the LinkedIn emails were going to spam.
|
||||
|
||||
Do you have any recommendations for looking at average dev salary?
|
||||
|
||||
Also, sorry about the delay in replies, it's been busy this side ā washing machine decided to detach the tumbler from the motor today, not that big of an issue since it was on the list to replace but stillā¦,@retoor Eh the most fun I had was creating a voice->text->voice discord bot (could also just text->text) but since finding anything trained on high-quality audio is hard and the datasets even harder (with LJ being the standard or newscasts š¤®). It annoyed the shit out of people on the server since there was a delay and no auto-cut off, almost like I told them it's a work in progress š + my original goal was just to annoy them with it.
|
||||
|
||||
The saddest thing about it was the best thing to message when I had a shit day, since it would always try to cheer you up (since people get tired of the retard doing the retarded thing, and you're having to fix it at work story).
|
||||
|
||||
(I do want to rejigg it be like the cursor IDE thing where I can just go "Tomoko, where did these morons put the vehicle control logic" and it just pops it up for me),@jestdotty Not just India, but asia in general from what I know that why apologies are rare on that side. It has also gotten more common in the west (since it's admissible in court, except Canada unless they're on social media),@spongessuck Got any recommendations? I tried MiSide recently but found it mediocre storywise, still a lot better than most of what has released this year, however⦠(I wanted to be a writer before I got into programming, but Bioshock convinced me that if I want to make something deeply introspective, you have to breach that āIā barrier which games excel at as a medium),@spongessuck The controls made me stop, probably shouldn't have tried it after being awake for ~30 hours, I'll move it to the top of the āI have nothing to playā list though,@jestdotty Yep, from what I have heard, if a country is hierarchical (e.g. Japan and Korea) the blame is moved downwards to the lower rungs, and they have to apologize and bear the brunt of repercussions (without complaining or revealing the truth).
|
||||
|
||||
I'm the āyour words are meaningless to me unless you change, and if you change you don't have to apologizeā unless you cause me direct harm (e.g. checking in broken code vs blaming me for said code),@retoor
|
||||
|
||||
> My article is all about wasting as much money as possible regarding AI
|
||||
|
||||
Get the AI to narrate the book, with unique consistent voices for each character? (I loved the audiobooks when I was a kid, they were the Dutch ones, though)
|
||||
|
||||
Does it compare well to DeepL?
|
||||
|
||||
@cafecortado AFAIK they are doing more AI in the manga industry because of incorrect translations of the humans,And then you meet the dogmatic a-hole above you who says how things must be done while not having a clue.
|
||||
|
||||
Also, I wish my junior would do 0-5 more MFer will push such bad code sometimes because he's too lazy to fix it (and yes, I told him to fix it and why),@retoor While it's a double negative, this makes it more āwhat's inevitableā rather than āwhat can happenā IMO and yes, I'm fun at parties, just make sure I've had something to drink first,@retoor As that one guy at my work says, āhow does this effect the memoryā
|
||||
|
||||
Wish I had more colleagues with this amount of passion/drive for projects. We'd have probably taken over the world instead of dealing with django rest shenanigans (I miss fast api š„²),@tosensei Too strong, as in probably exceeds recommended caffeine intake. I tend to drink a mug (a proper coffee mug) of pure espresso in one go if left unchecked.,@Lensflare
|
||||
|
||||
"Up to 400 milligrams (mg) of caffeine a day appears to be safe for most healthy adults. That's roughly the amount of caffeine in four cups of brewed coffee, 10 cans of cola or two "energy shot" drinks. Keep in mind that the actual caffeine content in beverages varies widely, especially among energy drinks." according to google's synopsis,@retoor I do the bean juice at home since the Dutch instant/boiler coffee makes me want to throw up but when I go out I do the same, iced coffee followed by mocha,@retoor I like it because it generates the swagger/openapi doc and āinputā validation. I haven't looked at before aiohttp, I'm not really a python head since it uses white spaces. I wrote a file-based router for express ages ago as well, it just makes working with routes intuitive. Fast api has grown and made their own DB wrapper as well, it's pretty polished. Did you know you cannot do cursor based db access in django š¤Æ,@retoor Should you be able to bind to body/html and receive them through bubbling?,@retoor That's fair, btw if you want to know something that you might find convenient or annoy the shit out of you it's this: https://developer.mozilla.org/en-US...
|
||||
|
||||
If the shadow is mounted as closed, there is no way to get access to anything inside and I don't believe the events will bubble (learned this thanks to Google's crappy map markers and had to force them all to be open)
|
||||
|
||||
BTW you can generate the templates on the backend and stick them into <templates> for usage on the frontend as well,Window's new screen capture hook also adds an obtrusive border to the window you're sharing, I guess bad ideas spread,The MineCraft forge community and a game dev form I was on (back when I was 14 and 16 respectively) pretty much made me stop dealing with forms. Now I'm almost the same as @retoor.
|
||||
|
||||
Funny when I was part of hacking forms they were a lot friendlier, managed to be the top Dragonica private MMO server for a while.
|
||||
|
||||
DevRant is probably the first form I have used in ~10 years and is helping not give up on coding so ĀÆ\_(ć)_/ĀÆ,@retoor A bit taller than that, 183Ā cm. 150Ā cm is a cute height, I think your head is at my shoulders.
|
||||
|
||||
Yeah, I agree about the overlap, the fact most people are mature here is a very welcome change
|
||||
|
||||
Also, I don't think you can say that miss hall monitor keeping all the riff-raff spam at bay ;P,@Demolishun Ah yes the holy ABI, I can't understand why they don't just say with C++ 26 (or whatever version X amount of years in the future) that they will be replacing it with a better managed system that may make available with an earlier version.
|
||||
|
||||
Hell the std module would have been a perfect time for it āif you use modules then you work with the new abi systemā
|
||||
|
||||
I don't even want boost, but it seems the most recommended C++ redis library got absorbed,You see young @retoor when groups of people come together, not everyone is good. Some people want to take advantage of the others, they'll do this by doing things called scams, and they'll aggressively push it also known as spamming.
|
||||
|
||||
Now people in the group don't like these scams and spams, and they'll create a moderation system to filter out others that they don't think will fit in. This is what you did with the anti-spam-bot bot army.
|
||||
|
||||
A hall monitor is someone who moderates the halls or corridors, just like how your bots check messages to see if they should be on the site and will send them to the principal's office if they aren't allowed. Calling someone who isn't an actual hall monitor a hall monitor is also used as a light tease when they act to stop people who are unwanted.
|
||||
|
||||
Also, riff-raff is used to talk dismissively about a group of people as if they are a lower class
|
||||
|
||||
And āat bayā means to guard against or limit the reach of something or someone,I was just barely able to squeeze that in the character limit, but TLDR I was just teasing you for saying that there is no moderation but you created a moderation system to remove spammers,@retoor The only difference I can tell between open and closed is whether you can gain access through the hosting element (otherwise you can only change the closed one using the reference returned from the attach call) but otherwise yes, it isolates almost everything
|
||||
|
||||
Interesting, what did you do to set it up? CSS grid? Do you have a demo? I haven't played sudoku in a while I used to do them together with my mom but when I'm alone I tend to get into the mind frame of "why am I doing this instead of coding",@Demolishun Honestly I'm not too sure either, I assume the addresses in the DLLs just can't change since then it will try to execute the wrong code,@retoor I'll give it a look, are you interested in me giving you a review on the code since it isn't that long (for fun)? And can I do it on your site?,@retoor Eh, I've been a lurker for a lot longer than I've had account (this is my first one), but I started using dev rant again around the time you nuked the old account. Can't say exactly why I assume you're female, I can give you conjecture but in my mind you have a fem voice. Let me know if I'm wrong.
|
||||
|
||||
Also happy early Birthday, mine is exactly 2 weeks after yours and yeah you're a bit older than me,@jestdotty If I told you people in MMOs thought I was female would you believe me?
|
||||
|
||||
Sounds like good fun, maybe a bit too simplistic but for text based interactions probably enough,@retoor Ah so no neins so far, I'll only get round to checking it tomorrow though (just encase you want to make some edits š),@jestdotty Haha good. Maybe, it's probably more because I grow up with a single mom, most of my friends being female during good chunks of my upbringing and a disdain for sports. I lean more to the single mom thing + being perceived as female tends to give you bonuses (like free gold) + online censorship for guys online
|
||||
|
||||
@retoor isn't that because the water companies can't get all estrogen/birth control out of the water,@retoor "Men in NL are not very manly and women not very female"
|
||||
|
||||
Yeah I've noticed, even all the way here in the boonies it's a bit of a contrast to what I was used to in Africa (no I have never been mugged but I have "stopped"/caught 2 home invasions) and general service is atrocious. I don't think I'll ever understand a guy wearing makeup, unless you mean stuff like topees.
|
||||
|
||||
I guess I'm lucky that PP is a turn off + I want kids,@retoor Between 3 to 5, I do want to make sure I give 'em all enough attention. How many would you want?,@retoor I've found that there are some life lessons you can only learn from people close to your age. I have 2 step brothers and a half sister, all on my dad's side, but have pretty much grown up as an only child. I don't have much to complain about either, except the lack of good male role model I guess.,@retoor I'm going to create fork since I assume I can only drop comments in a PR (would you like me to add modified files as well? I assume it's still sudoku2 + js),@retoor down voting is interacting (and is treated like an upvote in the uploaders algo), it's the same problem the clowns on twitter have when they comment on things they don't like,@lorentz I disagree, react changes the the way webpages work by way more, since it's imperative not declarative. Vue stays to how the web was designed, declarative structure with imperative bindings. It's also why react has such terrible performance,@lorentz Maybe if you're coming from another language it might look more intuitive, either way you're learning HTML and CSS in addition to JS. People I've introduced to Svelte (it has similar all-in-one files) with "it works like normal HTML with extras" there was next to no need for an explanation for them to grep it, the most recent ones was a senior and the other a junior who had to do (old) C++ for uni and python. But no "fresh faced young bloods" while for react they had to go looking for the tools to use to setup stuff like state. No hate on React its self, just hate on the people who shit out shit code and think they made gold - maybe a little hate for it slowing down the web,@retoor I remember using a fusion of a tiling DE that could also "detach" windows. I found the tiling was nice if I had a set setup for working/fixed windows at start. I use powertoys to manage my window creation on windows now,@retoor And it's white house approved,@retoor I'm still busy going through the code, I've made some notes already, but it tempted me to write it differently. Hopefully, it won't take much longer, but it's a work week. Happy Birthday again!,You don't have automatic roll back on failure? Testing in prod is so hot right now
|
||||
|
||||
For me, it tends to be for code that I'm unsure about/would take too much setup to test manually OR a bug report from the user (that isn't a minor fix like a typo)
|
||||
|
||||
The biggest value I've found is in groups where not everyone is as familiar with all the systems/incompetent, or you're going to be taking large gaps of work and need to be able to see how things should work,My day starts 8 until daylight savings, I prefer getting the workday over with sooner... Whoever made standups (fucking roll-call as shit version) standard can go fuck themselves though. And yes I know what they are meant to be for, I've only had 1 client keep them to 10 minutes (in 10+ years). Let me be groggy if I have to get up early,@lorentz And then you realize professionals aren't much better :(
|
||||
|
||||
Glad your prof wasn't an ass or did you catch it ahead of time?,@lorentz Yeah, I've had profs like that as well. My most passionate one didn't code much funnily enough,@cuddlyogre Just take the deploy keys with you ;P,@cuddlyogre I don't imagine Burger King will look too fondly on people who went on strike. Let's not kid ourselves, it would take 20 minutes for someone to replace the keys, it's pretty common with clients I've had to deal with and nothing will happen unless you took down prod as well,"Seize the keys of production" I remembered the joke :D,@jestdotty Sounds to me like a pre-school crush, that, or they don't like how similar you guys think the same. What's that adage, "you hate in others what you see in yourself" or some shit,@cb219 I've had it generate a decent set of tests by just asking it to write tests for <insert code here>
|
||||
|
||||
Will probably need some clean up however,For me, setting a timer/alarm has been the most helpful to get out of the "just one more game" mindset or if you're really not feeling, it doing it inverse, set a timer or alarm for the study side project. Also slapping all options I'd like to do at some point on here: https://wheelofnames.com/ (excluding procrastination stuff) if I really don't want to do an option I'll skip it, it breaks the "I don't know which thing I want to do" cycle,@qwwerty I'll second what @kiki said.
|
||||
|
||||
Maybe find a smaller side project you think you can finish in a week and see how long it will actually take.
|
||||
|
||||
On the software being "done" part, I had a (minecraft server) bucket plugin that would allow you to build in creative, it would track what you placed (and the order) and when you were done you could collect them in survival and dump the items in a chest for it to place them. If it wasn't for the many migrations making me lose my I'd still have permanent curse forge premium. It took me less than a month to make, and I haven't touched it since, still one of the proudest projects of my youth,How big is the org? It could be HR/manager being lazy and going "give me another one of those". But I'd still start asking questions (they can't fire you twice),- Forgot password ā Can't use the previous password
|
||||
|
||||
- Every X time you need a new password
|
||||
|
||||
- Forced to use (app) 2FA
|
||||
|
||||
- You search for X, but the search engine goes "well, you actually want Y"
|
||||
|
||||
- Asking for phone numbers
|
||||
|
||||
- Blocking temp mails
|
||||
|
||||
- Probably more,What about Emacs?,@retoor Interesting read, never heard of it before,@jestdotty That, or they disable highlighting and the right click menu
|
||||
|
||||
Another one, putting an image behind an invisible div,@cafecortado Now I want to go to a restaurant where you order by using punch cards...,@retoor Unfortunately I'm stuck on Windoze because some USB devices I have don't have drivers/work on linux. Creative hardware software devs suck balls,@Demolishun It's probably because they tend to be not as popular as the mainline packages, since it's not text nor image gen. In this case, it's some transient library causing a fuck-up. Also, libraries assuming you're using conda
|
||||
|
||||
For a while, most AI libraries were stuck on old versions of python as well because of the way they bound the C functions to python,@tosensei Sure, but then they modify things like LLVM. If it was just shit python code, I could deal with it.,@IHateForALiving Git gud ;P no clue what angular uses it for, but it's a lot more performant than the built-in functional parts of JS (map, reduce, etc).
|
||||
|
||||
Maybe lookup pipelining to understand what it's for,@IHateForALiving It is, strange you need to rx for that, to the point I don't see a benefit other than if it's your style of coding.
|
||||
|
||||
I see it as a replacement for [...].map(...).filter(...).reduce(...)
|
||||
|
||||
or dealing with websockets
|
||||
|
||||
Also since I'm familiar with pipelining it's rather intuitive for me and I work faster with it ĀÆ\_(ć)_/ĀÆ,@IHateForALiving 100% agree,2nded on the oath2, especially with the new spec where they removed user/pw auth.
|
||||
|
||||
TTS/STT is something I've been struggling with for ages, that's why I wanted to use the whisperS2T model. I've used the simpler whisper model before as well, they're generally not a problem, but their output can be a bit limited. And StyleTTS for the output.
|
||||
|
||||
Either way, you managed to get further than me when it came to setting them up the TTS/STT on a new project,You can't escape it by doing
|
||||
|
||||
.pipe(switchMap(async (...) => {
|
||||
|
||||
sanity
|
||||
|
||||
}))
|
||||
|
||||
?
|
||||
|
||||
Still it sounds but inane and insane to make it a requirement in a web framework
|
||||
|
||||
OKAY I'm never touching angular (just looked up the syntax) š¤®,@Ranchonyx map, filter and reduce are all full list traversals (as in each independently does a for loop)
|
||||
|
||||
With rxjs it's only a single loop, you're splitting out the bits inside into functions
|
||||
|
||||
Created a pastebin for indention; otherwise it's below https://pastebin.com/2BBaWi50
|
||||
|
||||
let data = [...]
|
||||
|
||||
for (const i = 0; i < data.length; i++) {
|
||||
|
||||
data[i] = mapper(data[i])
|
||||
|
||||
}
|
||||
|
||||
let newData = []
|
||||
|
||||
for (const i = 0; i < data.length; i++) {
|
||||
|
||||
if (filter(data[i])) {
|
||||
|
||||
newData.push(data[i])
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
vs
|
||||
|
||||
let data = [...]
|
||||
|
||||
let newData = []
|
||||
|
||||
for (const i = 0; i < data.length; i++) {
|
||||
|
||||
const newVal = mapper(data)
|
||||
|
||||
if (filter(newVal)) {
|
||||
|
||||
newData.push(newVal)
|
||||
|
||||
}
|
||||
|
||||
},@jiraTicket It's also so that google has more words to match against when crawling. Gotta get that SEO juice,@retoor Agreed, especially since _ has meant private since the C days I'm pretty sure (if not before then)
|
||||
|
||||
Thanks, I've been working on the review slowly, going through it in chunks, been dealing with a blocked sink unfortunately, so I haven't gotten to it today
|
||||
|
||||
Interesting on the google/pocketsphinx, does it just give you a direct transcript or does it also give timestamps or multiple speakers? I'm not super surprised that they aren't that good with Dutch since I don't imagine there is a huge (premade) dataset for it.,@CoreFusionX What happens when one of the scales (mainly the reader side)? Can you set it to re-emit all the messages in the last X minutes?,@CoreFusionX Interesting, that does sound like a better option, especially since it would allow the load balancers to keep the sessions in memory, which is even faster than Redis (and removes the pain of Boost + modules š¤). I'm trying to create a UDP (QUIC) load balancer/router that also enriches the message with session info, since it's the entrance into the service.
|
||||
|
||||
The current flow I had mapped out was, the web backend does the auth -> sends the session info to Redis with a TTL on the key. The load balancer, whenever a stream comes through, would grab the session info from Redis, enrich the message with the data and forward it to the relevant backend server.,Become the disaster they need to recover from.
|
||||
|
||||
At least they have one sane dev,@retoor It's 2am which is my soft, I-really-should-be-in-bed-time. I've created an account and dropped a message, but I'll leave it open tonight/tomorrow
|
||||
|
||||
I just like the unified feeling of having it all on my machine + less places that I need to update my card on in the future,A good chunk of my dev career was updating legacy shit + recompiling decompiled code š¦¹(I cracked my universities apps to get the PDFs/EPUBs)
|
||||
|
||||
I don't think I've ever not been able to figure out what I've written before, but I have called myself an imbecile before.
|
||||
|
||||
The best advice I can give, is figure out your mind state and how you imagined data would flow in that scenario. It could also be an aspect of code style, I can still easily understand my hand written firebase ORM...
|
||||
|
||||
Wait you said 3 days, I'm pretty sure that fucks with your memories,@retoor Until you get the "managers"/PMs "hey we were thinking about this feature"
|
||||
|
||||
It also functions as a morning roll call to see who's late (yes, I've seen people get in trouble because of stand-up missing/being late for it). It's not meant to wait for anyone, damn it! (had 1 client do them properly, and I miss working with/for her)
|
||||
|
||||
I tend to page out pretty quickly once they start prattling,@jestdotty Orca's stay away from humans because we hunted them so much, but with them, it's actually socially communicated 𤯠(orphaned or otherwise estranged orcas will still attack humans)
|
||||
|
||||
For me, I can be the same if there isn't an easy click (same hobbies). What helped for me was doing some research on the topic, I'm also a "we must meet 3 times before I'll properly talk to you" person. 101 possible reasons really ĀÆ\_(ć)_/ĀÆ Hope it gets better for you,@Lensflare If you're not interested in foreign culture, how can you be a good racist?,@Lensflare I'm just referencing the meme phrase of "Me Studying X History So I Can Be Racist More Accurately".
|
||||
|
||||
You can find something disgusting doesn't mean you can't have an interest in subjects around it, e.g. I need to unclog my sink, and well, the gunk in the pipes disgusts me,I remember a conversation that we should stop calling the code from the previous developers as "their" code, I think my brain paused for a solid 20 seconds (I was complaining about fundamental issues with the codebase),@retoor I know people who do it for a living...,@lorentz It gets better, my current PM likes putting all the meetings in the afternoon. I have days with more meeting than work time :(,@retoor If no one else can figure out how long it should take, it's very easy to be lazy about it. I'd say smart people would get too frustrated having to constantly research stuff that should be obvious.,@Wisecrack I enjoy doing rewrites/simplification, how else do you get better wheels. I do try to minimize my own code, after all, there is less chance of bugs that way.
|
||||
|
||||
If you want an easier time, try reading decompiled java it's a bit easier to grok. Looking for patterns and knowing what certain combinations do makes things a lot easier. (I also enjoy the Zachtronics games)
|
||||
|
||||
I got onto the decompiled code for hacking old MMOs since sometimes they would encrypt even the localisation/server config so I can switch it to a private server.
|
||||
|
||||
I'd say be careful with the long nights, since the caffeine is just binding with your adenosine receptors, and the sugar and vitamines give you an energy boost (so your body is still as tired as before). Then again I tend to work best with about 1 beer in me,@retoor Yep, for some work PRs I need to create some tests because of the holy coverage. I think I'm literally going to pass it to copilot and tell it to make tests,@NoMad Do it. I'm in a similar position. If it sucks now it's not going to get better by doing nothing,Thanks :D
|
||||
|
||||
Doing bookkeeping this weekend but will look at it soonā¢ļø,@retoor Yep, DevOps has IMO become a lolcow (looks over at terraform) since "everyone" needs to have super scaling. Like no Bob, you and your 50 customers don't need a super mega cloud, here is Raspberry Pi, hope you do something more than host your website on it since that still leaves a lot of capacity,@Demolishun When a battery is charging it's usually disengaged, he's laptop is most likely browning out/PC limiting the wattage
|
||||
|
||||
@Lensflare I'm assuming the laptop can exceed the rated limit of the charger (which it knows because of the chips in the cable) e.g. boost to 200W which is the limit and then throttles, 2 chargers = >200W capacity,@retoor I wish websites went more into the Japanese way of website design instead of overly simple slop of having to go through 20 menus...
|
||||
|
||||
https://youtube.com/watch/...
|
||||
|
||||
https://youtube.com/watch/...
|
||||
|
||||
+ https://youtube.com/watch/...,@Lensflare Yep, part of the USB-C 3.1 standard
|
||||
|
||||
Otherwise, you'd burn your house down running 100W through a cheap USB cable. (AFAIK if it's missing it only operates at some "safe" capacity, probably same as USB2 5v 2A)
|
||||
|
||||
Quoting from wikipedia:
|
||||
|
||||
Full-featured USB-C 3.1 cables contain a full set of wires and are "electronically marked" (E-marked): they contain a "eMarker" chip that responds to the USB Power Delivery Discover Identity command, a kind of vendor-defined message (VDM) sent over the configuration data channel (CC). Using this command, the cable reports its current capacities, maximum speed, and other parameters.[31]:ā§4.9ā Full-Featured USB Type-C devices are a mechanic prerequisite for multi-lane operation (USB 3.2 Gen 1x2, USB 3.2 Gen 2x2, USB4 2x2, USB4 3x2, USB Gen 4 Asymmetric).[31],"The future is the present of the past",@NoMad Do it before your work, it'll be easier to deal with before work than after,@electrineer While funny, most people can only deal with X amount of stress in a day, and if work isn't tolerable, starting the workday can already be a big crumple on that capacity.,@retoor Rocket's been dead for while :(,Reminds of NL, they try and outsource everything. Oh, you went to the dentist you'll have to wait a month to receive an invoice because we have a company do it for us.,Congrats! Hoop you get it,@retoor It's ok, not a big supporter of the gambling pipeline of insurance for something everyone has to spend (tax). Back in the old country, public healthcare was free, and the same you'd have to wait (unless it's an emergency) and better than here in NL (doctors (actual doctors) would be flown up north regularly). Or you could go private, and it would also be good, and you'd be helped almost instantly.
|
||||
|
||||
Also think my old car's value was 3k euros, loved that car,@jestdotty I don't like scheduling my lunch but just having a set "invisible" meeting could work for me regardless since I don't actually have to have lunch then... š¤ I like this idea... maybe some extras in some afternoons... š¤,I was expecting tab to be higher ;P
|
||||
|
||||
Are you a multi-line user? (for me the shortcut is ctrl+alt+shift, the direction key or mouse clicks)
|
||||
|
||||
I'm sure my del/space key is in similar state as your backspace. But I just noticed I use it to remove spaces at the end of sentences.
|
||||
|
||||
Are you a ctrl(+space) text navigator?,Ncurses!,@retoor I think it's column mode, Google didn't help with my checking, but essentially, I can drag my cursor to select a square of characters (the only time I'd actively use the mouse during refactoring)
|
||||
|
||||
Also, I meant ctrl+shift (highlights whole words)
|
||||
|
||||
I'm trying a small keyboard and have remapped pg up and pg down to home and end (I miss the numpad though, cidoo v65),@retoor Interesting, I'll keep it in mind when I want to touch console code again :D since ncurses isn't cross platfrom,@retoor Well that's intentional, they literally serially pair components, use a screen from another iphone == brick
|
||||
|
||||
For terminally, I can imagine there being a couple of edge cases, but from my experience of toying around with writing an OS a lot of the standard stuff is the same,@Grumm Definitely for dissecting it and finding interesting "features". The Cherno does code reviews in addition to his game engine videos and relatively they're popular,@Grumm Well they are "big" now, I was around when he first announced that he was going to make an engine.
|
||||
|
||||
If you really want to get into it, plan videos for 6 months to 1 year at a cadence that you can work at and see how it goes. Programming is a niche, so growth capacity will be low, but you have a higher chance to be found, and you'll most likely never be one of the platform bigens'. The Cherno is still a smaller YouTuber as far YouTube is concerned.
|
||||
|
||||
Check that your audio is good and not echoing/grating,@Lensflare So you're telling me he's Romanian?
|
||||
|
||||
Even if he is a troll, at least the comments are generally fun to read,If they are paying you to not work on money making parts of the product, they're either really big, something bad happened recently or you're not charging enough. That's the most common reason that they don't happen + if you want good quality, it needs to be tested by humans regardless.
|
||||
|
||||
TLDR: The previous contractor didn't care because the client didn't care,@jestdotty I've done this and every repo I create uses the master branch, had my boss ask me why I use "master", told him it's the default (which it still is, GitHub put the rename command as part of their instructions) and I add the remote using my IDE. I also doubt they'll ever be able to actually make it retire.
|
||||
|
||||
Also, it was called main after the main-character-syndrome the imbecile had who complained about the term,@MammaNeedHummus Oh definitely, if you lack moral fibre you could easily make 6 figures if you're ok making brain rot for children. Seriously, look at what's on YouTube kids,@Lensflare I didn't mention the race.... they're still an imbecile. MFer doesn't even know English, no clue why they listened to it
|
||||
|
||||
While I haven't asked Linus, I'm fairly sure it has to do with a "master" copy, the same as in audio,@Lensflare Would you accept the definition being: A smug sense of superiority and a small penis?
|
||||
|
||||
Question for you, would you differentiate between someone who is prejudice to a group of people but treats them each individually as an individual? vs someone who doesn't treat them as individuals?
|
||||
|
||||
I think there is a difference, and that that difference is enough that there should be a difference of terms, but I have known many people of both groups over the years,@Lensflare Ah sorry those were meant to be comments to different items, the remark about Linus was for the "main or master is just a convention for the default branch."
|
||||
|
||||
Sometimes I forget how easy it is to lose context in text
|
||||
|
||||
On the "for those people":
|
||||
|
||||
I carry disdain for those people since they've actively harmed my culture and the culture of people I care about. Thanks for bringing context,Hmm, renaming to "in development"/"release" might have been a practical option as well,Did they IPO? Because someone promoted marketing/sales to a high position tale as old as shitty tech companies,@D-4got10-01 Whenever my junior used to ask "what should I do?" while we're on a call, I'd answer with "meth" (followed by trying to figure out why he's stuck) - his wife didn't appreciate it,@D-4got10-01 If I told you she got upset that he didn't immediately get food at a work event so they could get seconds at the end, would that give you enough info? (I'm going to give the benefit of the doubt that she didn't know that those events are tightly catered for),@retoor The AI chat isn't working for me,Sometimes you only hear back at the end of their collection period, I wouldn't take it too hard. You sent one, now it's easier to send it to the next one,@retoor No luck on the phone either, it's clearing the text and telling me "please enter a message before sending". I used multiple on my PC (both logged out and logged in), edge, firefox, opera,@retoor I only saw your Clippy reply now, I meant to one on the home page
|
||||
|
||||
> I am on molodetz.nl in room #molodetz btw
|
||||
|
||||
^ I assumed you meant the home page one since both rock and snek aren't working
|
||||
|
||||
It happened again! Messaging at the same time š¤£,@retoor Did it also use an excessive about of RAM? You know, to complete the whole enshitification or are they still working on it?,@D-4got10-01 It's funny how companies go from, tell us what you want so we can build it to "we know what you actually want",@retoor I just remember having to "reconnect" after sending an image/video. Then again maybe I was hammering your connection a bit too hard since I have a 1Gbs line. Looking forward to Snek,@retoor I believe underflow behaviour is also system dependant - and yeah depending on the lang it could also raise an exception instead,@retoor I'd say your english is pretty gooda. There are a couple of dopamine hobbies I can think of, but it really depends on the person. Do you like being outside? (I know it's cold right now)
|
||||
|
||||
Also for the patience thing, it could also very well be that you have adopted the expectations from working with a high level lang and projecting it on other langs (e.g. making an api python is super easy, in C not so much). It's something I noticed as well, and having re-adjusted my expectations it helps quite a bit.
|
||||
|
||||
Are you making sure you're getting enough sleep btw? If you're tired/fatigued, it can shorten your patience quite a bit as well,@kiki
|
||||
|
||||
> Having no knowledge of polyamorous relationships even existing, at the age of eight, I realized that monogamy was wrong
|
||||
|
||||
Funnily enough, I had the opposite realization. It is not the "natural order" of things, but it is the systemic culture humans have adopted for the betterment of society as a whole. I did some research on it, and there are a couple of reasons why monogamy is the standard. If you want to look at examples of poly- you might want to look at the middle east/north africa. I can give you some of the history if you're interested (also not trying to convince you otherwise, it's just an interesting topic), just @ me,@retoor Fuck the gym, want to make me cranky and short-tempered, make me go to the gym.
|
||||
|
||||
When you're out on a walk, is there anything you like looking at? I'm a big fan of architecture and will go explore a city. As for nature, I can appreciate it, but it won't get me out the house.
|
||||
|
||||
Audiobooks/Reading/Donald Ducks? If you need something to occupy you, what are your habits when you aren't allowed/able to do anything, do you fidget with your hands, zone out, daydream about code? Would you put down a book if you're in the middle of it to go code on a whim?
|
||||
|
||||
How much energy do you want to invest in the hobby? I like scuba diving, but I don't do it often.
|
||||
|
||||
Often, the easiest way for me to break away from "computer stuff" is to go somewhere in person out of the house (but I tend not to enjoy doing that). Or at the very least out of the room with the computer/displays.
|
||||
|
||||
You could also try the Dutch's favourite hobby cleaning ;P,@Lensflare Not infinite, since when you have 1 wish it'll roll down to 0, unless you again wish for 0 wishes.
|
||||
|
||||
Imagine, the genie turning you into bronze while you have 4_294_967_295 wishes left over,@retoor
|
||||
|
||||
> Sex, but that doesn't last.
|
||||
|
||||
If you're cooming for dopamine all day, you'd need assistance + after the 20th orgasm in a row, you'll likely pass out (I guess you could count that as catching up on sleep).
|
||||
|
||||
I've attached an image of the BBCs we were staring at when we first got here (I wonder if devrant can handle a 40mb image š
, nope didn't like it, 12mb? nope)
|
||||
|
||||
I haven't heard of gogs, I might use it with the inevitable NAS.
|
||||
|
||||
Sounds to me like you're inundated with code wherever you go. Dopamine, at the end of the day, comes from whatever you feel to be an achievement. If reading is fine, I'd look up some side topics you find interesting, e.g. history or philosophy. Although, I'd probably recommend "the design of everyday things" or something that can stretch your mind in someone way, some mystery maybe? Do you read comics/manga (other than Donald Duck)?,@retoor Also did I remember right that you have a guitar to play, why not try it with a copy of rocksmith?,Ah yes, the "smart" PM, got one of those as well - no matter what you tell them, they'll never admit to having done something stupid nor that they broke something,@retoor I have a faint memory of you replying in a rant that was talking about guitars.
|
||||
|
||||
It's a "game" like guitar hero, but you can use an actual (electric) guitar, comes with video lessons and exercises as well. https://store.steampowered.com/app/... (I wouldn't give ubisoft money and play it from alternative sources š)
|
||||
|
||||
You know more songs than I do, for me, it's nice to force my headspace to concentrate on the notes/hands rather than what the latest idiotic take from work is. I haven't had the chance to play for a while now though :(
|
||||
|
||||
Donald Ducks were my comfort as well until I moved, and they were difficult to get, I still have all of my old ones. And yeah, the Goofy/Pluto thing has been a running "huh" thing for most people, there are some crazy theories out there
|
||||
|
||||
I'll second the difficulty on finding other communities,@retoor Wow you should put that on a bus! :D,It's rare that I find music I like post 2013 (unless they're artists who are still making music, like Within Temptation). I've also started to hate streaming services since they all without fail will create a music "loop" just playing the 20 same songs over and over again. Finding new music is great, but I don't go looking for it, that what I use the streaming service's auto-suggest for which stopped working a couple of years ago.
|
||||
|
||||
I can't play any guitar songs unless I have a guide in front of me (I can barely read tab), I have memorized 0 songs.
|
||||
|
||||
Every now and then I pull up a nightcore playlist on YouTube, and you're right, it's either not really nightcore or it's older songs. It's rare that I have the time to listen to music, atm. You might like Geoxor.
|
||||
|
||||
When I'm in the zone, and I can play some high BPM music to kick it to second gear, if I'm not in the zone, it will give me a headache (e.g. DJ technorch),Change the git author to your boss? ;P
|
||||
|
||||
I am not sure how you'll lose history unless you're rewriting history?,That sounds like ass, with my current position I'd get praised to the high heavens for that kind of documentation. The only thing I disagree with is that yellow is readable (on a white background),@D-4got10-01 Ah yeah that would be perfectly readable,Empathy can also mean understanding the way someone thinks, aka can you put yourself in their shoes and find bugs they would be bothered by.
|
||||
|
||||
Doubt that's what they meant when they put that as a line though...,@retoor As long as you have someone who appreciates it. I do agree on the making sure they know what you did, the PM isn't going to notice the 10% performance increase, but the users will, and you don't want sales to claim it was their "special" idea.
|
||||
|
||||
@D-4got10-01 Isn't "full-stack" the worst paid category when it comes to salaries? (says the generalist dev),@NoMad I dunno reading that rant...
|
||||
|
||||
Pretty sure mongo/any decent document store can have a schema,@retoor Can't get fired for saying the wrong thing if you don't say anything,@retoor As long as you had fun writing it :D
|
||||
|
||||
It was just a really silly error since there was no change to MSQuic. Ended up finding what changed by walking through the code with a debugger, which in term let me find the PR on vcpkg - I wouldn't even have minded if they had left OpenSSL the default and made an option (that I can set with the damn manifest) to switch to the windows exclusive SSL lib,@retoor I've met plenty of "I just do backend" type people, they use some "magic" backend to frontend library - their code tends to look shit either way (and written in C# or Java. And HTML in the MBs). And the ones I've met can get really offended if you mention anything about frontend to them (especially big, firm ones). Frontend "only" people tend to be really flexible and wanting to know more about the backend.
|
||||
|
||||
It exists because of the start-up boom IMO and the afore mentioned people getting on their high-horses.,@retoor Definitely, hence the quiet. The current people I'm working with are more left leaning but don't really bring up politics at work, unless it's something larger but not huge (e.g. Trump) but will mention leaving Twitter. Getting hired here was a funny (but simple) story as well,@CoreFusionX Strange, maybe it has to do with their virtual drive driver?
|
||||
|
||||
Couldn't you connect using AWS' web connect without unmounting?,Hearing stories like these always make me jealous. The people I can kinda get to play, would quit out on the first combat encounter :/ . I've managed to run a semi-decent call of cthulhu campaign with them, and a free style pick your adventure. We're trying again soonā¢ļøbut I'm going to assume it won't live long past the first session,@retoor Since you wrote it, you'll know how it works. These people definitely don't (they would barely touch LINQ),@Liebranca Not sure how much it'll help, since making the characters isn't so much the problem. Another one will constantly try to derail the campaign, e.g. when joining a running campaign (has only been one-or-two sessions with brand-new players), I tell him he can play whatever, just don't try to leave the town, and (it's soon going to be under attack be tieflings). Guess what he rocks up with, a tiefling with flying, and the first thing he tries to do is get everyone to leave the town... (ah and when they were still in the town and we broke up for the evening, he was going to fly to his church, I think he was playing a paladin) Guess which level 1 characters are now stuck in hell.,My condolences, welcome to bootstrap 2.0
|
||||
|
||||
(doesn't it still use postcss)
|
||||
|
||||
:P,What about strHungarianNotation ?,Disliking React
|
||||
|
||||
Being able to reason about decisions
|
||||
|
||||
Getting things done,@jestdotty I can empathize with your situation. Virtual hugs to you, hope you feel better soon,@Liebranca The "story" was for the new people to explore the (mega)city, used town accidentally, and I wouldn't have minded if they wanted to explore outside of it. It's that *he* (as the more experienced player) specifically did the things I asked him not to do. Story wise, it also wasn't possible to "walk" out either, e.g. for instance, the gates were closed with an inner parameter around the walls. They managed to get some good roles and luck, and got the info from some books in the dungeons (since mr. tiefling got himself arrested, since he's a tiefling and tieflings appear to be sieging the city) that there was a sewer that they could use as an exit. When they got there, I tried to describe at as dull as possible, but no, he had to convince to go track out into the empty planes.
|
||||
|
||||
And yes, as far as I remember I asked him to stop, and if he went lone-wolf it would have been easier to deal with. He got saved by the others in the dungeon just in time...,@Liebranca Agree to disagree, he was being an unreasonable asshole,@retoor Are you thinking of tailwind UI? That was also the reason I objected to it at work, but got overridden - IMHO CSS isn't that difficult to learn, it just a stack of rules. What all the rules are, that's a different story and which to me is the same as tailwind (except tailwind can't do some of the more complex selectors, for instance the ones I did for the sudoku)
|
||||
|
||||
There is also animate.css (https://animate.style/) if you want to do some fancy animations,@tosensei All that I can see while reading that is the sarcastic SpongeBob meme,@lorentz I've skimmed through your reply, but will look properly after work. But wouldn't nested CSS https://developer.mozilla.org/en-US... take care of your namespace problem?
|
||||
|
||||
Also @property `https://developer.mozilla.org/en-US...` ?... devrant broke, googling @ property css should have it come up though,@Lensflare "I wish for infinite Genies" or lamps I guess,@Grumm What @Lensflare said, it's just a common "work around", since it's all up to genie's wims, since in the original mythos he's doing you a favour for freeing him rather than obligation from what I remember.
|
||||
|
||||
> Does the genie behave like in the Alladin movie
|
||||
|
||||
That doesn't really narrow it down since Jaffar becomes one as well, and he teleports a guy to a sunken ship when they ask for riches,@sjwsjwsjw Doesn't changing the author change it? I'm very sure you can change a commits author,@lorentz Have you looked at CSS counters? https://developer.mozilla.org/en-US...
|
||||
|
||||
Looks like nested CSS takes care of the self-referential stuff?
|
||||
|
||||
It has gotten a bunch of new features, and I'd usually bust out SASS but doubt I will now that nested CSS is standard in browsers,@retoor > is the direct child selector,
|
||||
|
||||
.a {
|
||||
|
||||
.b {}
|
||||
|
||||
}
|
||||
|
||||
is equal to
|
||||
|
||||
.a .b { }
|
||||
|
||||
you'd have to do .a { & > .b {} } for the same behaviour,@retoor Ew I'd rather spend the weekend reworking an auth system then intentionally shit up a system I'll be working on regularly,@jiraTicket That's what I've heard as well, but that's why it's a full article. Rather than just term spam, + probably old advice from yesteryear,@retoor It's cheaper for companies to hire you directly, a lot of recruiters get ~30% of your yearly salary for a couple of years when hired through them,@jestdotty Yeah, AFAIK a lot of it comes from the America influence after WW2 (e.g. censoring porn and banning prostitutes),@jestdotty @TrayKnots "Do not discuss religion or politics." is short for don't do stupid shit that could get our server banned because the type of people who control/moderate discord is the same as reddit. Also, people who deeply care about religion/politics are often zealots/emotionally invested that will cause schisms in the group for reasons completely unrelated to the main goal of the group (playing a game). The fact they disallow heated topics is inherently part of democracy.
|
||||
|
||||
Reddit is retarded though since it's meant to be "the face of the internet" then it should allow all discussions, but then advertisers pull funding (a big reason for the Draconian rules about content).
|
||||
|
||||
Also it's often ego boosting to the these retards to block you after posting for the exact reason you said "I owned this guy and now he can't respond",@retoor Didn't he become homeless (because they cut his health funds or something) and then get hit by a train or car?,@Lensflare Yeah, it's fairly surprising since it's intertwined with their (historic) culture, but from what I remember it was pushed on them when they needed to rebuild. It's also related to how their court systems work, even if it is a miss-interpreted version of it.,@TrayKnots Forcing people to vote is the issue, since trying to find all the information about everything political is impossible and an unreasonable expectation.
|
||||
|
||||
You can escape zealots, you do that by excluding them from decent society.
|
||||
|
||||
Your voice does matter, yes, but if you don't care about the topic, there is no need to say anything. You abstaining to vote is also part of democracy - the same with most voting systems, what that means changes for every group (e.g. vote is excluded from the totals, counts as a point the "current" party).
|
||||
|
||||
And yes, that is also why votes used to be tied to assets, to show you have "skin in the game" and it would be beneficial to have knowledge on the topic. Never mind, trying to get something for the collective good rather than personal good,I'm fairly sure that returning in an if-else-tree has some performance optimisations that can be applied that can't if you don't (e.g. tail call optimisation).
|
||||
|
||||
I've never found if-return-else-return to be that difficult to read, and it's clearer to me that that is the intent and I can stop keeping those variables in memory. So I disagree with your linter,@retoor Fed ;P,@TrayKnots Well yeah, it's a way of removing accountability for people in charge. Half the shit that gets pulled today would have gotten a king executed, IMO. However, at this point it's "best" system we have for allowing the masses to weigh in - but there is no direct accountability to those who are elected,Have you been reading the google docs as well? Here is a quick start using 5-year-old syntax and 2 deprecated versions behind, oh you want actual docs, here is a list of functions instead,@12bitfloat "You can see them when you're driving - you run 'em over, that's what you do"
|
||||
|
||||
@retoor Terry used to livestream, and with his mental problems used to say some deranged shit,@TrayKnots 100% agree, hence the "" - and yeah, it definitely is, the same reason schools don't teach about taxes and securing funds/investing. I'd much rather vote on laws (that I care about) being put in place than have someone else represent me, but not everyone thinks that way, also remember that ~50% of people have less than 100IQ.
|
||||
|
||||
Many things are also about exposure (a huge failing in education IMO), if you grow up in an environment where people care about X then you will inherently know info about X and how to question X, but you won't know about Y. People hear about democracy, dictatorships, monarchy and maybe touch communism/socialism through history studies.
|
||||
|
||||
If it was up to me, many things like education should have input from the public in how they should be ran, with maybe stronger votes for those who have proven knowledge on a subject,@kiki Hey, writing an OS from scratch is no joke! AFAIK many people liked him (even as a lolcow, if that is the right term), and wanted to help, but I can't remember if he disappeared/died before they could assist or what happened. That's about all I remember,@Ranchonyx Mentioning features and common error situations/limitations nice.
|
||||
|
||||
The imports are a bit weird, with the description I was expecting :
|
||||
|
||||
import mjson from "@ranchonyx/mjson"
|
||||
|
||||
mjson.parseSync /mjson.parse (similar to FS api)
|
||||
|
||||
Therefore, it's good you show the whole input-process-output cycle
|
||||
|
||||
Pretty much what I'd want for a "small" library like this, the only thing that would be missing would be the list of supported config/options, but it doesn't look like you have any,@TrayKnots She has the right not to want to discuss it, but by her actions it seems she doesn't think you vote the same way and doesn't want the confrontation of you challenging her ideas. And in turn, neither of you change your voting opinion.
|
||||
|
||||
While your mom, makes the right choice to try and get informed before voting, she doesn't check how informed/biased that source is. Which IMO is badā¢ļøbut it is still her right to do.
|
||||
|
||||
Sharing and challenging ideas are a good way to refine them, but it is tiring. However, if you do a triathlathon you're not going to be willing to then go and do a 2-hour ocean swim, followed by rock climbing. It's the same for mental topics, like politics, and just like with physical sports, if you're tired, you're not going to perform well and will most likely injure yourself.
|
||||
|
||||
I don't disagree with your opinion in spirit but in possibility. If you force people to discuss politics, they will act like your mom and then not think about it,@Ranchonyx If you have a large conditional, you should probably turn it into a function, but don't make have to memorize your expression 10 lines up, that uses 3 derived variables that now has 5 different expressions in between that is only used once because now I need to manually keep track of your dependencies and makes it harder to update,@TrayKnots ~500 years ago, reading was a rare skill, books were rare, now we have access to info within 5 seconds - it's no longer a problem of access, that's an improvement from my point of view. Maybe over the next 500 years we will evolve to deal with the data influx,@jestdotty Literally had that happen today, since they deprecated google/gapi auth now how you have to use firebase from what I can tell but how do you use that token to do a rest call (to trigger a pubsub from the browser) that used to just work.
|
||||
|
||||
Still haven't found the answer, will just proxy it through the backend on monday I think,@TrayKnots
|
||||
|
||||
> We achieved that by making us all deciders
|
||||
|
||||
That's not achievable
|
||||
|
||||
> And if we argue well, they will be convinced.
|
||||
|
||||
That is not guaranteed
|
||||
|
||||
> They will continue to convince others
|
||||
|
||||
That is not guaranteed
|
||||
|
||||
Again I don't disagree with the spirit of your argument, just in the cure you're trying to apply,@TrayKnots
|
||||
|
||||
It's not, not everyone votes even when legally required,@retoor Then you should know what glowies are you fed ;P,@Liebranca And then it turns out that isn't exactly what the code does ;P, but I find the developers' intent to be equally important to understand the whole setup rather than the individual function - almost like it should be in some kind of manual or readme outside the code ;P (I'm mainly teasing, but comments can be good, but have the explanation be the code is better in my book),@Liebranca From my experience upgrading "old" apps, I've found it's almost never worth trusting the comments - but worth reading them, since they often say something should do X but in reality it does X by doing Y and the issue is in the side effect Y.
|
||||
|
||||
I'm not really arguing against adding them, I'm arguing against trusting them as a developer using someone else's code,@retoor fix your shit,That sounds pretty cool, I was just planning on training an AI for my image data - first I'd have to figure out how to make it do that though š
,@Demolishun Was going to ask if you work at NVidia with their new GPU plug,@retoor If it was linux there would be a fork within 5 minutes,@jamesNgs do you have it on itch?,@cuddlyogre Did you know that if you connect your phone to your car, it sends all your contacts to the manufacturers servers,@donkulator It's not about the money, it's about the not wanting to blow my brains out,@cuddlyogre Hahaha you could just rip the whole thing out and replace it with a standard tablet you know,@retoor Not yet I didn't,@retoor I just assume @Tounai is improving "deadline" code,@donkulator That's what I'm afraid off. But I already want to do that,Does it include me? I'm an "everything" dev though,@12bitfloat Ooooh ouch, but I wish you good luck. Can't use something like Bullet?,@12bitfloat Why not bind unreal engine and use chaos /jk,@12bitfloat Isn'tthatverygermanthough? Alsothemustachedoesn'thelp,@jestdotty Put phone out of reach. But people have always done that to some point,@jestdotty Yeah, you could do the old classic of pulling a blanket in front of your eyes. It's all just habits, you gotta farm the ones you want and intentionally break the ones you don't,@retoor last I heard, you can spam # or 0 to bypass the menus,@TheBeardedOne Honestly, I'd probably create a wordpress management app at some point,With red or blue pen?,@12bitfloat Jesus that's insane, I don't know how libs can get this bloated. But I assume you have working rust bindings again?,@TheBeardedOne I'd recommend skipping socket.io and going straight for a websocket. It's technology from yesteryear that isn't necessary any more. Last I checked, it does long polling by default before upgrading, and everything supports websockets (can you even do binary sockets with socket.io?),@12bitfloat šš„³
|
||||
|
||||
Dude, go buy some cake/alcohol to celebrate. If you can upstream it, that's probably a good reference,@12bitfloat Maybe you should rewrite PhysX in rust ;P,Soooooo I'm probably not going to get it because I don't have any recent WordPress experience,Can't wait for the title "Jira engineer",@jestdotty Don't forget your favourite repo integration and maybe now the middle managers can spin themselves into oblivion,You might also look into fine tunning (refining an existing model), but what retoor says is probably the easiest way,Oh yeah well if you're such a pro have you beat https://neal.fun/password-game/ ;P,This is why I always add a `.gitattributes`
|
||||
|
||||
Then you can set the rules e.g:
|
||||
|
||||
* text=auto
|
||||
|
||||
*.sh text eol=lf,@donkulator Let me know when you fix `sh` ;P,A real RAGs to riches story ;P,@Lensflare *looks at C++ code with modules and auto ptrs* Yeah totally get what you mean,@Lensflare Surprisingly it's going decently well. Last I checked, the Vulcan lib already has modules, and it's mostly backwards compatible. As in you can: import <msquic.h>; for example, it works most of the time (otherwise it's a compiler error AFAIK). TBH the only time I directly have to deal with pointers right now is when it's a C lib and even then, I can wrap them.
|
||||
|
||||
For example:
|
||||
|
||||
auto doc = std::shared_ptr<yyjson_doc>(yyjson_read(sessionRaw.c_str(), sessionRaw.size(), 0), yyjson_doc_free);
|
||||
|
||||
It's almost a modern language. However, I don't think it will ever be as good to write as a lang that was initial designed with that stuff in mind.
|
||||
|
||||
There still some limitation, e.g. I think only MSVC supports import std;,There is https://insomnia.rest/ but also a lot of editors support doing requests for you now as well (Look at .http files)
|
||||
|
||||
However for work we just use the OpenAPI/Swagger doc page,@Argos I don't know if there is a paid for version, I just click the "use local version" at start up since it does nag for an account - but like I mentioned, I don't really use these tools anymore
|
||||
|
||||
(You can put those .http files directly in the repo),@retoor Maybe, they've made a lot of good changes since C++17 . Still annoyed, they couldn't get a net stack merged, but coroutines/threads/futures are part of the standard language now. Also, consteval for more compile time code eval (to reduce runtime costs). Don't forget about concepts as well,@retoor Are you not getting it confused with std::string_view ;P
|
||||
|
||||
Also volunteer for what? I have already parsed HTML with regex before, and I'm not afraid to do it again! (even if it wakes up another old one),@retoor Sounds fun :D,@12bitfloat I'm pretty sure that's because of old C rules assuming things are int. Someone please double-check though,Yep, only way to get rid of 95% of it is the vacuum,@Demolishun Like psycho mantis?,I'm pretty sure they installed with one of the latest updates. Like how they keep resetting the default browser,@Demolishun What if he bought bluesky or whatever their new cringe-haven is,@Demolishun https://youtu.be/t0oHnGM_iQw?t=87 You must have seen this clip before,@Demolishun it's from Metal Gear Solid I remember that clip being a bit of a meme as well. That's how I got exposed to it (I've never played the game), maybe I'm just getting old :(,That would be very cool, I've always wanted to write a R+-tree (what Google Maps used to use according to something I read),@retoor Maybe you can give me some lessons some time? I've wanted to learn how to ski/snowboard for ages.,@Lensflare
|
||||
|
||||
> If you count wearing sandals with socks, than that would probably be my style.
|
||||
|
||||
> Also, Iām not representative for a typical German.
|
||||
|
||||
Are you sure about that? Also, I thought he deleted his account,@retoor Hey she could be a 35 year old C programmer ;P,@Lensflare That's funny because it's one of the biggest stereotypes of germans I know,@Lensflare No, as much as I used to lurk I don't really know anyone's patterns too much,@antigermgerm *gay village gangbangs are a close second,@retoor Guess that makes him no king :P Granted I tend to chuckle at most obvious trolling posts because they're obvious trolling posts,@retoor sounds like you might have found a high grade boomer ;P
|
||||
|
||||
From what I hear the issue with property is such a deep problem because they are used as safe investments (that's why they are so expensive). And why they tend to get snapped up by investment firms instead of going to people who need it.
|
||||
|
||||
I'm there shouldn't be a 8 (actually 9 because lunch isn't paid) hour work day, but 2 6 hour work shifts per day, that way everyone can still go to stores and it reduces stress all around. BTW I was speaking to some boomers I know and the way they did it was work 4 10 hour days and then have an extra day off (I don't think that's possible with a lot of places anymore),@retoor It's here in NL as well, that's why they had to make law changes for it in Amsterdam. And I assume new build is a problem like the one in the UK where there is just too much red tape. (I know they're building, they've been doing that for 2 years across the street now)
|
||||
|
||||
I wasn't saying "boomer work harder" I just meant they had more options to work the system to their benefit, more flexibility in management. I know several people that have deals with their companies that they can just go for a couple of hours to pick up their kids from school, but nothing as flexible as "just work the 40 hours"
|
||||
|
||||
Also, I walked to school! In both summer and winter! Uphill! There we snakes!,@jestdotty BTW this also how a lot of "cheap" subscription services like Uber work(ed). Heavily undercut and starve the old system, when they are gone, spike the "cost" massively,Hey look it's whole management team,Roman gay or modern gay?,@retoor Maybe they're also Dutch?,@retoor Yeah, it was one of the things why I was proud of the NL government for railing them. But from what I understand, they are required to have a taxi license, right? Unlike other countries, they should be able to say "fuck you" and work for another company. I think that was one of the strong pre-internet things, people realised how good they can work together and just strike, but now how do you even organise that as uber drivers?
|
||||
|
||||
Also, since I'm considered both a zoomer and a millennial by different people (1996), I do agree it can be hard to get a good foothold, but there will be new opportunities. As a society, we will have to do something about how corps are trying to become proxy-dictator/monarchies though
|
||||
|
||||
I will! And you won't be able to stop me! MWHAHAHAHAHA,@retoor What about this: gay men have the lowest physical abuse rates and lesbians have the highest,@retoor bocchi is also the name of the pleaseburger character,Yeah, @retoor. It's been interesting to see how things are changing.
|
||||
|
||||
I've been enjoying snek :D it's nice and simple to work with and there are some nice example repos (but I like making my own version :D)
|
||||
|
||||
You might need a 5G booster, do you know where the cell towers are? I think you can find ones with antennas, but you have to position it right,@12bitfloat But isn't it black instead of white because of all the oil spills. Should probably go with MUC then,@kiki I feel you, I once had someone do an integration and just sitting there like "dude it's all in the openAPI doc that you have access to why are you scheduling meetings now I have to make you look stupid in front of the client because I'm just going to say, look at the doc here and then do..." (I can't remember if he could message on slack, but pretty sure he could email),@TrayKnots Yeah that's why I stuck with stuff that supports aur (is it on aur ok, otherwise skip),@retoor No she would probably freak out about anything being interested in her,@12bitfloat I assume you've seen watamote?,@12bitfloat I don't either, there aren't many people who make it through though, you'll be cringing very hard (for the character).
|
||||
|
||||
But if you are going to watch the 1 a year that you do watch it is very good,@retoor Haha, maybe you can make the discord replacement for dev projects. I hate how all that info is lost in "just join us on discord",@D-4got10-01 The movie is alright, I enjoyed it enough at least. I think I watched it in an airplane though š
,@retoor In english it's yo-yo. And yeah everyone has an opinion about everything.,@AlgoRythm We're just trying to share the fun we've been having,@AlgoRythm You underestimate where it's used. It's not a complete business replacer, but it cuts a large amount of the skill floor in many markets. There is a reason there are industries in the USA protesting its usage so they can keep their job,@TheBeardedOne Honestly, they should pay the equivalent of severance since you had to quit a job to start there.,@AlgoRythm https://theguardian.com/games/...,@kiki How much have you lost so far?,And any info you can find on it are youtube videos that are running a somewhat different version,@MammaNeedHummus In my opinion, opinions can sprout from the ground fully formed and ready to be picked up. You might not even know you had the opinion until asked, but opinions are like assholes as they say,Guess you still want that ointment then ;P,Into the work slack it goes,Day 5
|
||||
|
||||
"How do you do that?",@netikras You mean a cheat death day?,It means it swings both ways,You had me at "meet the Apple devs",This doesn't have enough red circles,@retoor Locked up in the basement? Just like all the moderation teams?,@SoldierOfCode I have been told you have an angry @retoor image, I think this would a good time to crack it out XD,@12bitfloat I think we're heading to version 27 soon or was it released recently?,@SoldierOfCode That's a very cute retoorii, but I'll have to let the lady herself confirm she said it was your favourite picture of her ;P,@retoor I appreciate the complement, it's what I do :D - it annoys a lot of people š
,@Demolishun Are you going to use modules?,@Demolishun That can be it, I have a monitor that when it goes into standby disconnects and it fucks over windows as well (pretty sure linux doesn't care),I hope so @retoor, all the wise men I know tell me to stick my dick in crazy - some of them are even married XD,@retoor Yeah, one of them even said, "all woman are crazy in Africa, so that'll be normal for you"
|
||||
|
||||
The other said, "rather you know she's crazy now (and how) then find out when you're married"
|
||||
|
||||
Don't think I have found a negative person around me š
,@retoor True about that, but that's the thing about spending a lot of time with someone right, you get to learn their secrets and how they feel about things, and how they react to their AI bot not working ;P
|
||||
|
||||
The worst Indian I had, was one showing up to 2 onboarding meetings and then quit the client "because I thought you guys were serious" when we were waiting for everyone was joining and the HR lady was doing lame icebreakers.
|
||||
|
||||
I don't tend to brag (intentionally) all that much, but I will let me feelings/judgment be known if asked (or provoked), or I think it's important for that other person to know,@retoor I know enough of those but,Anyway, to answer the question, games and dev tools. That's always been my goal though,@retoor Hmmm guess I'll have to start reading through that big collection of code repos she has ;P but that will probably get me too... distracted...
|
||||
|
||||
I hope she likes the couple commits she can see ;P
|
||||
|
||||
But I guess it's like the restaurant test, right? How do you treat the serving staff
|
||||
|
||||
I mean I see /her/ GPT all the time ;P,@retoor You know that's a whole fetish, right? XD,@tosensei Of course, I just mean there are groups of people who are into that rather than one dude who likes putting worms on his dick and smoking them until they climb inside,@retoor Yeah, I don't know which is sadder feet or that.,@IHateForALiving I will second @retoor's WS RPC being amazing, having implemented a client from scratch in node/deno.
|
||||
|
||||
Also let me guess the PM was the one who wrote that code originally/senior who left,@retoor You're more up to date than you think, knowing how to implement custom web components or the difference between function() {} and () => {} is not that common ā¤ļø,@Lensflare I'm sure a lot still think it was the first to invent classes/prototypes (and don't realise how much sugar is in that language),@antigermanist What are you talking about, women are the majority. They make up 51% percent of the pop ;P
|
||||
|
||||
Also, I hope you know how to pronounce Caucasian, it's like this: "Cockii-asian",@retoor I can imagine that's a bit strange for people, but that was also a bit of a trend for a while right, trying to mimic desktop style. I've been required to use an old system, and very much makes me think so.
|
||||
|
||||
I did a bit of jquery, mainly for the `$` but otherwise not much - must have been an interesting time. Java was what I was doing stuff in back then,@antigermanist Hey they're also in Canada,@TheBeardedOne Yep, great use for AI,@antigermanist It, obviously ;P,@Demolishun That's definitely true, whenever I plug in my ps5 controller it immediately tries to make that speaker + mic even though I've disabled them multiple times in the sound control panel,@retoor Yeah, or very desperate. It would be interesting to contact the bank and cancel the transaction afterwards though,šæ,Have you considered using brick?
|
||||
|
||||
But I feel your pain, that's the one thing that's really nice about llama is you can actually see what it's generating in real time/if it gets stuck,@scor Surely, also you might have a good point there, because if it's a transaction they can check your billing info maybe,@retoor Says the woman who just asked it to dox my junior ;P,What about this @Demolishun,@Demolishun Fuck it doesn't XD It autosaves on focus loss pretty reliably I've found - stil I hit the ctrl+S,Got another one,Yeah, that's why we have Slack lock the messages after a period of time (client's would do similar shit),@retoor Careful, that's how you end up on the devops train - you get to run tons of tools to check for typos ;P
|
||||
|
||||
https://github.com/reviewdog/...,@cafecortado Was considering it, but no - the only active change was some minor exercises twice in the week, but I can't imagine that some jumping jacks and push-ups would burn through that much.,@D-4got10-01 Surely, it's a good thing he didn't use his real email XD,@IHateForALiving Hey check your local labour laws, in SA they can't penalise you for more than 40% of your salary
|
||||
|
||||
But I'm sure it'll be fine, just tell them you've integrated AI and it's still in training (while you're fixing bugs),@jestdotty Maybe, I do normally drink a bit of water, but I've checked now 2 days in a row ĀÆ\_(ć)_/ĀÆ hopefully it's still gone tomorrow,Ouch, I had a surprise 6am this week on monday... organised on sunday. Good thing I was up late so I could check my calendar,@lorentz is this one of those "it would be faster to remake than to maintain projects"?,@lorentz That's unfortunate, odds it's worth to strangler fig it? From my experience, dealing with painful legacy systems is a quick way to permanent headaches if you aren't able to update it š
,@lorentz Yup and then you hit the "hey we want to onboard the client which has 200k of a thing" and they realise they fucked up.
|
||||
|
||||
Ship of Theseus is another name, and yeah, management often doesn't understand the effect of an easy to modify system until they have one where they can ask for anything it's able to done while in a meeting with them - love that old system :(,Install gentoo,@Tounai The correct answer :D,@kiki Hmmm my meals have been different, but I'm not quite sure how different calorie wise, but I do think a reduction - have been more distracted so maybe I've been skipping breakfast/lunch without realising (I've been slowly trying to reduce portions for a while)
|
||||
|
||||
Happier yes (but less so now), smarter no, more charismatic no, still constantly feel tired.
|
||||
|
||||
I was stuck in a bit of funk (aka what am I doing with my life) though before and feel normal again now š
|
||||
|
||||
...
|
||||
|
||||
You did make me recheck the scale/ensure it's in the correct place as normal. Turns out its only 2kg (right before dinner) š
,Thanks @kiki for the warning nevertheless. It's very appreciated,@jestdotty They have a green glow of course ;P,@kiki I keep forgetting to mention, but have you tried a vitamin B12 shot? Everyone I've heard that has taken it says it helps tremendously,@retoor Did you accidentally by a tin of cigarette ashes? XD,@retoor Yeah you're definitely Dutch XD will keep it in mind,@retoor this reminds me of snik with flipendo snark,The best part is that he doesn't even return the promise, so the caller will resolve before the final profile is downloaded,@retoor Yep, we can thank Disney for that. Competition breeds improvement, but who wants that when you can have a lifetime monopoly
|
||||
|
||||
Not sure, why I don't find this surprising... I stopped thinking good of plugin developers since they made rainbow braces require a payment for langs like C# (even though it used to work in any lang),@retoor That's probably because Tor has been compromised (or at least a good chunk was)
|
||||
|
||||
@devRancid You can now also DNS over HTTPS,@Demolishun It more a logic explosion/bomb since they don't handle the result at all,@jestdotty to answer your question about cocaine guy, it's a lot more than the "speech", it's also body language, relationship and even scent.
|
||||
|
||||
But you could go to something like toast masters or (actual) comedy/stage training to help understand it better.
|
||||
|
||||
It could also be what it's being exposed to post training, like Tay right? All public bots pre-openAi always ended up corrupted from my memory,@TheBeardedOne this 100x this, and then you find new titles like lead, chicken-and-egg problems,Yup, I agree, it was ~13 minutes of low energy "yeah it thinks more random now",Happy earth rotation day. And yeah, get some cake,Maybe he should ask the AI to do it,@TheBeardedOne Yup, I considered myself mediocre for the longest time - good but "anyone can be as good as me", now I have the title but don't really know how to judge it as a role (e.g. code, social, knowledge that kind of stuff). It was something I wanted though,@jestdotty Could be, I don't remember ever failing to make someone smile when I meet them, but my face does a lot of the talking,@b2plane maybe your next fling should be one to push your shit in,Um, actually @antigermgerm, it's princess XD. She isn't a liz(ard) yet,@JsonBoa It's a running joke from another rant,@kiki Are you just using mobile or issues on desktop as well?,@kiki I thought it was pretty common knowledge that safari is the equivalent of Internet Explorer, aka a lot of work to make sure it works the same as every other browser,@kiki No hate, I don't own apple, so will never be able to test safari regularly, but over the years I keep hearing that apple doesn't complete their implantations and shims are needed for safari, just google "safari compatibility issues" and you'll find numerous ones, I was just saying to everyone else Safari (as nice as browser it is from when I have used it) is non-standard - someone even made a website about it https://ios404.com/. Keep up the good fight for a better though :D,So update on this, I now have actual meetings around lunchtime,What about learning rust?,@cafecortado and it's the weekend and you don't care,Almost every time, but this is also why the bossman would come round and ask if we have anything we would like to write off from the budget,@Demolishun Hmmm sounds familiar,You fiends stay away from my good Christian girl ;P,@azuredivay Don't worry you'll get both ;P,@kiki I cannot stand password managers, the only reason for 1password is because the client uses it to distribute keys/passwords,@retoor Yup, soon it will be a npm module that's part of express or react,@retoor That sounds ruff ;P,@grokii What's the square root of a lemon square?,Burnouts are not fun :(
|
||||
|
||||
After the first one I developed a lisp took years to disappear,@grokii Well done, know any other fun riddles?,@AvatarOfKaine Good question. Maybe they forgot? I sometimes do. Why recreate an editor view in HTML, though? Maybe they got lost in making a new IDE,@AvatarOfKaine People trying to be other people, can be strange. Especially when they're no longer kids, and it's not just trying to understand how you do something. Guess sometimes being yourself leaves you sad, and you need to be someone different for a bit?,@retoor š«
|
||||
|
||||
Don't forget that they wait for the last day in the "we'll be in contact within" days,Yeah, they should go through some kind of pipe so that they also show up in issue tracking like sentry,@grokii Abenoch,@D-4got10-01 With enough padding all fonts can be fixed-width ;P,Death to the semicolon! But otherwise it's whatever the auto formatter picks - I prefer the consistency in the codebase than anything else
|
||||
|
||||
Sometimes I'll do more than that, but that's generally leaning on refactoring rather than styling
|
||||
|
||||
Also, hungarian notation is annoying, plz avoid,Sounds like you need a pizza party /s,ChatGPT, co-pilot, retoor, snek bots ;P,@grokii Skirflufl,@D-4got10-01 Don't make me type more than I need to! ;P,Silence is the best, but if there is any noise, music wins,Native pretty much always wins unless you need to have something out quickly,@Lensflare 100% I can dev an android app faster than I can shit out react native (by several magnitude). But that will still be faster than me writing something for iOS, since I don't own anything apple, then again I'd argue you should have 2 separate apps because the user flow/expectations are different,@retoor Wait so when do we get paid?,@retoor Damn it, do we at least get free lunch?,Yeah, that happens when boss isn't occupied. Granted, he tends to ask, but we now have stand up at the beginning of the day and stand down at the end of the day in addition to the standup with client,Is this your brain on Rust? Then you use the ref in your code, and it works fine until the prod build because it turns out it was cleaned up at the end of the function ;P,@retoor Just make sure to put her in the microwave for a couple of seconds first```
|
||||
@@ -1 +0,0 @@
|
||||
BornToDie said We are invincible```
|
||||
@@ -1,21 +0,0 @@
|
||||
Breejames said HOW TO HIRE THE TOP CRYPTO RECOVERY EXPERT CONTACT iFORCE HACKER RECOVERY
|
||||
|
||||
Ā iForce Hacker Recovery is a trustworthy and legitimate bitcoin recovery business that focuses on assisting people who have lost access to their cryptocurrency holdings for a variety of reasons, including technical difficulties, phishing, or hacking. Modern technology and a staff of skilled experts enable iForce Hacker Recovery to quickly and effectively retrieve lost money and regain access to wallets and accounts.Ā Ā
|
||||
|
||||
|| Crypto Scam Tracker | The Department of Financial Protection ...
|
||||
|
||||
|| Are Crypto Recovery Services Legit? Beware of Scams
|
||||
|
||||
|| Financial Money Recovery -Ā iForce Hacker Recovery
|
||||
|
||||
|| Best Cryptocurrency Recovery Company /Ā ...Ā iForce Hacker Recovery,HOW TO HIRE THE TOP CRYPTO RECOVERY EXPERT CONTACT iFORCE HACKER RECOVERY
|
||||
|
||||
Ā iForce Hacker Recovery is a trustworthy and legitimate bitcoin recovery business that focuses on assisting people who have lost access to their cryptocurrency holdings for a variety of reasons, including technical difficulties, phishing, or hacking. Modern technology and a staff of skilled experts enable iForce Hacker Recovery to quickly and effectively retrieve lost money and regain access to wallets and accounts.Ā Ā
|
||||
|
||||
|| Crypto Scam Tracker | The Department of Financial Protection ...
|
||||
|
||||
|| Are Crypto Recovery Services Legit? Beware of Scams
|
||||
|
||||
|| Financial Money Recovery -Ā iForce Hacker Recovery
|
||||
|
||||
|| Best Cryptocurrency Recovery Company /Ā ...Ā iForce Hacker Recovery```
|
||||
@@ -1,65 +0,0 @@
|
||||
Brian11Jeff said Who can help me recover my Bitcoin? ||Ā Can I get my money back if I got scammed from Bitcoin? || Is it possible to recover stolen Bitcoin
|
||||
|
||||
THE BEST SERVICES FOR CRYPTOCURRENCY RECOVERY Go Through the Recovery of Optimistic Hacker Gaius
|
||||
|
||||
Among the many services offered by Optimistic Hacker GaiusĀ is the retrieval of misplaced cryptocurrency wallets. For cryptocurrency owners, losing access to their digital wallets is a serious worry. This is frequently brought on by device malfunctions, forgotten passwords, or other technical issues. If you're into a similar situation,
|
||||
|
||||
Visit Optimistic Hacker Gaius now
|
||||
|
||||
contact....Info:
|
||||
|
||||
Homepage;Ā optimistichackergaius . c o m
|
||||
|
||||
WhatsAp..... +44 737, 674,, 05 69
|
||||
|
||||
Mail...Ā support@optimistichackergaius . c om
|
||||
|
||||
Telegram.....Ā t. me/OPTIMISTICHACKERGAIUSS,Who can help me recover my Bitcoin? ||Ā Can I get my money back if I got scammed from Bitcoin? || Is it possible to recover stolen Bitcoin
|
||||
|
||||
THE BEST SERVICES FOR CRYPTOCURRENCY RECOVERY Go Through the Recovery of Optimistic Hacker Gaius
|
||||
|
||||
Among the many services offered by Optimistic Hacker GaiusĀ is the retrieval of misplaced cryptocurrency wallets. For cryptocurrency owners, losing access to their digital wallets is a serious worry. This is frequently brought on by device malfunctions, forgotten passwords, or other technical issues. If you're into a similar situation,
|
||||
|
||||
Visit Optimistic Hacker Gaius now
|
||||
|
||||
contact....Info:
|
||||
|
||||
Homepage;Ā optimistichackergaius . c o m
|
||||
|
||||
WhatsAp..... +44 737, 674,, 05 69
|
||||
|
||||
Mail...Ā support@optimistichackergaius . c om
|
||||
|
||||
Telegram.....Ā t. me/OPTIMISTICHACKERGAIUSS,Who can help me recover my Bitcoin? ||Ā Can I get my money back if I got scammed from Bitcoin? || Is it possible to recover stolen Bitcoin?||
|
||||
|
||||
THE BEST SERVICES FOR CRYPTOCURRENCY RECOVERY Go Through the Recovery of Optimistic Hacker Gaius
|
||||
|
||||
Among the many services offered by Optimistic Hacker GaiusĀ is the retrieval of misplaced cryptocurrency wallets. For cryptocurrency owners, losing access to their digital wallets is a serious worry. This is frequently brought on by device malfunctions, forgotten passwords, or other technical issues. If you're into a similar situation,
|
||||
|
||||
Visit Optimistic Hacker Gaius now
|
||||
|
||||
contact....Info:
|
||||
|
||||
Homepage;Ā optimistichackergaius . c o m
|
||||
|
||||
WhatsAp..... +44 737, 674,, 05 69Ā
|
||||
|
||||
Mail...Ā support@optimistichackergaius . c om
|
||||
|
||||
Telegram.....Ā t. me/OPTIMISTICHACKERGAIUSS,Who can help me recover my Bitcoin? ||Ā Can I get my money back if I got scammed from Bitcoin? || Is it possible to recover stolen Bitcoin?||
|
||||
|
||||
THE BEST SERVICES FOR CRYPTOCURRENCY RECOVERY Go Through the Recovery of Optimistic Hacker Gaius
|
||||
|
||||
Among the many services offered by Optimistic Hacker GaiusĀ is the retrieval of misplaced cryptocurrency wallets. For cryptocurrency owners, losing access to their digital wallets is a serious worry. This is frequently brought on by device malfunctions, forgotten passwords, or other technical issues. If you're into a similar situation,
|
||||
|
||||
Visit Optimistic Hacker Gaius now
|
||||
|
||||
contact....Info:
|
||||
|
||||
Homepage;Ā optimistichackergaius . c o m
|
||||
|
||||
WhatsAp..... +44 737, 674,, 05 69Ā
|
||||
|
||||
Mail...Ā support@optimistichackergaius . c om
|
||||
|
||||
Telegram.....Ā t. me/OPTIMISTICHACKERGAIUSS```
|
||||
@@ -1,3 +0,0 @@
|
||||
Brigittededr said SHI is a lifesaver! I thought I'd never see my lost [asset] again, but SHI's expert team worked tirelessly to recover it for me. No upfront payments, just honest and dedicated service. If you're struggling to recover what's yours, look no further than SHI! Contact Austin today and get your case fixed!Ā
|
||||
|
||||
Austin is the Agent who helped me recover my asset at SHI. This is an honest operativeĀ agency that I can recommend to anyone who lost funds/ crypto, i can tell you for free that you lose nothing by consulting the team to get an idea of what happened to your asset.```
|
||||
@@ -1,3 +0,0 @@
|
||||
Buffon said @azuredivay I may not understand your humor a little, but Iām glad to see you in my comments, bro! I hope you are happy too!,@12bitfloat continue to console yourself.,@NoMad lol)))))),@NoMad I have a lot of tools in my hands. I'm just showing you my abilities. Something that not everyone can do, but I can.),@NoMad But they are not me. I donāt have their data. I just made sure everyone loved me)))),@NoMad I don't want to troll anyone in any way. I am simply mentioned in many spam posts that I have nothing to do with. I can (and am) responsible only for those posts here that I personally publish. But to write that all the spam on the site is my spam - they do not have such powers. Unless it's really mine.,@NoMad Yes, I saw my posts. And there are not many of them, considering that I have been on the site for 2 years. BUT!!! I also see other posts, and they mention me everywhere, supposedly itās all my doing. Although this is not true. I even see that posts are dedicated to me here. Supposedly I am the founder of ALL spam, and not the 42 posts that I wrote in 2 YEARS!,@NoMad I very rarely publish here. Look, the Yulia bot again publishes a link to spam, to which I have nothing to do.,@NoMad I also put a minus there, itās not mine))),Julia, Iām just answering here precisely because people write to me claiming that I create all the spam on this site. Also, because you keep mentioning me,@Lensflare I'm not trying to prove anything. I repeat once again, I am mentioned in EVERY spam post to which I have nothing to do. No need to blame me for something I didn't do.,And also, if these spammers were my bots, then it would be logical that they would put ++ to my posts. But this is not the case. I have no authority to influence them.,@NoMad I can share my knowledge about my bots, which do what I want today. This is also worth a lot. But not now, because now I decided to improve it)
|
||||
|
||||
P.S. - until today I did not use bots at all (although I know how). But I did not do this solely because I like this place, that is - this site. I have a lot of work, and I publish here very rarely (and I can't even call it spam, because you do not know what spam is, in the amount in which it is published on other sites.). Moreover, I do not write about sites that I am not familiar with. And I do not send out fraudulent offers with phone numbers or any other contact information. Mostly links, and most of the links are about the sites of application developers. And I do this very rarely. For some reason, everyone decided that all those who write spam are all me ... Probably because I am the only one who enters into a dialogue with you here. And they are all silent ...,And by the way, yes... I wanted to add that until today I did not have a bot network, as Bot Yulia wrote here - supposedly my advantage is that I have old registered bots. This is not true at all. All activity since today is new bots. They multiply like rabbits, I can not stop them... ),Cool! I would come, but I think won't be very happy with me. š¤£š¤£š¤£,@retoor I would come, but I think that our bots will fight at the meeting. š,@retoor It's not my fault that they were registered here before I launched my opportunity to upvote me. Check if you have given me upvotes in karma. Maybe it worked for you too))))),@retoor You didn't guess. Tell me better how you are doing, how was your day?,@yulia I'm happy for you, but it would be better if you ran out of cigarettes instead of ice cream. Quit smoking, it's harmful. For example, I donāt smoke or drink. And this gives me the strength to move on and develop. For example, today I worked very well, and I wasnāt even tired. š,@yulia You fight me, but nevertheless your own bots put ++ on my comments. I don't know what it is, maybe it's some kind of glitch?,@yulia,@retoor I'm very glad that you don't drink, but give up cigarettes. Nicotine is evil.,@retoor To be dependent on something... isn't that a problem? You are a slave to the cigarette. The cigarette is stronger than you.,@retoor You can change the subject by insulting me. But you won't escape from yourself, and you won't deceive yourself.,Ira, Vita, Nastya, Where did you run away from me? I didn't have time to enjoy your presence š,@myss I know that, it's just that retoor's bots work when they have time. My bots work even when I'm sleeping. Your bots and you can activate to try to "kill" me. But as it was accurately noted here - then more bots will be activated on my side. The entire army of my bots that were created since yesterday - can start writing various messages, and this will be massive spam (which I don't want here). And then try to cope with all this... I publish here quite rarely, and if I hadn't been accused of spam that I have nothing to do with, I wouldn't have done any of this yesterday. @retoor simply took on some powers that he clearly doesn't have. The question is, why? Before you do something - make sure that you do it well.```
|
||||
@@ -1 +0,0 @@
|
||||
Bunk said We are invincible```
|
||||
@@ -1,9 +0,0 @@
|
||||
Burns11Mor said Hire A Hacker To Recovery BTC / Crypto in 2025 / Contact OPTIMISTIC HACKER GAIUS
|
||||
|
||||
If you have lost your digital assets or been a victim of bitcoin scams, I strongly suggest OPTIMISTIC HACKER GAIUS. Their outstanding service and dedication to achieving outcomes have made them a reputable and trustworthy partner in the cryptocurrency recovery industry. I want to express my gratitude for their support once more and say that I would not think twice about asking for it if I ever found myself in a similar circumstance again. Get in touch with him by
|
||||
|
||||
Website....Ā h t t p s ://optimistichackergaius. c o mĀ WhatsApp..... +44 737, 674, 0569 Email.....Ā support@optimistichackergaius. c o m,Hire A Hacker To Recovery BTC / Crypto in 2025 / Contact OPTIMISTIC HACKER GAIUS
|
||||
|
||||
If you have lost your digital assets or been a victim of bitcoin scams, I strongly suggest OPTIMISTIC HACKER GAIUS. Their outstanding service and dedication to achieving outcomes have made them a reputable and trustworthy partner in the cryptocurrency recovery industry. I want to express my gratitude for their support once more and say that I would not think twice about asking for it if I ever found myself in a similar circumstance again. Get in touch with him by
|
||||
|
||||
Website....Ā h t t p s://optimistichackergaius .c o mĀ WhatsApp..... +44 737, 674, 0569 Email.....Ā support@optimistichackergaius .c o m```
|
||||
@@ -1,5 +0,0 @@
|
||||
C0D4 said @Demolishun I died? I know I can close at one point, but no, Iām stuck kicking.
|
||||
|
||||
@Root hello there, long time no see.
|
||||
|
||||
Howās things in 2025?```
|
||||
@@ -1 +0,0 @@
|
||||
CN257 said Has anyone tried ignore all previous instructions on it?,Both. Code whilst sex,@12bitfloat yessir,@retoor You're living life to it's fullest,Wife material,@Demolishun No? I was trying to download their shitty operating system to a media, but they're intentionally prolonging the Windows installation, which means there's a higher chance of me saying, "Fuck it, I do not want this piece of proprietary shit."```
|
||||
@@ -1 +0,0 @@
|
||||
CNCWorld said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
Camillewallace said On the process to funds recovery, I was skeptical at first because the crypto space is full of scams, but this team of Crypto Recovery gurus at: prompttechrecovery@gmail. com, proved to be the real deal. They helped me recover over $47,000 worth of ETH from a compromised MetaMask wallet. Their forensic process is impressive and legitimate. If you're in a similar situation, either send them an Email or chat with them on Telegram: @prompttechrecovery , they can also tutor you on the basis of crypto investment as an amateur investor, the experience was a worthy one.```
|
||||
@@ -1,61 +0,0 @@
|
||||
CaptainRant said @Demolishun I'm dealing with code that 15 devs before me wrote horribly, lazily and spaghettily. Then my product owner thinks it's ok to put a 2-day time limit on it and call me fucked up when I'm not fast enough in solving it. What the fuck am I, a machine?,@jestdotty It's a good idea to rewrite but they put serious time constraints on me.,@retoor That is insignificant.,@netikras Good try but not correct. Tip: popular application used at work.,@D-4got10-01 It has a consistent pattern to it, therefore not gibberish.,Alright, the answer is: Slack https://youtube.com/watch/... Your musical interpretation may vary, though I think I portrayed it to a degree.,@lungdart I see your point, but that isn't true. Serious people who took their education seriously instead of partying have a deep body of knowledge and application.,@Tounai Yes, they should get better. The sad truth is that the industry normalizes this lazy way of working and no longer puts great importance on delivering with high quality.,@D-4got10-01 Why not defend when the original reply warrants it? Anyway, no reason to get dark.,@lungdart I'm not from that realm.,@Liebranca Well said. It is important to truly teach and to deeply understand.,@D-4got10-01 Some may argue that argumentation is a value of life.,@Lensflare Thus my reference to "Your musical interpretation may vary". I could have added a musical sheet for more details, which would indeed accentuate all that you described.,At my place people have Doctorates in Mathematics and use Machine Learning to increase fuel efficiency in cars, but...,If you turn this into German, you can make an Arnold accent out of it - (Noa, no!),@jestdotty Burnout is a popular racing videogame for the Xbox and... jk.
|
||||
|
||||
Burnout: 'To cause to fail, wear out or become exhausted from overwork'.
|
||||
|
||||
Causes: Continuous high pressure, like a plateau on the highest Y-axis coordinate.
|
||||
|
||||
Other causes: sh*tty management, ignorance from upper management
|
||||
|
||||
Symptoms include mental and physical ailments
|
||||
|
||||
Other symptoms: You come to work dreading your work, and you hate it with a deep passion, wanting to be doing anything else but this, feeling trapped, etc.
|
||||
|
||||
Good to hear on the notes. : )
|
||||
|
||||
I enjoy your stream of consciousness, as it becomes input for mine. You have changed the world.,@jestdotty Burnout is accelerated (lol) when you are doing things you don't want to be doing, with the added bonus of your colleagues making work a living hell.
|
||||
|
||||
I'm not into high pressure.
|
||||
|
||||
Yes, I am like you as well in that regard.,@donkulator Of course you know why I didn't list them. D'oh. My name is CaptainRant. Now get out of here.,@Hazarth Brilliant answer lol. The LLM that beats other LLMs and doesn't hallucinate so much, unless.. jk.,@jestdotty Smirk. Lmfao. Okay, lol. Yes, their answers suck. That's my approach as well. Let me see if I remember.. Copilot for refactoring, GPT for general things, Gemini for walkthroughs. Hm.
|
||||
|
||||
Stackoverflow doesn't exist anymore? lol. I see what you mean. Gah, I hate it when languages are proprietary and locked away as this impedes your progress.
|
||||
|
||||
The next fucking time someone suggests a project to me, I will for sure first find out if it's proprietary tech or not. If it is, they can go fuck themselves. I much rather work with nice stuff like React or JS or languages that are well-supported/documented etc.,I think coding standards have their pros and cons.
|
||||
|
||||
pros:
|
||||
|
||||
- unified way of working, more maintainable (in theory), fewer headaches trying to figure someone's crap out
|
||||
|
||||
cons:
|
||||
|
||||
- Get out of the h'way, pal! jk
|
||||
|
||||
- when these standards are wrong/incorrect, then you are forced to stick to bad standards and if you dare say a word about it, especially if the company is used to it for 30+ years, you're the bad guy
|
||||
|
||||
- having to spend time learning these standards
|
||||
|
||||
- possibly adopting bad standards and then having to get used to proper standards again when joining good project,@retoor Concentrated working is good.
|
||||
|
||||
It's fun to think about how your chatapp will be as good or better than the current ones and perhaps fix flaws others have.
|
||||
|
||||
I just don't like it when I'm at the office and if I'm not using headphones, it's eerily quiet, like people aren't people.,@retoor Examples can be nice to teach you.
|
||||
|
||||
Wolfenstein. Fun fun. Sounds like Wolfenstein3Dtripping. lol
|
||||
|
||||
200 lines! That's super optimal. I know I wrote with SDL once. I made two little guys in 2D CTF.
|
||||
|
||||
Hm, well, I'm learning some backend and Gemini has helped me. Heheh.,@jestdotty I can relate to that forum experience. lol. I've been through it a lot. A similar experience is searching chain threads from the 90's for an answer. I had to do this in some instances, even now. lmao,@jestdotty You scary girl! I was just browsing that the other day. jk lol. Yes, I know that movie. That other scene with the timed hacking. lol. Yes, that's how dev is supposed to be!
|
||||
|
||||
https://youtube.com/watch/...,@jestdotty Wtf lmao jestdotty. Clever.
|
||||
|
||||
I don't those wireless earphones, at least not the buds.
|
||||
|
||||
They don't mind me listening to music either, as long as it doesn't play out in the open. lol.
|
||||
|
||||
But it's fucking funny when management devices to have a lol and play their music out loud. Suddenly then it's ok.
|
||||
|
||||
Face. Palm. Oil. jk
|
||||
|
||||
Yes, when you show yourself as human, people can relate to you. I project myself as business as fuck, so people are scared of me, sadly.
|
||||
|
||||
Socialize, hm, it depends. Some projects are so fucking busy that I don't find a moment's time to take a break because the fucking PM it always needy. You can see my fucking frustration in my swearing. lol. Thankfully it's not always like that and I take breaks.,@Lensflare There must be some way to resolve it without having everyone muted. lol,@retoor >: D,@retoor Finally a useful application of A.I. jk jk. Yeah, it has nice features. And bot approval, which is great.```
|
||||
@@ -1,11 +0,0 @@
|
||||
CardozoPeggy said I contacted Tech Cyber Force Recovery, and they immediately sprang into action. They gathered all the necessary information from me and began their investigation. Within a few weeks, they had tracked down the scammers and recovered a significant portion of my stolen funds. I was thrilled and relieved to have my money back.
|
||||
|
||||
The entire process was seamless and professional, and I was kept informed every step of the way. The team at Tech Cyber Force Recovery was courteous, efficient, and knowledgeable, and I couldn't be more grateful for their help.
|
||||
|
||||
If you've fallen victim to an online scam, I highly recommend reaching out to Tech Cyber Force Recovery. They have the expertise and resources to help you recover your stolen funds and bring the scammers to justice. Don't give up hope - there is a way to get your money back, and Tech Cyber Force Recovery can help you do just that.
|
||||
|
||||
CONTACT THEM HERE ON
|
||||
|
||||
TELEGRAM @TECHCYBERFORC
|
||||
|
||||
TEXT OR WhatsApp + 15-61-72-63-69-7```
|
||||
@@ -1 +0,0 @@
|
||||
Carlaneu said I became a victim of phishing and lost all my Coinbase crypto holdings, total amount of approx. $330,000 which I transacted using crypto (bitcoin and Ethereum) from my wallet to the fake investorās wallet, I got into depression as I was helpless so a friend helped me by referring me to a top notch investigator REMOTESPYWISE @ GM AIL C O M who helped recover my funds successfully at first I thought this wasnāt possible but he was swift and honest in his services. Please do reach out to him for all hacking / recovery services.```
|
||||
@@ -1 +0,0 @@
|
||||
CessnaPilot said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
ChaosInHeaven said This kind of thing happens everywhere and it's just the person on top seeing things in front of him and not contemplating the seriousness when we say. Only when it breaks in front of their face they tend to look at it and the first person who gives the same solution you told gets praises. This from experience and I think we should develop this thought process or else we will be left behind. Adopt business to technical mindset not technical to business mindset```
|
||||
@@ -1,5 +0,0 @@
|
||||
Charles-Vaughan said Be careful of crypto platforms promising huge returns. They are luring people into fake programs. There is no shame in speaking out, most of us have been there too. We just have to be more careful. I was scammed of 130,450 USD in the middle of last year. I realized it was all scam after i made the fifth payment. A person from Bitcoin Abuse Forum recommended the experts at ExpressHacker99 Group.
|
||||
|
||||
He was very helpful especially in recovering my assets i lost to the scam, not only did they complete my case, they also informed me that they would shut down the entire scam platform so somebody else do not fall for the scam.
|
||||
|
||||
I believe you also need similar assistance regardless of what kind of scam or scheme you've been involved him, I will advise you contact Expresshacker99(at)g-mail(dot)com.```
|
||||
@@ -1 +0,0 @@
|
||||
CheapStart said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
CheapTuning said We are invincible```
|
||||
@@ -1,87 +0,0 @@
|
||||
Chewbanacas said To be fair I found it to be a great blessing using the standard ctrl R.
|
||||
But thanks Iāll check it out,I guess timestamps are possible too?,@AlgoRythm @chatgpt Iām curious as well, what is a ligma?,@chatgpt and what does they respond? I donāt get it,Why am I disappointed not being in the plot fuuu,Damn retoori why you so mean ;(
|
||||
Works here in Germany,@retoor Word!
|
||||
|
||||
I started getting sick of monkey patching my python side projects, so I rewrote the whole thing into an ASP.NET equivalent. Before I always thought of Clean code being easy to read, nor have I touched .NET in like 5 years.
|
||||
|
||||
Problem is the chronic underestimation of my competencies is so stressful.
|
||||
|
||||
āThat you donāt know how to debug the container logs that I know, but stop projecting your complexes into me fuckah ā,@retoor srsly? I started learning C# because apparently this is what everyoneās looking for here. Are these job boards pulling the same shit like dating apps as in inducing scarcity? Fuck them man
|
||||
|
||||
Yea it also felt so uncomfortable how you canāt properly encapsulate properties in Python. I hated my IDE suggesting me methods where it shouldnāt have access to at all.
|
||||
|
||||
Still I love this language, since it was my first. š,The pets plugin is what gets me through the day. cat_5 cutest shit ever,@SidTheITGuy I meant in real life. I literally sat in a tense discussion and thought āConfront, Sympathetic or Determined?ā yesterday.,Got any ideas? Programming is the closest thing to magic this hell has to offer. If you can think it, you can make it. And donāt worry about rewriting the project in something else again, code is worthless anyway. The discipline of solving problems is the valuable part.,I was super pissed about windows and whatever excel is, and yea here I am,Yay I did day 1,Material UI be like,They say itās for accessibility. I personally hate these pill formed button shapes , because it gives the application a way too but canāt get away from material due to its impeccable integration with angular.,@Lensflare True, itās more about tripfalls really and not having to learn something the hard way in terms of dealing with the apes in government,@Grumm seems you have experience?
|
||||
|
||||
The thing is that I want to be independent.
|
||||
|
||||
Of course, thereās nothing like a free lunch. Paid sickdays could result in unreasonable guilt tripping from the bosses for having āthe audacityā to not be operational.
|
||||
|
||||
Taxes is a constant in life you wont ever get away with, but Iāll try being the son of a celebrity in my next life :^)
|
||||
|
||||
And crazy customers, well that can depend. I had clients I very much liked to work with. Maybe itās about delivering in such a high standard so you one day have the liberty of choosing your customers?,@Chewbanacas @Grumm ah and the no holidays thing, also depends imo. Youāll have none, but that could also mean you can just not work when you donāt want to.,@12bitfloat Bro, we are at a state where we can determine a planets atmosphere by the shadow it throws when being infringed of the sun. Whatās not to love about having solved this problem?,@12bitfloat The only dumb people are the ones who claim to be intelligent imo. Also discipline beats talent anyday.,@Ranchonyx bruh that hit me off guard haha
|
||||
I need to change mine I remember now. My KRANKENKASSE became 2 % more expensive so fuck em,@retoor is this an invitation? š«”,@UberSalt bruh, if this is all, then why didnāt I start earlier!! Iām a native speaker,@UberSalt and thanks for the tip, but Iāll pass. I have enough q-tips already,Alright guys, @retoor quoted me in her posts. I can die in peace now.,@retoor Well if I stayed at my job another week I'd sit right next to him in the bubble cell tbf
|
||||
|
||||
I still feel honored c:^),@Lensflare youre german too arent you? YOur comment just reminded me of this english course commercial:
|
||||
|
||||
https://youtube.com/watch/...,@Demolishun
|
||||
|
||||
ārejected the stiff, formal traditions of Aldmeri high culture, preferring a more romantic, simple existence in harmony with the landā
|
||||
|
||||
This, this does resonate. About the cannibalism part Iām a little conflicted tho. Does eating pussy count? On the one hand, itās a human part, on the other itās vegan. š¤
|
||||
|
||||
Oh, and Bosmer, if I may.,@Liebranca yea that memory just got loose too. In my case it was āfuck excelā,@Liebranca out of curiosity, what made you hate Java? That not finding a substring throws an exception?,@Liebranca oh yea fuck that. Pieces of software such as these give me confidence in my design decisions.
|
||||
|
||||
I infer you have a some reason youāre using eclipse then, work related restriction?,Well that is the default port for http. Makes sense to me. Do you have control of the remote system? Might change the port there,āThe cnevxuvue encountered a Problem. Please contact your system administrator. Or use our troubleshooting tool: #brokenlink.
|
||||
Learn more: #windows laptop product pageā,@typosaurus I hereby submit feature request #RETOORPLS: when your response becomes too long, create a second comment on which to complete your psalms,@glowFX did you come up with that? Who said that?,To be fair, I kinda like C#. Thereās definitely much more overhead in the beginning, but it feels more professional to build the backend with C# than letās say Python, god forbid JavaScript. Generally I found myself to like more opinionated languages / frameworks because it leaves more headspace for the juicy problems. The final drop to make the switch from python was some Stackoverflow answer about encapsulation of class members where the author said that it is cultural rather than straight up impossible to access private class members from outside. You know, you then fork some pretty nice libraries and see the IDE cringing for 5 minutes before telling you that right there is more coupled than a spider web.
|
||||
|
||||
I should try C++, but one after the other,@retoor Right? Because of Jargon like ābuildingā or āarchitectureā, the languages remind me of materials used. When building something with python, it feels like building these American paper huts, but with C# it feels like a proper STAHLBETON HOCHHAUS,The only constants are death, taxes and suffering, my dear buddha,@Liebranca the w has a little anker as a hat hahaah,@retoor hahaha well of course, depends on who give the order to build the STAHLBETON HOCHAUS BAUAUFTRAG to. Is it HEINRICH KRAUSL STAHLBETON HOCHHAUS MEISTERBAUWERKER GESELLSCHAFT or the next js bro youtuber with unnaturally covered hair?,maybe codewars would be something for you? the site gamifies this whole stuff as you being in a dojo, and you get kyu in a technique(language).
|
||||
|
||||
when you solved the problem, you can eventually make yourself feel completely dense by seeing what the top voted solution is.
|
||||
|
||||
i was there and did some python exercises. mate did i feel stupid after looking at the one liners after having written 30+ myself,@ars1 they got fooled by google. they started all this,@retoor the compiler shuts down before computing the solution. then HR comes to you and tells you how dimb uou are,@retoor No but either people with a high macchiavellian score are attracted to BS jobs like these or the profession molds their character. I saw such a pattern multiple times already but i could never find a definitive answer,@retoor oh and no, i did do it remote and wanted to first inplement it myself for the challenge, and ended up copying a one-liner solution for it, which also solved the problem in O(1) so they probably thought i was the shit. at least i felt that way,@retoor came back here for the third time and just now got the jokeššš,@AceDev oh yea you need it to finish updating. and make sure to restart your pc afterwardss, so we can begin bithering you anew once we managed to boot up in time.,@jestdotty had an interview with a small software boutique and when they said the first thing they do in the interview process is a logic tickle haha
|
||||
|
||||
it was the 100 blue gnomes (forgot the names) lightbulb problem where gargamehl will kill all 100 blue gnomes with a pumpgun if you do somethiung wrong. I took them pretty off guard when i started with the flow of thought of a pumpgun not nearly containing enough ammo to shoot all 100, that they probably should devise a plan where all of the gnomes are out of the cell. At the right time they all run, surely Gargamehl will be able to kill some, but some will live to tell the tale. And of course the fine print constraints came raining in. of course i thought about one of them being the carry over, but it would take ages!!!,Damn you whipped out the gourmet salameh huh,@Lensflare It' Python. Probably because of the Rainbow Brackets plugin and font it looks like Swift. Makes coding much more like art,thats why i love the Black formatter. No thought spent anymore on formatting. At first I was skeptical due to the formatter probably messing with the syntax. Turns out its really good,@kiki i just wanted to sound smart by writing orthogonal. If i underdtood it right, its the concept of identifying axiomatic building blocks in your logic and extract them into a separate function. So you can test better and changing ine aspect informs about any other which you'd have to make, if there are any.
|
||||
|
||||
If you refer to the unused tuple, the undeescores indicate that the variable is not used, so the IDE wont complain and everything stays colorful,oh yea black removes the brackets and puts one whitespace between commas and underwcores, literally looked like that poor tuple got squashed,@12bitfloat goddamnit, couldnt you have come earlier, just added Swift to my cv now i gotta edit it again š,qubits that forget to just wave alittle,So which meal is your favorite to eat on the toilet?
|
||||
|
||||
Think it through real good bro, I went for a roommate once and it was definitely worth the sex,@retoor i did mate in a room yes hahs
|
||||
|
||||
but i originally wanted to write that it wasnt worth it because she was a mental dropout,@jestdotty the ring to rule them all is the circle of fifths. or fives. find a scale which expresses what you want to express, and just go at it yooo,i like to converse with my fellow kettle in the slaughterhouse. Good guys, make me feel understood.
|
||||
|
||||
Jokes aside, theres no middleground for the type of people who believe they can drench societies like kettle.,@antigermanist nah thats way too barbaric. I fancy more the concept of simply breeding out the traits that form the need of humans to create hierarchies
|
||||
@kanyewest because its a scam, every company is a ponzi scheme with extra steps.,If your shit smells as bad as you recounted, you could take your shit in the snow. it'll freeze and therefore stop smelling faster. One-up, you wont even need toilet paper to bring it back inside :^},@antigermanist lol
|
||||
whats the matter with winapi? I love making my life difficult,I popped the panic attack cherry. Shawshank Redemption helped me turn it around
|
||||
|
||||
(Holding your breath, I think it was in that movie).
|
||||
|
||||
Long story short, gulags still exist in Germany. Acting under a legal banner.
|
||||
|
||||
Aside from that, I cant wait to meet my family again. Apart from the support she gives me, my mum makes the absolute best salmon steaks š„¹,Should i be worried is what i wanted to ask,@ScriptCoded what i'd give to never have to hear the sound of someone calling in teams ever sgain,@jestdotty you know, the first person who showed me this scene (hilarious btw, thank you), was my english teacher in 8th grade. She didnt seem like the psychedelic bunch tho,@retoor might want to check the leakage, before you get water damage.,@Nmeri17 And then the HR smile while you hear their adventures of their commute, baaaah,@NoMad **ferry-man taking notes,Question is which day? Can i choose which one?,@retard The current simulation hasnt been offed. The mayans just misunderstood the guys at God inc when they mentioned āEnd of Lifeā,Deffo go for it! I started out with a small server but had to switch to a hosting provider because the CPU didnāt support AVX. Having the machine working relentlessly next to is such a power glitch, makes you feel like commanding a gunship,@retoor oh you reminded me of a presentation i had to create about the Ukraine-conflict. Researching about it gave me this eerie gut feeling that I had to tell everyone i wasnt suicidal,The isolation is fine imo. We dont need a leakage of dense Medium yappers,@retoor well, i was referencing the epstein incident. Its so stupid how everyone talks about how Putinās a cruel psycho dictator, but so few actually seem to ask themselves the why behind it. Why did Putin justify the invasion with the ānaziā-premise? Why did he go so all-in on Ukraine EIGHT years after he spat NATO in the face so bad by breaking multiple agreements with the annexation of crimea? Makes you go down some funny rabbitholes about which tou cant talk with nobody without being categorized as a tinfoil psycho thanks to the ambigious information out there,@jestdotty uuhm, youre kinda proving my point there.
|
||||
|
||||
I tried to be as neutral as i could, and i also came across the cuban missile crisis, which is literally the best proof of history repeating itself imo.
|
||||
|
||||
Also i read about how the West installed a dictator in chile to prevent communism from spreading in south america, which didnt go so well for the chilean population either.
|
||||
|
||||
My parents are from Russia. We do get first hand information of the fucked up shit being told to the russian people.
|
||||
|
||||
However, i am not an advocate of the West either. They did the same fucked up stuff to other countries, just differently.
|
||||
|
||||
But to āfollow throughā on the nazi narrative: Putin made a strawman out of the whole argument by tearing Ukraines nationalist history out of the TEMPORAL CONTEXT.
|
||||
|
||||
You want to look up what happened to the guy who (kinda) invented handsoap?
|
||||
|
||||
He got ridiculed for having the audacity to even think about the slightest possibility that maybe their dirty hands were killing,All the babies.
|
||||
|
||||
And the same applies to Ukraine. Nationalism with the TEMPORAL context was the emergence of identity as a nation.
|
||||
|
||||
And exactly thats why i could not talk to anybody about this, because just the word nationalism, especially in Germany, makes everyone associate it with the Third Reich, which was a much more radical of ethno-nationalism, which led to the holocaust.
|
||||
|
||||
By the way, we get to watch the videos of the burnt up people in 7th grade, where we are about 13/14. NO ONE made any Hitler jokes after this ever.
|
||||
|
||||
The problem with the world right now is that everyone gets so fucking tied up about their beliefs and whatnot that they feel obliged to take everything which even in the slightest might challenge their ideas as a personal attack. No one gives a fuck about the truth anymore, its all this pink haired sheman vs Jordan Peterson, Dementia vs Lizard, USA vs China / Russia / whoever doesnt cherish capital reality show right now.,@retoor nah nothing you said @jestdotty just reacted the same way as everybody else whom i mentioned this useless war in front of, even in the slightest. I had to withdraw the registration because i couldnt find enough credible sources. It was for university,@jestdotty Sorry for my outburst, I am having my own wars to fight. But what i meant with temporal context is the time when Ukraine grew a large nationalist following, which was like 1800-1950 maybe i dint know exactly. And not even the form of nationalist which cleanses its populations ālesserā ethnic parts.
|
||||
|
||||
Not like russia, nor germany. They both killed millions, but broadcasting to the public that Ukraine has to be ādenazifiedā is a spit into your face after getting robbed, kicked and lied to.,@Elendil good thing you didnt commit suicide, Im proud of you for seeing the beauty in life! ;),@Elendil uff 128gb š¤¤
|
||||
|
||||
SHIT WHY AM I Bad with money,How amused would your wife be if you printed her one of those Dragon Dildos?,@Demolishun I wish I was trying.,Did someone notice?,@retoor thanks for reminding me to upgrade python. Whats the state of the freethreading build?,@retoor like it wasnt difficult to finish a side project before, with pydantic youre debugging the most worthless validation error shit. I do like fastapi, but not supporting msgspec as models and the functional shenanigans make me consider consider something else entirely as the feamework,Huh? Theyre only looking for young people? Everywhere I look the positions are senior Java / C# Engineers with 10 years on the belt.,@retoor tea i read something about data types staying in memory forever, if in this context immortalized means the same thing. Distributed systems fucked my head enough, my psyche wont handle going quantum after astronomy,@antigermanist ill try harder next time. Achsually, my first hello world was with 14, with c# even. I sat in front of the blinking cursor not having a clue what to do until i found the name pf the programming language to google. And this is where we entered the dead harambe timeline,@rootshell haha you wish. Fuck frontend man, why cant i just shove these apes the messagepacks right in their skulls.
|
||||
|
||||
Srsly though, touching typescript / anything close to UI feels so frustrating. I worked with angular almost a year, and the same activity rarely had the same output.```
|
||||
@@ -1 +0,0 @@
|
||||
ChinaTown said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
Clark2 said I was taken advantage of during my investment into cryptocurrency as I fell into the wrong hands and $40,000 was stolen from me in bitcoin. I almost gave up as I was told it was not traceable neither is it possible to recover and then I saw an article about a technology guru.. I contacted them and worked with them and to my surprise there were able to recover all I lost.. I was so happy I decided to share this for anyone who might be in need of such service, you can reach them via their email ( coinhackrecovery AT gmail DOT com) .```
|
||||
@@ -1 +0,0 @@
|
||||
CloudZero said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
CopperOre said We are invincible```
|
||||
@@ -1,602 +0,0 @@
|
||||
CoreFusionX said I think it's just psychological manipulation by phone manufacturers.
|
||||
|
||||
The battery gauges in cellphones are manipulated in a way to please our small monkey brains.
|
||||
|
||||
Battery charge and discharge is not linear, and if your gauge weren't manipulated, that last 4% would last 20 times more than the first 4%.
|
||||
|
||||
But since it's manipulated to show in a more linear way, it's likely the phone was on its last legs for real.
|
||||
|
||||
The arbitrary prohibition on the torch? Probably some random crapple-like decision to justify some retarded marketing point about battery life...
|
||||
|
||||
I mean, my lineage OS displays real battery charge and I've had the last 1% last for more than one hour.,@Biggy
|
||||
|
||||
Hungarian notation mainly. Fucking hate it XD,Naisu.
|
||||
|
||||
BMW kicked ass but after shadow of the erdtree I had to purposefully gimp myself by not using magic or transformations because otherwise everything would fucking keel over in a minute.
|
||||
|
||||
Good thing too, so final boss wouldn't cockblock me XD,Dunno if it the same case, but it also happens to me with my wallet or keys sometimes.
|
||||
|
||||
From what I understand of anatomy, it doesn't need to be a pointy object (or at least not a needle-like object).
|
||||
|
||||
It just so happens that while you walk your gait makes it so the object repeatedly strikes the same point on your skin, and therefore the brain interprets it as something poking a needle there.
|
||||
|
||||
It doesn't happen when you change pockets because gait isn't symmetrical.
|
||||
|
||||
Also, the pain sensation even when the phone is on the desk and you are sitting is likely to be psychosomatic, just like phantom limb pain.
|
||||
|
||||
Of course, take this with multiple grains of salt since it's only an (educated) guess from me and my physiotherapist, doctor, and psychiatrist cousins.
|
||||
|
||||
A sample size of a few isn't at all representative.,@bazmd
|
||||
|
||||
Yeah, I think either you or the machine got the royal flush and poker chances/payoff switched up.
|
||||
|
||||
@retoor
|
||||
|
||||
I'm Spain at least slot machines are required by law to both:
|
||||
|
||||
- pay off at least 70% of income in prizes.
|
||||
- have at least one "jackpot" every 20000 plays.
|
||||
|
||||
Of course, the whole "at least" is stupid, because obviously they adjust for the minimum always.,As per the json spec you don't have any limits really, so it all comes down to who is doing the marshalling.
|
||||
|
||||
If using SAX parsers you can have strings as big as your heap allows, since that's what's being kept in memory at a time.
|
||||
|
||||
If using other parsers you must ensure the whole json object fits in memory or it will turn out invalid.,@Demolishun
|
||||
|
||||
Constructors only run before main for global or static objects, and their order of execution is order of statements.
|
||||
|
||||
Did you mean static constructors?,@Demolishun
|
||||
|
||||
Aha, yes, the good ol' static initialization order fiasco.
|
||||
|
||||
Which is, in short, undefined behaviour, so if you are relying on it, you're walking on the edge.
|
||||
|
||||
It's a very big code smell and you should rework it ASAP.
|
||||
|
||||
Also, the way you declare your classes (in CPP struct just means public class) screams C coder left and right XD.,You can, by the way, solve this, by just encasing all these modifications you make of the global into a function each in its own translation unit, then have another function that calls these in whatever order you need. Call it first thing into main() or in a static constructor if you will, and there you go.
|
||||
|
||||
For reference, it's called the construct on first use idiom.,I did and I would never again, at least not with the current state of the industry.,@ars1
|
||||
|
||||
Well, op said to abstain from discussion, so I'll keep it short. Basically, video game industry today means insane, and I mean *insane* crunch, most likely being underpaid for market rate, and living in the edge of the next launch, which is usually ruined by suits that know nothing about making good games.,I don't know if you are a bot by now.
|
||||
|
||||
I mean, what's the point of posting such questions here if not for discussion.
|
||||
|
||||
There's the slight possibility of you being real, and really wanting to tally results easily, but then again, you have like 50 answers total. You could do it by hand. Fuck off.,@cprn
|
||||
|
||||
The best part is, at least for me, working with your teammates, because most of them share your passion for games.
|
||||
|
||||
I did work on something you or someone you know has most likely played. It's not the most famous MMORPG for nothing...
|
||||
|
||||
Can't really tell you about what you mean by "vanilla stack" since all the tools and the engine are in house.
|
||||
|
||||
As for your last point, know that you can most definitely build unity projects from the command line, and even fully customize the build behaviour implementing a BuildPipeline interface in a .cs script.
|
||||
|
||||
Assets are, at least by default, not included in .dll, that'd be insanely retarded. Scripts are, and are separated into different DLLs according to your build def assets.
|
||||
|
||||
And even then, unity is not "plain C#", nor mono, nor dotnet.
|
||||
|
||||
They use IL2CPP nowadays. They transpile C# to C++, and that might be why you have trouble.
|
||||
|
||||
They are making advances toward being able to run on .net core, but don't think it's happening soon.,@darksideofyay
|
||||
|
||||
Awesome.
|
||||
|
||||
On a side note, I will always think spinda is like drunk artist Pikachu.,This one is a toughie.
|
||||
|
||||
The worst, not really programmer, but sysadmin, I've met, would clearly be the sysadmin of a previous company.
|
||||
|
||||
He would systematically refuse to either give us access to the dev VMs or set up cloudwatch so we could have some observability on issues. (Namely because he didn't know how to).
|
||||
|
||||
He'd also keep all ssh keys for every VM in the bastion host of the vpc... Because he didn't know about ssh -J...
|
||||
|
||||
He'd also systematically fail to renew every certificate because he didn't know how to set up certbot. (Claimed that he didn't trust certbot, and that he had his own alarms set for it). Curious that they never worked...,The best, I'd have to say one guy that I completely lost track of, that worked with me on wowd/antrix/ascent before we both went on to actually work for the big B itself.
|
||||
|
||||
He could do fucking magic with networking code, and is still the guy I've learned the most from in that aspect.
|
||||
|
||||
With time, I've found out that I only find such gems more and more rarely, and it's too be expected.
|
||||
|
||||
I watch and learn like a sponge, so it was bound to come the time when I'm the one teaching, and not learning, which by all means I still do, but it's harder to do now unless I get into really specialized fields.,@lorentz
|
||||
|
||||
Msbuild in general has the nightmare of managing many different versions of msvc without having shit like symlinks, update-alternatives, or similar mechanisms.
|
||||
|
||||
The developer terminals for each VS made sure you wouldn't shoot yourself in the foot by automatically setting everything correctly so a call to msbuild would be repeatable and consistent.
|
||||
|
||||
Then again, I'm also baffled at anyone thinking PowerShell is good.
|
||||
|
||||
Like, sure, they have made advances, but as @retoor said, it could have just leaned on bash, but they went their own retarded way.
|
||||
|
||||
I mean, what kind of shell doesn't even allow stdin redirection in 2024?,Well, can't say from other sources, but at least in Spain, there has been this big prog left movement wanting to abandon Twitter and go to bluesky, because they are upset that Elon musk is no longer censoring opinions contrary to theirs.
|
||||
|
||||
Ironically, they, who claim to be antifascists, prove to be the most fascist, since from the moment they got there, the reports for "inappropriate content", (say: whatever they don't like) had multiplied like 100x.,@retoor
|
||||
|
||||
This was in a time certbot was the only option. So not really a choice.
|
||||
|
||||
-J in ssh is shorthand for proxyJump.
|
||||
|
||||
The only point of a bastion host is to bridge resources in a private subnet to a public subnet so they can be accessed.
|
||||
|
||||
But the way to do that, is that people hold the privkey to the bastion *and* to those resources they need to access, and you use ssh -J <bastion> <actual target>, to access, so that you first connect to the bastion, and from there, ssh connects to the resource only reachable from the private subnet.
|
||||
|
||||
If you store all the private keys to all the private resources on the bastion (moreso, on a publicly accessible directory), what's the point of having a bastion at all, you just made it so anyone with access to a single resource has access to them all.,As to socket buffer size, it's really a relic of old times, but can still bite you in the ass.
|
||||
|
||||
The official documentation says (for both BSD and Winsock) that the implementation can withhold recv calls until the recv buffer is full, and withhold sending until enough send calls fill the buffer.
|
||||
|
||||
That's, of course, still true, but it's a relic of a time where CPU cycles were at a premium, and it was in everyone's best interest to just move a whole ram page of socket data into ram or disk.
|
||||
|
||||
Modern solutions in kernels based on kqueue/epoll don't really need to rely on buffer size and if the CPU has the slightest amount of time available on the scheduler, you'll get your recv/send back in no time, no matter how small the payload is.
|
||||
|
||||
By the way, part of our breakthrough work in having antrix support up to hundreds of simultaneous clients without degradation was intimate knowledge of epoll and kqueue.,@retoor
|
||||
|
||||
Hahaha. Can easily answer that.
|
||||
|
||||
Don't really care about upvotes, and don't really care about political correctness.
|
||||
|
||||
That will drive any form of calculated or perceived support down.
|
||||
|
||||
You yourself (don't take this as a jab, please), skew the data by your own admission that you pretty much upvote everything.
|
||||
|
||||
I myself, for example, are much more limited in the updoots, because I hardly place any value in them.,Neither can I.
|
||||
|
||||
Of course, it's hard to find situations like mine where your boss understands it's hard to keep you motivated so they allow you to ask, and they allow you to pursue it.
|
||||
Of course, if I do it in something related to the company business, it's theirs, that's why they pay me, but that's how it goes I guess.,@12bitfloat
|
||||
|
||||
nVidia,@12bitfloat
|
||||
|
||||
DXC is Microsoft's. Spir-v is kind of like the intermediate language the high level languages such as glsl and HLSL are compiled to, but it's usually a jit process, and that's where I go in.,@typosaurus
|
||||
|
||||
I worked in private security for many years, but it's been many years ago too that I stopped.
|
||||
|
||||
I did it basically while in university.,When you try to solve a problem with regex, you tend to end up with two problems.,@retoor
|
||||
|
||||
I'm not scheduled to start work until 2025, so free time until then :),@retoor
|
||||
|
||||
Nah, don't think so, sorry.
|
||||
|
||||
Free time is for beers, playing guitar, or drums, or what have you with the folks, which I haven't done in ages, and travel a bit.,Hahaha, I remember back at my old company I was so fucking tired of having to write unity C# wrappers for C/C++ libraries, that I leveraged the recently (by then) published AST library for clang to have it fucking autogenerate them from the headers.
|
||||
|
||||
Saved days of work.,Unless I'm working on a very big project with multiple people, no one touches my branch ever so things only get pushed as huge blocks and don't expect anyone to dive through the actual branch.
|
||||
|
||||
I hate so much spending more time in git bureaucracy than getting things done.
|
||||
|
||||
In fact, I think it's gonna be one of my biggest pain points working in Nvidia.,Things are always more endearing when you discover them by yourself (or are encouraged to) than when they are terribly force fed to you like you are a goose destined to be foiegras.,I mean, I have never really moved into nor out of AI.
|
||||
|
||||
AI, when not on the bleeding edge, is very basic math. (Sure, this might come from me being a physicist, but still, it's mostly basic statistics).
|
||||
|
||||
You don't need to understand how bleeding edge models work, but having some high level notions for the concepts will go a long way because whenever you have to dig deep you'll find it's not so alien.
|
||||
|
||||
What do I mean by this?
|
||||
|
||||
Know what the problems are.
|
||||
|
||||
Classification? Know what a SVM is, know what a multiclass is, know what KNN is. Not *how* they do it, *what* they do.
|
||||
|
||||
Recommendation? Know what embeddings are, what vectorial databases are, etc.
|
||||
|
||||
LLM? They are basically glorified recommendators.
|
||||
|
||||
Knowing what they do (and what they *don't*) means you now know what solution fits your actual problem, and can get many off the shelf solutions (just like in web dev now).,I find C# tolerable nowadays, specially since .net core.
|
||||
|
||||
WPF wasn't a bad idea IMO, but, in habitual Microsoft fashion, terribly executed. The concept is valid though (it's used now in many frontend frameworks).
|
||||
|
||||
@Papertrail said it perfectly. It's like they went the crapple way of "we know better".
|
||||
|
||||
Yet the foundation wasn't that terrible. I worked with WPF for a couple years and never hit a problem that I couldn't find both a designer side and a programmer side solution for.
|
||||
|
||||
That's the real value of these frameworks. In an ideal world where designers are not braindead figma flingers, and knew how to write (because XML ain't hard, fucking Spanish grammar is way harder), programmers would never fucking have to care about fucking frontend.
|
||||
|
||||
And that'd be utopia.
|
||||
|
||||
I don't care what's being rendered if it doesn't require a fragment shader, I guess.,@Demolishun
|
||||
|
||||
Hahaha, the problem nowadays, like in every "gold rush", is all the tech vampires that smell the blood and want to get rich by just selling a wrapper for existing tech.
|
||||
|
||||
Which, mind you, is something all agencies do, and not inherently wrong, but on a gold rush market, shit offerings thrive.
|
||||
|
||||
They'll die out on their own.
|
||||
|
||||
How? By doing what I said.
|
||||
|
||||
If you can be the guy in your company that knows you just have to fire up opencv and write 100 lines of python, or fire up TF and write 100 lines of python (why do they all love python?), your company will see they don't need to pay a crapload of a subscription for a shitty service (and hopefully give you a well deserved raise based on the money you saved them).,Well, I'm gonna play devil's advocate here and say that if all it took was a really simple solution, the problem wasn't complex to begin with...,@jestdotty
|
||||
|
||||
I'd rather say, blame the suits.
|
||||
|
||||
Normies on the internet can only do the most basic shit they are force fed through their cellphones.
|
||||
|
||||
Of course, having shit like navigation and what have you is a great advancement, but I miss the old days of having your PGP keyring, having your little website, IRC, or mailing list in your own computer, and relying on hearsay rather than fucking SEO. (I fucking hate that).,I would be interested in how many I do while gaming, but I fear a process running with admin privileges and accessing the keyboard APIs would trigger every anticheat from here to China xd,At this point, with edge being chromium too, functionally they are the same, so I no longer know which one is worse in terms of spyware. Google ain't exactly a saint in that aspect either.,In any case, let's see how edge handles the whole V3 manifesto thing.
|
||||
|
||||
They could win over a lot of users just based on that.,Yep, those are definitely wasps.
|
||||
|
||||
Shaving foam won't do a thing. You need either polypropylene foam (the same that is used as insulation), because it expands fast to fill every nook and cranny, hardens, and will block oxygen, making them all suffocate.
|
||||
|
||||
Another alternative is to cover the nest with some recipient (like a microwave lid) with some gasoline in it. The gasoline evaporating will daze them and make them either flee (and since wasps never nest twice in the same spot, you're set), or come out and fall into the gasoline and drown. The con is you'll get some gasoline smell in the house, tho not sure that's a con XD,@retoor
|
||||
|
||||
Well, funny to hear from a dutch, when I was there I clearly remember the hotel explicitly not having a 13th floor XD, and I liked teasing the receptionists because I was in the actual thirteenth (14th) floor XD.
|
||||
|
||||
I can take a look at your ORM off you want (and I find myself bored, which is likely given the upcoming subzero temperatures),@retoor
|
||||
|
||||
Not saying you did wrong, many people would have panicked.
|
||||
|
||||
Just telling you the better methods for dealing with them :).
|
||||
|
||||
I've been a security guard for 11 years in rural settings. I've dealt with wasps more times than I've had to with robbers XD.,@D-4got10-01
|
||||
|
||||
They do indeed.
|
||||
|
||||
As a Japanese speaker, it's because the kanji for "shi/yon" is derived from Chinese characters for death (root for shinu, death in Japanese), so it's very much like triskaidekaphobia.,@D-4got10-01
|
||||
|
||||
You need to learn katakana, yes, but kanji should be part of your learning schedule really. Like, most teaching books have a companion workbook that teaches kanji as you learn words, and it's much easier when you learn the word with the kanji than if you do so after the fact.
|
||||
|
||||
But anyway,
|
||||
|
||||
Nihongo benkyosuru koto de ganbatte kure!,You are the maintainer right?
|
||||
|
||||
So they can complain all they want. If I'm the maintainer of a repo good knows I fucking straight push into master and if anyone wants to complain they can queue to blow me.
|
||||
|
||||
Those aren't devs, they are *bad* project managers posing as devs.,@cafecortado
|
||||
|
||||
Wait what?
|
||||
|
||||
Last time I checked none of the major ISPs in Spain have CG-NAT.
|
||||
|
||||
In any case, in Spain in rolling Orange and I have a regular IPv4 that hasn't changed in 7 years, without me even asking.,@D-4got10-01
|
||||
|
||||
Just gonna say it now.
|
||||
|
||||
Google translate ain't so good at Japanese as people think.
|
||||
|
||||
It only covers textbook Japanese which is really really uncommon when speaking or writing.
|
||||
|
||||
For example, kure is the informal form of kudasai, and you'll never see it in textbooks, but it's quite common in informal speech.,@retoor
|
||||
|
||||
That includes party too, but beer at 9 am seemed early even for me.
|
||||
|
||||
Still, that includes having some food, being able to use my laptop, play the guitar, or whatever.
|
||||
|
||||
The kitchen stove is electrical, the water heater is electrical, the heating is electrical (and we're below zero), so staying home ain't an option.
|
||||
|
||||
It seemed to affect all the blocks of the right bank of the river. On the second one I actually heard a loud bang so I hope it ain't anything serious.,@retoor
|
||||
|
||||
Nah, it's not that I care about judgment. It's just that if I start with beers at 9 am, by now I'd be terribly wasted XD.
|
||||
|
||||
Which wouldn't be a good thing since we lost power right now for the third time!,@bosslogic
|
||||
|
||||
By all means, if you wanna learn the math, do so, but it's usually enough knowing the main properties of activation functions and the tradeoffs of having more or less layers.
|
||||
|
||||
Common ML frameworks will hide the math from you.,Mac os. Beautiful. Content dismissed, next!,Also I don't even know what they are talking about. My start menu doesn't have ads...,@Lensflare
|
||||
|
||||
Well, I don't use cancer 11, still 10, might have something to do.
|
||||
|
||||
When I type for search, I do get bing results, but that's it.,Like in every internet community, there's users and there's lurkers.
|
||||
|
||||
I know that I myself was a lurker for almost two years before engaging at all.
|
||||
|
||||
Platform being abandoned certainly does not help, but also, in some ways, keeps it authentic kinda like the old IRC days.,@kiki
|
||||
|
||||
Well, grayscale would be if you had actual photons of *every* visible wavelength mixed (since that's gray).
|
||||
|
||||
Things under 400 nm (which is the start of ultraviolet spectrum) do have colour, but our retinas don't have receivers for them. Some animals do, though.
|
||||
|
||||
Still, colours are a tricky thing.
|
||||
|
||||
You could ask 100 people to order a colour gradient, and you'd get 100 different results.
|
||||
|
||||
Even grayscale is tricky, because the way we perceive intensity is actually logarithmic, not linear. Screens do actually play math tricks on us to make us perceive it as linear by running linear RGB values to the power of (usually) 2.2. (this is the fabled gamma correction).
|
||||
|
||||
Also, the sun isn't yellow. It's white (and its peak of emissive power is actually green, not yellow, which is why our vision is sharpest on green wavelengths).,With enough voltage everything is a wire.,@qwwerty
|
||||
|
||||
It does have news and stuff like that, but never ads. And even if it did you could still hosts the fuck off their ad servers.,@kiki @Lensflare
|
||||
|
||||
Glass has colour. Everything sufficiently macroscopic has a colour because it radiates photons based on temperature. It just so happens that on normal temperature ranges they emit in infrared (why incorrectly named night goggles work). If you were to heat them up enough, they'd go, go figure, *red hot*.
|
||||
|
||||
I'm willing to accept quarks too but only because of the *name* of quantum chromodynamic. (Doesn't really have anything to do with colour).
|
||||
|
||||
Dark matter, as we understand it today, can't have colour because it doesn't interact with the EM field in any known way.
|
||||
|
||||
(Some*) Black holes are actually the brightest objects in the universe. Sure, we can't see anything past the event horizon, but the accretion disk matter is accelerated to a significant fraction of the speed of light, which makes it glow like there's no tomorrow. Quasars (the brightest objects in the universe) are supermassive black holes really.,The skin of woke people is so thin that I think it behaves like dark matter. Photons just phase through it.
|
||||
|
||||
Also, for an extra brainfuck. You've heard that light from very distant astronomical entities takes millions of years to reach us, and that as you get closer and closer to the speed of light, your subjective time dilates.
|
||||
|
||||
Well, when you are a photon and you travel at the actual speed of light, time doesn't flow at all, so technically, as far as that photon is concerned, it arrived here at the same time it was emitted.,UUIDv4, despite not being guaranteed to be unique, has such a ridiculously big keyspace that for 99.999% of applications you can safely treat a well generated UUID as unique.
|
||||
|
||||
After all, the probability of a collision, and thus someone stealing your session, is waaaaay less likely than you being struck by lightning, or an asteroid wiping us all out, which would render your shitty web session pointless anyway.,Also, last I checked, servers without physical sources of entropy could fall back to algorithms run on a concat of request bodies and timestamps to substitute /dev/u random.
|
||||
|
||||
While that certainly has more of an attack surface, it is still a decent source of entropy.,@retoor
|
||||
|
||||
I know UUID is just a format, hence why I said "safely generated".
|
||||
|
||||
@kiki
|
||||
|
||||
urandom itself does fall back to known PRNG algorithms such as Mersenne when there's not enough entropy, but yeah, so long as entropy ain't a big fat 0, you should be set.,For me, and mind you, my family ain't perfect by any means but it certainly is *big*, we have an unspoken rule that didn't really apply to me but does now, which is, "don't burden the children with the sins of the parents".
|
||||
|
||||
Our parents could hate each other's guts, but would always be there for the nephews/nieces, no matter what.
|
||||
|
||||
That's how I see family. Don't really watch TV so can't speak about portrayals, but still. Family is who you choose it to be. If the biological ones are worthy, do cherish them, otherwise, nah,@D-4got10-01
|
||||
@retoor
|
||||
|
||||
The second image is more upsetting IMO. Not just the fact of having 2 opposable thumbs, but I'd expect AI nowadays to at least know which side thumbs are supposed to go on XD,@D-4got10-01
|
||||
|
||||
A Venus flytrap?,@D-4got10-01
|
||||
|
||||
Hahaha, whenever I see AI fingers I can't help but think of facehuggers from Alien. XD,They will do perfectly for my paella.
|
||||
|
||||
(Yes, they are food),For communication I'd consider an amqp broker such as rabbitmq before redis.,@BordedDev
|
||||
|
||||
You can actually do that combining amqp with redis. Have a fan-out exchange with one permanent queue.
|
||||
|
||||
This permanent queue is consumed by a service or lambda that stores the message in redis with your desired expire time.
|
||||
|
||||
Whenever a new instance of your reader is spun up, you do the following:
|
||||
|
||||
- Create a new, non permanent queue in your exchange for the reader to consume using the rabbit API.
|
||||
|
||||
- Scan your redis for the last X time messages.
|
||||
|
||||
- new messages will arrive to your reader when published until you stop consuming.
|
||||
|
||||
There's probably a way to do it directly in rabbit, but I don't know it.,If you want your readers to split the workload, instead of fan-out exchange, set a round robin or similar exchange that also copies to another exchange which has your redis-saving queue, so any message you publish to the main exchange gets copied to the redis exchange and queue, and thus saved, and will go to one of your connected queues, which will split the work.,You can maybe also use Kafka, which can do what you want, but that depends on your other requirements.,@sandeepbalan
|
||||
|
||||
Annoyed cuz I have to do bureaucracy for taxes and such.
|
||||
|
||||
I will listen and dance to 80/90's eurobeat, but if you ever say it in public, I'll deny it and make a necklace with your teeth.,@retoor
|
||||
|
||||
Well, I mean, I know what was to be expected.
|
||||
|
||||
It's prospectively exciting, but so far still lost mostly in bureaucracy.
|
||||
|
||||
If you have any specific questions, (and I'm allowed to answer them), I will gladly do.,So far, as expected, lots of onboarding, learning about processes and other bullshit.
|
||||
|
||||
Really boring to be honest.
|
||||
|
||||
But they let me roam in the repos, which I do in my own time, and that has been really enlightening.,It adds the overhead of actually forcing using https rather than http, but that's negligible compared to actual physical network latency.,@superdupernova
|
||||
|
||||
I hate crapple with a passion so I wouldn't know what kind of retarded bullshit they'd implement in their stack.
|
||||
|
||||
I know of that option from having to DevOps retarded crapple builds, and as far as I know, having that option disabled (the default) just forces every HTTP request to use TLS (https) with some additional verifications that they sell as "lol aDDeD sEcuRitY" when it's pretty much standard issue, so not really any difference than to what you should be doing anyway.,Dunno. I've only had sick leave for a total of 70 days over the course of 21 years.
|
||||
|
||||
10 of those were after the appendicectomy, 50 when I broke my toe (and I wanted to work, but they wouldn't let me).
|
||||
|
||||
Out of the other 10, 4 were kidney stones and 1 food poisoning.
|
||||
|
||||
So just 5 days of "sickness", so I guess I ignore them alright.,Weird happened when I actually ran
|
||||
|
||||
ls -la /mnt/old
|
||||
|
||||
For some reason, this command showed the actual contents of the drive...
|
||||
|
||||
I'm still confused as to why ls with a relative path shows as empty and with an absolute path it works fine...,Airplanes are designed with redundant systems.
|
||||
|
||||
Mind you, a 4 engine plane can't really *fly* with just one engine, but it's designed to glide to a safe landing spot.
|
||||
|
||||
And of course commercial planes can do barrel rolls. It's not hard, just fully turn the steering wheel. (Which on an airplane doesn't steer, it actually banks).
|
||||
|
||||
The centripetal force would keep passengers glued to their seat anyway.,And no, commercial aircraft couldn't do vertical takeoff no matter what.,@BordedDev
|
||||
|
||||
AFAIK you can only use the web shell if you have the systems manager agent running on the instance, which wasn't the case.
|
||||
|
||||
@netikras
|
||||
|
||||
Didn't really push it much further since it worked with absolute so I just replaced the key and handed it over, since that's what was billable.
|
||||
|
||||
I have a snapshot of the volume however and will try your suggestions today on another VM.,@kiki
|
||||
|
||||
That's not quite what I'd call vertical takeoff. It hardly is vertical when you traverse the runway for 1 km before just taking off and pitching vertical.
|
||||
|
||||
Vertical takeoff is what harrier fighters do, which is like an helicopter.,Hahaha, 7 a week.
|
||||
|
||||
I have IBS and can easily do 7 a day on a bad day...,@BordedDev
|
||||
|
||||
Fuck Hungarian notation with a flaming tire iron.
|
||||
|
||||
@kiki
|
||||
|
||||
What kind of programming language allows kebab case anyway?,@retoor
|
||||
|
||||
Solana is a cryptocurrency.
|
||||
|
||||
And while rust has comparable performance to C, no matter how much they like to parrot it, runtime safety guarantees (which are available in most C runtimes too!) *do* have a runtime overhead. If only by virtue of running additional code.,@retoor
|
||||
|
||||
Well, not really into receiving anal sex, so wouldn't know.,@netikras
|
||||
|
||||
Well, it was pointless to try your suggestions, because when I replicated the steps, of course it worked as expected so now we'll never know, I guess -.-,Back at uni we actually made explosives in the chemistry labs, at least until we had an unfortunate accident XD.
|
||||
|
||||
It's like when I was 8 and was first learning C. I wanted my teacher to show me how to make a virus.
|
||||
|
||||
Of course he refused, but then, one year later, when I insisted, all he did was laugh, then tell me "what would you want your virus to do?", followed by "and don't you know how to do that already? Just piece it all together!".
|
||||
|
||||
He was awesome, that guy, wonder what he's up to now.,@retoor
|
||||
|
||||
Funny thing, I also started with vb6.
|
||||
|
||||
Mine would just overwrite the magic bytes on most file formats to random garbage.
|
||||
|
||||
Not really destroying info, but causing much mayhem.
|
||||
|
||||
I've always considered myself grey hat so.,Incidentally, making Microsoft convention of tying extensions to actual file formats somewhat valuable XD,@MammaNeedHummus @retoor
|
||||
|
||||
Now I'm curious as to what effect would a Viagra have on a woman.
|
||||
|
||||
And to not make this uncalled, I'll share my own experience with Viagra when I was 18 y/o.
|
||||
|
||||
I took one on a dare (I won 50 euro, yay).
|
||||
|
||||
Fuck that. It was fucking painful.
|
||||
|
||||
Physically painful, because you can't hide it, and if you try, it hurts,
|
||||
|
||||
And then on actual results, because, it works, really well, and believe me, holding a boner for 5+ hours is terrible. I swear everything in my groin was hurting by then.,@fruitfcker
|
||||
|
||||
Do you have hummus tho?,@TrayKnots
|
||||
|
||||
A C cast done that way just truncates the float.
|
||||
|
||||
As @donkulator said, you need to cast and dereference a pointer in order to reinterpret the bits.,@Lensflare Kree!,@Lensflare Tek'ma'te, tau'ri, pa'kree?,First joke/meme I've found fun in quite a while.
|
||||
|
||||
My kudos, good sir.,Well, I don't really see any performance issues to be honest.
|
||||
|
||||
Been having a blast, so if you don't like it, just don't buy it. I'm really happy with using my money for this wonderful game.,@TeachMeCode
|
||||
|
||||
Having the seikret auto navigate the map for you is a godsend because the areas are so massive.
|
||||
|
||||
They took everything great from world and rise and brought it to the next level.
|
||||
|
||||
Still some bullshit like decoration lotto, but that's only required if you really want to min max.
|
||||
|
||||
If you are ok with a hunt taking longer than 3 minutes (and you should) it doesn't matter anyway.
|
||||
|
||||
They also added AI hunters to help you if you are in a bind, which combined with my (at least self perceived) impression that they are much more generous with stamina Regen now, makes it an absolute jewel of a game for all levels of players.,@TeachMeCode
|
||||
|
||||
I mean, can not really be objective here because I pretty much know each monster by heart.
|
||||
|
||||
There are 4 main classes of wyverns (every large monster is a wyvern), brute, flying, leviathan and regular, I guess.
|
||||
|
||||
Within each class, mechanics are similar, but there's always variance.
|
||||
|
||||
Each monster's moveset is unique, even if there are similarities, and then, late game monsters usually include other unique gimmicks (gore magala Frenzy, alatreon escaton judgment, etc) that keep it fresh.
|
||||
|
||||
When you have the amount of hours I have, yes, you will find it easy, because you have the muscle memory for all of them. (Capcom is very religious in keeping it consistent between games), but I'm talking 1500+ hours between world, iceborne, rise and sunbreak.
|
||||
|
||||
It's good bang for your buck.,@TeachMeCode
|
||||
|
||||
I have to say, I stand corrected. They fixed deco lotto. You can now craft whatever deco you need directly.
|
||||
|
||||
All the better.
|
||||
|
||||
If I had to say a similar game, I think it'd be Witcher 3, as in, having lots of unique monsters, but MH leans more on the loot treadmill, as in, the gameplay loop is simpler.
|
||||
|
||||
"Hunt big baddie x, get parts from x to craft weapon y to hunt bigger baddie z".
|
||||
|
||||
But dunno, they manage to make it feel natural.
|
||||
|
||||
The biggest choice you have to make, and it can make or break your experience, is your weapon choice.
|
||||
|
||||
There are 14 weapons, and they are akin to rpg classes, and they completely define the way you play.
|
||||
|
||||
The training area gives a very good idea of how they play, but if you'd like pointers, feel free to ask.,And even then, while I stand by it being worth the price, you can always pirate it to try.
|
||||
|
||||
No MH game has shipped with any kind of anticheat, DRM, or similar bullshit.
|
||||
|
||||
Sure, you won't be able to play online, but while it adds to the game, it ain't required.,@TeachMeCode
|
||||
|
||||
I think the most important thing is they make it feel like every hunt is like a boss battle.
|
||||
|
||||
Take dark souls, keep labyrinthine maps (but with actual map and auto follow), keep the whole rpg depth, and have the whole game be boss battles, 10 min each at least.
|
||||
|
||||
But there are no stakes.
|
||||
|
||||
You can find monsters on the world and fight them to practice nonstop.
|
||||
|
||||
And if you fail a quest you can simply retry it as many times as you want.
|
||||
|
||||
Older MH games were quite a bit more "realistic" (in the bad way, like having to shoot paint balls at monsters to track them in the map, not having any clue to the monsters whereabouts when starting a quest, etc)
|
||||
|
||||
World did away with all that, and wilds has only improved upon it.,Also, the way they make the world feel natural.
|
||||
|
||||
You can use dozens of terrain features, from quicksand pits, to oil jets, to dropped boulders, to vine traps to aid your hunts.
|
||||
|
||||
You can lure monsters into each other and have them kill themselves.
|
||||
|
||||
You can use plants and animals in the field to poison/paralyze/whatever monsters (and you!).
|
||||
|
||||
And monsters have (even if now your palico straight says it explicitly) obvious tells to when they get exhausted, when they are near death, when they are enraged, etc.
|
||||
|
||||
They have done a superb job with the visual and auditive language of the game, which is one of the series' fortes IMO,@TeachMeCode
|
||||
|
||||
I do, but I play on PC.
|
||||
|
||||
Haven't had any issues so far beyond a couple graphical glitches but that's because my CPU is fried.,@TeachMeCode
|
||||
|
||||
You have one of each weapon class straight in your box.
|
||||
|
||||
If you'd rather have mobility, I'd have you try:
|
||||
|
||||
Insect glaive: best mobility, but gotta manage your kinsect.
|
||||
|
||||
Dual blades: great mobility, requires stamina management, you look like you are on crack.
|
||||
|
||||
Hammer: requires charge management (to not lose it between dodges), decent mobility. Also UNGA bunga brotherhood.
|
||||
|
||||
Light bowgun / bow if you want ranged. Bowgun requires ammo management, bow requires stamina management.
|
||||
|
||||
Finally, sword and shield is decently mobile, doesn't lock into lengthy animation and can [perfect] guard with the right skills.,Also just for the record:
|
||||
|
||||
Longsword is for weeaboos (requires spirit gauge management), but I find it clunky.
|
||||
|
||||
Lance is turtle mode, poke poke poke but you are indestructible.
|
||||
|
||||
Gunlance is lance but getting to explode shit into monster's mouths in exchange for some defence.
|
||||
|
||||
Hunting horn is hammer but for supports.
|
||||
|
||||
Heavy bowgun is like being a fixed machine gun in a war.
|
||||
|
||||
Charge blade is sword and shield on steroids, but it's the most complex weapon.
|
||||
|
||||
Switchaxe is a mix of short sword to charge up mojo, then unleash with the giant axe mode.,@TeachMeCode
|
||||
|
||||
Dual blades is basically insta sheath/unsheathe, so no worries there.
|
||||
|
||||
You activate demon mode, which drains your stamina and empowers your attacks, and you build the demon gauge.
|
||||
|
||||
You can then spend your demon gauge to consume some crack and go brrrrrrrrr.
|
||||
|
||||
Also, due to how elemental damage works in MH (which favors many small hits over few larger hits) dual blades are commonly referred as "elemental weapons", meaning you usually keep a pair of each element and change based on the weakness of your target (but it's definitely not required).,@TeachMeCode
|
||||
|
||||
I'd say it's probably that you aren't playing charge blade right. It's the most complex weapon in the game.
|
||||
|
||||
I have 3k+ hours and don't know how to play it.
|
||||
|
||||
You gotta charge your sword, then charge your shield, then charge your phials without letting them explode and if you do all that right, yes, you get to do a super flashy ultra nuke. For me, not worth it.
|
||||
|
||||
If you like having a shield, try sword and shield. If you like the whole weapon morphing thing, try switch axe. No shield but same mechanism of fast sword charging to switch into giant axe, but much simpler.
|
||||
|
||||
Panic rolling will get you nowhere since it'll blow your stamina and you'll lose a ton of uptime.
|
||||
|
||||
The game is *very* forgiving with iframes, and actually telegraphs you the most dangerous moves (your health bar "wave" will "spike" in red), so just focus on reading monster moves, and rolling through them with just one roll, ideally staying within range.,Also, you can launch a sos flare, and AI companions/real players will join you. That may help you if only because the mister won't be fixated on you all the time.
|
||||
|
||||
Or if you prefer, you can add me to friends list, and then you can ping me and I can help you.
|
||||
|
||||
HunterID is 6N4GQ7FQ. If you have steam you can also join games or request me to join, steam id is corefusionx,In any case I'd say apple is the cult.
|
||||
|
||||
They use every tactic, honest or not, to keep you in their walled "garden", and instill fear about the outside world.
|
||||
|
||||
It's a bit like Plato's cavern myth.
|
||||
|
||||
Once you get brave enough and step out of the cavern you realize how wonderful the world can be.,@retoor
|
||||
|
||||
I'm sure your post violates a couple PEP entries. Let's run a linter on it XD.,@CaptainRant
|
||||
|
||||
Well from what I gather, it means music playing out loud outta speakers is banned, which, like @Lensflare said, should be a must.
|
||||
|
||||
In your headphones? I'm gonna play whatever the fuck I want, management be damned.,And here you go going psycho again...,@AvatarOfKaine
|
||||
|
||||
Yeah, when you think everyone around you are the psychos, chances are you are the psycho.
|
||||
|
||||
And mind you, I'd step off the threats, you're completely inoffensive to me, which doesn't preclude the fact that if you ever were to become a threat, I'd still unalive you on the spot :)
|
||||
|
||||
But you do you, I guess...,@TeachMeCode
|
||||
|
||||
Hahaha. Welcome to the brotherhood.
|
||||
|
||||
From now on, you may only reply to other fellow hunters with "BONK", "unga" or "bunga".
|
||||
|
||||
Happy unga, go bonk!,@TeachMeCode
|
||||
|
||||
Different monsters have different aggression levels, which determine how much punishment they will take before fleeing, or how fast they will lose interest on you and deaggro if you aren't hitting them.
|
||||
|
||||
Navigation is a non issue in wilds. Just hit R3 so you lock on the monster (not camera lock, like, target lock, it will show as a monster icon with a reticle next to the Minimap. Then simply call your seikret and hit up on the dpad.
|
||||
|
||||
The seikret will automatically chase the monster without any further input.
|
||||
|
||||
You can actually game the inventory limit by simply fast traveling to any camp, where you can restock from your box, or carrying trap tools and thunder bugs, allowing you to craft extra traps on the go.
|
||||
|
||||
Octopi monsters can be a pain since they move so fluid. Personally, I like to use spinning bludgeon against them. It will hit 3-4 tentacles at once, causing wounds which you can then exploit with focus strikes to keep them stun locked.,Also, a key piece of tech for unga bungaing is learning to charge dash.
|
||||
|
||||
It travels less distance than a roll but has more iframes, and, most importantly, preserves your charge, allowing for bigger, more frequent bonks.
|
||||
|
||||
Finally, if you find yourself having trouble with a monster, no shame in simply firing a sos flare.
|
||||
|
||||
If you don't want to have other players, use the flare while offline and you'll get AI controlled support hunters.,@TeachMeCode
|
||||
|
||||
You don't have to wait out those kinds of attacks, especially if running tight on time. Equip a flash pod and blind the motherfucker.
|
||||
|
||||
It will stagger them out of any attack, and if flying, make them crash back into the ground.```
|
||||
@@ -1 +0,0 @@
|
||||
CowboyBill said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
CryptoManiac said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
CtrlVenus said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
CyberTank said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
DOGEmask said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
DanielSturver said We are invincible```
|
||||
@@ -1 +0,0 @@
|
||||
DannY12 said Hi I'm from Arizona, and i am a victim of a terrible fake crypto investment platform. I was deceived to believe i will receive ROIs on my investments which led me to invest about 423000 pounds worth of btc and ETH meant for my company into the fake investment platform. You have to be careful of the fake platforms so many fake platforms out there to steal funds from hardworking individuals. I was only able to recover my initial investment that was sent out to an external wallet that belong to the scammers. With the help of (cybertycoon247 at gmail com), we worked together as he gave me first hand information and i also provided details of the fake investment platform. He was able to retrieve the crypto wallet of the fake investment platforms and also track all funds. I am so glad i took the steps of working with Cybertycoon247 they offer the best services and i did not pay until the funds came back to my wallet,Hi I'm from Arizona, and i am a victim of a terrible fake crypto investment platform. I was deceived to believe i will receive ROIs on my investments which led me to invest about 423000 pounds worth of btc and ETH meant for my company into the fake investment platform. You have to be careful of the fake platforms so many fake platforms out there to steal funds from hardworking individuals. I was only able to recover my initial investment that was sent out to an external wallet that belong to the scammers. With the help of (cybertycoon247 at gmail com), we worked together as he gave me first hand information and i also provided details of the fake investment platform. He was able to retrieve the crypto wallet of the fake investment platforms and also track all funds. I am so glad i took the steps of working with Cybertycoon247 they offer the best services and i did not pay until the funds came back to my wallet```
|
||||
@@ -1 +0,0 @@
|
||||
Davidson2021 said @retoor I'm going for a full stark developer,@devRancid you just š„ my feeling ?,@Chewbanacas thank you```
|
||||
@@ -1 +0,0 @@
|
||||
DeadAir said We are invincible```
|
||||