<center> **WARNING: This is a technical programming article and is quite capable of boring you to tears and/or sending you into a coma. You have been warned.** </center> At work, I am writing quite a chunky Windows Forms application. It's starting to get out of hand, and my inadequacies with GitHub and version control are hardly helping. Due to privacy and security concerns, I can't share much of it, besides the necessary revealing of a couple of the remote devices I communicate with which contain generic names. <center>  ...***'everyone uses that same bloody Visual Studio Code picture. As I use this editor myself I thought I'd create my own, but with fingerprints and dust included'...*** </center> I am currently working in the medical arena and these devices are prefixed 'VD' for venereal disease. It fits perfectly as my application will ultimately aid people who shag around a lot and get the clap often. These computers are riddled with the likes of Syphilis, Gonorrhea, Chlamydia (aka 'The Clap'), and many other lovely diseases designed to irritate your groin areas and cause you to scratch fervently all day.  What I wanted was the perfect Windows Explorer icon; the remote version with that green pipe. After some digging, I discovered this icon to be in the file βC:\Windows\System32\imageres.dllβ I found it easily the first time around. This time I was getting eyestrain, many icons look the same and all I can say is this resource file is big.  Finding it is the first challenge, but you then need to extract it and guess at the correct size. These range from 16x16 pixels to 320x320 on occasion. You might think it may be best to grab the largest size and then scale it down and yes, I tried this. The result was an icon that didnβt quite have the correct shading. I was being a pedantic bastard and wanting to find a cure for Syphilis faster, it needed to look good. My balls were starting to itch thinking about it all. I settled on 48x48 after sizing up the icon with what I could see in Windows Explorer. It looked about right and that was the first step. Next was the font. I tried ChatGpt and asked it what font Microsoft uses for their Windows Explorer icon textual description. It told me they do not disclose those facts but it's probably Segoe UI, 9pt. Very fucking useful. <center>  ...***'if you have not guessed already, my iteration is the top one. Close but not perfect'...*** </center> That's the default VB.Net font and it looked similar, so far so good. My font looks a little more spaced and a little less bold. Adding Bold made it over the top, that's not the answer. I figured it was a grey background versus a white background that caused theirs to stand out more.  The font on the statistics looked the same, but the colour was greyer. Guessing their colours is trial and error. I tried a few and settled on simple 'GrayText' Next was that thing that looks like a progress bar. Why not use the default Progress Bar Control? It seemed to do the job well and besides some stupid spacing limitations on the top edge, it looks almost the same.  The colour of it was the next problem. No amount of googling was telling me what it was. I settled on Dodger Blue, though I am not convinced. Mine looks a little brighter than the real thing. frm_main.prg_drivespace.ForeColor = Color.DodgerBlue If you're going to display the icon then you need some code to do the donkey work. As the Remote Registry Service is disabled at work, I had to rely on what was enabled, namely PS Remoting. If you don't know what this is, then it gives you the ability to run Powershell scripts as if they were running on a remote device. Powerful stuff and something I have not had the privilege to use until now. Powershell is shit for forms as it's a shell scripting language, so I designed the User Interface in VB.Net Forms, intending to shell out to Powershell for all the dirty work. Function GetDriveSpace(ScriptLocation As String, Script As String, Device As String) As Boolean ' Calls the Powershell script, 'GetDriveSpace.ps1' Dim ScriptPath As String = ScriptLocation & "\" & Script Dim StartInfo As New ProcessStartInfo() StartInfo.FileName = "powershell.exe" StartInfo.Arguments = $"-ExecutionPolicy Bypass -File ""{ScriptPath}"" " & $"{Device}""" StartInfo.UseShellExecute = False StartInfo.RedirectStandardOutput = True StartInfo.CreateNoWindow = True Dim MyProcess As Process = Process.Start(StartInfo) Dim OutData As String = MyProcess.StandardOutput.ReadToEnd() MyProcess.WaitForExit() If MyProcess.ExitCode = 0 Then Dim Separator() As Char = {vbCr, vbLf} DataLines = OutData.Split(Separator, StringSplitOptions.RemoveEmptyEntries) Return True Else Return False End If End Function Creating a ProcessStartInfo object, I noticed one very useful property, namely the RedirectStandardOutput Boolean which when set to True redirects output using the .StandardOutput.ReadToEnd() method. So anything sent to the screen goes into an String variable which I can process to eradicate any shitty spaces and bullshit characters ending up with just a couple of strings, namely $FreeSpaceGB and $DriveSizeGB. In Powershell, if you just enter variables in your script then they are sent to the console. I read this is common practice and after using some other frankly other crappy method, I was delighted at discovering this. param([string]$RemoteComputer) $DriveLetter = "C:" $Session = New-PSSession -ComputerName $RemoteComputer $DriveInfo = Invoke-Command -Session $session -ScriptBlock { Get-WmiObject -Class Win32_LogicalDisk -Filter "DeviceID='$using:DriveLetter'" } Remove-PSSession -Session $Session $DriveSizeGB = [math]::Round($DriveInfo.Size / 1GB, 2) $FreeSpaceGB = [math]::Round($DriveInfo.FreeSpace / 1GB, 2) $FreeSpaceGB $DriveSizeGB The GetDriveSpace.ps1 script accepts a parameter of the remote computer, gets the space data, writes it to a custom class, and sends it back to the main VB.Net form where I can intercept it and stick those values next to that icon I have painstakingly been trying to ripoff! I noted the wording on the explorer icon. The GB free is always to two decimal points. This is taken care of in the Powerscript here: Sub ShowSpaceStatistics() ' Makes the Drivespace, Drivename labels and Drivespace Progress bar, visible. ' Calculates the Percentage of drive space left, and changes the colour to red if lower than 10% free space ' Displays the Drive logo and data to the user frm_main.pic_remotedrive.Visible = True frm_main.pic_remotedrive.Image = My.Resources.remotedrive_48x_48x frm_main.lbl_drivename.Visible = True frm_main.lbl_drivespace.Visible = True frm_main.prg_drivespace.Visible = True frm_main.prg_drivespace.Maximum = DataLines(1) frm_main.lbl_drivename.Text = "c$ (\\" & RemoteDevice & ") (IPC$)" frm_main.lbl_drivespace.Text = DataLines(0) & " GB free of " & DataLines(1) & " GB" Dim Percentage As Double = (DataLines(0) / DataLines(1)) * 100 If Percentage < 10 Then frm_main.prg_drivespace.ForeColor = Color.Red Else frm_main.prg_drivespace.ForeColor = Color.DodgerBlue End If Dim Spaceleft As Double = Math.Round(DataLines(1) - DataLines(0), 2) frm_main.prg_drivespace.Value = Spaceleft frm_main.prg_drivespace.Maximum = DataLines(1) End Sub Then there's the colour of the progress bar that needs to turn RED when the drive is low on space. Googling this again, I found it to be under 10% free and it's no longer BLUE. Not an issue and is addressed here. If Percentage < 10 Then frm_main.prg_drivespace.ForeColor = Color.Red Else frm_main.prg_drivespace.ForeColor = Color.DodgerBlue End If Finally, I needed the HDD space-free value, which is simply a calculation of the total space β the used space, again to two decimal points. Dim Spaceleft As Double = Math.Round(DataLines(1) - DataLines(0), 2) Something as simple as recreating the HDD icon with true statistics takes some effort, and though hardly difficult for me, it needed to some tenacity to track down everything I needed. Oh, and if you believed me about all that Venereal Disease bullshit, then what can I say? My application **CURRENTLY** only helps people with Trichomoniasis, and I'm adding 'The Clap' support next week.  <center>  </center>
author | slobberchops |
---|---|
permlink | app-development-log-re-creating-the-windows-explorer-icon |
category | hive-163521 |
json_metadata | {"app":"peakd/2023.7.1","format":"markdown","tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"users":[],"image":["https://files.peakd.com/file/peakd-hive/slobberchops/Eo8RNrXd4aYFP7JY1YRSpVT9pYssoLCL2KbChq5FMTh78MV2sFuu72wBFHth7ZYzCFZ.JPG","https://files.peakd.com/file/peakd-hive/slobberchops/23xLKdsRmDf1Zq3GZc3LpGGFU8CE696fTevdgJRDGudnPjWA2dGAoG1WPPsFGjgnSPfvm.PNG","https://files.peakd.com/file/peakd-hive/slobberchops/48JeaeXkBbT112SFuV67NZci11FpctusYPppY3LUyzBj4m1R7H3oCS1qrqwAgh3qcN.PNG","https://files.peakd.com/file/peakd-hive/slobberchops/23wCZS44GuhWfudyAcmdUKJxpQtVJzN4Kec2FmGRotRRmN9b5dLbK7C3ixrGWzfK8Xc5q.png","https://files.peakd.com/file/peakd-hive/slobberchops/23t88s8bAmzEoirUmgDcjp1MeHHoHnKVbv3HCTVk4MMauX5FotXe6JK8QMr2oryzKGdeg.PNG","https://files.peakd.com/file/peakd-hive/slobberchops/23t88nhbtWB3MGh7pmgmckcY91dZKsw3ouMu9pUttJMBN6q42D2qtwH1vRwqtppvo3NkZ.PNG","https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png","https://files.peakd.com/file/peakd-hive/slobberchops/f5zec6UG-CurieCurator.jpg"]} |
created | 2023-08-24 20:13:24 |
last_update | 2023-08-25 05:44:15 |
depth | 0 |
children | 61 |
last_payout | 2023-08-31 20:13:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 43.002 HBD |
curator_payout_value | 42.886 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 9,748 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,560,215 |
net_rshares | 219,338,788,727,785 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemychicken1 | 0 | 2,993,615,616,314 | 100% | ||
leprechaun | 0 | 968,163,064 | 19.5% | ||
gtg | 0 | 1,924,725,386,313 | 5% | ||
gerber | 0 | 96,324,223,854 | 27% | ||
ericvancewalton | 0 | 511,874,925,458 | 100% | ||
daan | 0 | 53,620,721,776 | 8% | ||
ezzy | 0 | 4,189,840,900 | 27% | ||
gikitiki | 0 | 75,835,208,587 | 100% | ||
dwinblood | 0 | 3,586,545,045 | 40% | ||
meesterboom | 0 | 2,753,519,560,857 | 100% | ||
exyle | 0 | 236,165,951,613 | 27% | ||
raymonjohnstone | 0 | 9,262,455,102 | 100% | ||
stea90 | 0 | 2,092,566,023 | 4% | ||
joshglen | 0 | 2,679,072,136 | 17.5% | ||
ace108 | 0 | 575,518,483,502 | 12% | ||
sazbird | 0 | 14,132,668,516 | 100% | ||
alexpmorris | 0 | 367,071,492,222 | 100% | ||
shaka | 0 | 2,901,023,635,775 | 100% | ||
kryptik | 0 | 16,453,908,117 | 100% | ||
kdtkaren | 0 | 691,320,682 | 20% | ||
jphamer1 | 0 | 8,619,859,816,413 | 100% | ||
joele | 0 | 35,679,805,711 | 100% | ||
moisesmcardona | 0 | 30,434,292,884 | 17.5% | ||
lemouth | 0 | 575,753,396,766 | 20% | ||
wisbeech | 0 | 11,343,950,209 | 100% | ||
steevc | 0 | 801,254,770,767 | 35% | ||
netaterra | 0 | 249,068,263,101 | 15% | ||
someguy123 | 0 | 87,303,908,215 | 27% | ||
daveks | 0 | 2,615,951,350,223 | 35% | ||
penguinpablo | 0 | 205,304,135,296 | 14% | ||
uwelang | 0 | 13,105,274,322 | 30% | ||
richardcrill | 0 | 27,868,990,390 | 50% | ||
kommienezuspadt | 0 | 4,218,952,577,580 | 100% | ||
jacobtothe | 0 | 769,883,491,473 | 75% | ||
abh12345 | 0 | 1,158,662,596,127 | 30% | ||
gringalicious | 0 | 583,538,633 | 50% | ||
clayboyn | 0 | 15,695,341,467 | 12.5% | ||
lloyddavis | 0 | 23,989,930,632 | 75% | ||
techslut | 0 | 15,724,897,600 | 2.5% | ||
slider2990 | 0 | 6,432,200,761 | 100% | ||
stav | 0 | 97,760,121,879 | 80% | ||
funnel | 0 | 6,495,195,387 | 11% | ||
edb | 0 | 41,745,951,486 | 40% | ||
justinw | 0 | 7,803,355,990 | 1.65% | ||
delso | 0 | 49,785,721,478 | 100% | ||
darth-azrael | 0 | 93,709,679,925 | 33% | ||
voter | 0 | 3,243,010,099 | 100% | ||
automaton | 0 | 644,121,293 | 100% | ||
michellectv | 0 | 242,815,197,126 | 100% | ||
schamangerbert | 0 | 1,228,858,304,455 | 100% | ||
honusurf | 0 | 482,927,064 | 20% | ||
darth-cryptic | 0 | 16,851,918,956 | 33% | ||
tarazkp | 0 | 6,910,261,477,603 | 100% | ||
thereikiforest | 0 | 535,655,859 | 10% | ||
evildeathcore | 0 | 11,360,517,444 | 100% | ||
travelnepal | 0 | 1,991,679,520 | 50% | ||
cosmictriage | 0 | 43,240,741,649 | 80% | ||
fronttowardenemy | 0 | 129,537,228,017 | 50% | ||
trafalgar | 0 | 27,354,272,000,377 | 57% | ||
itinerantph | 0 | 743,552,284 | 28.5% | ||
lordneroo | 0 | 10,533,617,987 | 100% | ||
preparedwombat | 0 | 500,929,469,469 | 42% | ||
freebornsociety | 0 | 5,067,654,039 | 10% | ||
bcc | 0 | 1,972,125,765,374 | 50% | ||
detlev | 0 | 1,506,299,697,225 | 100% | ||
raindrop | 0 | 423,704,294,083 | 57% | ||
frankk | 0 | 606,465,516 | 50% | ||
choogirl | 0 | 34,716,129,818 | 40% | ||
stimialiti | 0 | -25,614,923,493 | -100% | ||
smasssh | 0 | 910,302,281,909 | 20% | ||
tamaralovelace | 0 | 78,452,914,366 | 100% | ||
holm | 0 | 528,548,331 | 65% | ||
domo | 0 | 488,500,173 | 100% | ||
forykw | 0 | 79,318,770,752 | 13.5% | ||
xplosive | 0 | 30,756,772,009 | 100% | ||
mobbs | 0 | 444,611,932,023 | 100% | ||
aleister | 0 | 26,120,745,598 | 9% | ||
drag33 | 0 | 44,636,796,169 | 100% | ||
ampm | 0 | 9,279,832,539 | 100% | ||
sumatranate | 0 | 583,609,351,935 | 100% | ||
nuagnorab | 0 | 13,625,562,215 | 100% | ||
isaria | 0 | 341,393,364,567 | 25% | ||
cryptoknight12 | 0 | 1,773,647,576 | 7.31% | ||
deadgrlsuppastar | 0 | -22,021,110,302 | -67% | ||
bitcoinflood | 0 | 1,289,551,491,103 | 73.2% | ||
anacristinasilva | 0 | 22,430,404,810 | 50% | ||
alphacore | 0 | 2,750,328,457 | 2.91% | ||
galenkp | 0 | 5,653,183,416,326 | 100% | ||
chinito | 0 | 9,461,633,124 | 60% | ||
krischy | 0 | 603,632,241 | 100% | ||
jaynie | 0 | 157,262,567,627 | 25% | ||
spectrumecons | 0 | 2,580,181,681,347 | 40% | ||
jayna | 0 | 40,642,026,888 | 6% | ||
vieanna | 0 | 242,131,771,834 | 100% | ||
joeyarnoldvn | 0 | 4,364,211,568 | 12.27% | ||
papilloncharity | 0 | 1,999,261,657,527 | 92.1% | ||
livinguktaiwan | 0 | 1,466,154,878,868 | 50% | ||
furious-one | 0 | 5,604,403,265 | 100% | ||
geekgirl | 0 | 2,731,701,674,297 | 100% | ||
toofasteddie | 0 | 209,627,873,907 | 35% | ||
bluemist | 0 | 23,343,907,199 | 10% | ||
tattoodjay | 0 | 725,949,605,707 | 27% | ||
lenasveganliving | 0 | 1,464,625,132 | 5% | ||
ashokcan143 | 0 | 10,453,005,649 | 100% | ||
theguruasia | 0 | 7,270,404,153 | 100% | ||
travelgirl | 0 | 178,722,740,719 | 100% | ||
shitsignals | 0 | 4,726,079,476 | 27% | ||
appreciator | 0 | 38,653,857,528,586 | 10% | ||
stayoutoftherz | 0 | 7,871,541,855,655 | 75% | ||
yanes94 | 0 | 26,755,178,686 | 50% | ||
sanjeevm | 0 | 410,790,820,726 | 10% | ||
dine77 | 0 | 9,916,913,265 | 40% | ||
everrich | 0 | 2,040,958,757 | 100% | ||
leaky20 | 0 | 323,101,214,216 | 75% | ||
isabelpena | 0 | 3,477,045,695 | 100% | ||
enfocate | 0 | 3,370,431,976 | 21% | ||
pocketrocket | 0 | 20,721,053,853 | 100% | ||
kharrazi | 0 | 801,062,252 | 20% | ||
nicolemoker | 0 | 2,106,586,221 | 100% | ||
buggedout | 0 | 3,975,196,118,259 | 100% | ||
lizelle | 0 | 126,973,458,757 | 50% | ||
jeanlucsr | 0 | 1,575,660,750 | 2.7% | ||
shanibeer | 0 | 864,706,468,512 | 50% | ||
nuthman | 0 | 3,558,127,637,530 | 100% | ||
spiceboyz | 0 | 2,739,312,949 | 40% | ||
nainaztengra | 0 | 873,631,513,856 | 75% | ||
noboxes | 0 | 1,286,433,732 | 50% | ||
ragnarokdel | 0 | 12,154,504,715 | 50% | ||
felander | 0 | 128,698,536,231 | 27% | ||
santigs | 0 | 342,953,498,084 | 50% | ||
sportsgeek | 0 | 1,866,425,822 | 50% | ||
musicgeek | 0 | 793,397,291 | 50% | ||
marketinggeek | 0 | 3,055,348,633 | 100% | ||
zirochka | 0 | 521,692,379,693 | 80% | ||
stoodkev | 0 | 15,239,951,566,418 | 100% | ||
kimzwarch | 0 | 17,054,971,885 | 4% | ||
mayvil | 0 | 8,351,339,670 | 22.75% | ||
artonmysleeve | 0 | 3,177,292,942 | 17.5% | ||
raj808 | 0 | 10,310,765,339 | 100% | ||
fersher | 0 | -1,198,387,804 | -100% | ||
cconn | 0 | 977,027,484 | 10% | ||
calatorulmiop | 0 | 13,837,276,067 | 10% | ||
deathwing | 0 | 847,349,855,101 | 27% | ||
revisesociology | 0 | 2,328,708,117,441 | 100% | ||
silversaver888 | 0 | 186,930,199,437 | 35% | ||
plantstoplanks | 0 | 66,907,040,587 | 14% | ||
rakkasan84 | 0 | 25,439,565,603 | 100% | ||
jlsplatts | 0 | 123,103,041,943 | 11.25% | ||
steemseph | 0 | 15,365,545,736 | 10% | ||
m-san | 0 | 5,035,205,373 | 100% | ||
vegoutt-travel | 0 | 39,235,273,276 | 40% | ||
japanguide | 0 | 1,052,250,177 | 100% | ||
liverpool-fan | 0 | 3,965,347,928 | 20% | ||
marleyn | 0 | 2,820,130,300 | 10% | ||
simgirl | 0 | 6,984,506,310 | 20% | ||
coolguy123 | 0 | 92,952,956,201 | 50% | ||
karinxxl | 0 | 31,626,794,219 | 25% | ||
mrhill | 0 | 26,433,654,883 | 70% | ||
gianluccio | 0 | 70,892,826,932 | 36% | ||
sunsea | 0 | 8,061,830,151 | 5% | ||
ciuoto | 0 | 10,418,343,414 | 20% | ||
emrebeyler | 0 | 712,266,284,640 | 24.3% | ||
xabi | 0 | 2,968,089,417 | 20% | ||
docmarenkristina | 0 | 783,656,526 | 50% | ||
popurri | 0 | 506,705,517 | 20% | ||
armentor | 0 | 172,495,756,473 | 100% | ||
citizensmith | 0 | 17,596,811,693 | 100% | ||
traf | 0 | 2,298,256,272,992 | 57% | ||
ubikalo | 0 | 756,757,509 | 17.5% | ||
b00m | 0 | 18,531,082,211 | 100% | ||
elderson | 0 | 7,588,844,498 | 16% | ||
prometehum | 0 | 1,027,302,137 | 100% | ||
nathen007 | 0 | 88,373,424,255 | 100% | ||
yousafharoonkhan | 0 | 55,055,251,922 | 20% | ||
marcolino76 | 0 | 4,662,646,907 | 20% | ||
sneakyninja | 0 | 2,447,762,052 | 3.65% | ||
howiemac | 0 | 23,612,977,685 | 100% | ||
wiseagent | 0 | 15,152,130,326 | 20% | ||
cryptonized | 0 | 5,505,188,593 | 14% | ||
mineopoly | 0 | 48,027,488,433 | 50% | ||
phortun | 0 | 990,218,601,714 | 100% | ||
abitcoinskeptic | 0 | 4,380,176,372 | 15% | ||
daltono | 0 | 513,079,780,762 | 32% | ||
for91days | 0 | 93,834,887,444 | 100% | ||
juecoree | 0 | 3,168,195,495 | 35% | ||
gabrielatravels | 0 | 76,219,629,669 | 100% | ||
awuahbenjamin | 0 | 11,220,887,183 | 100% | ||
dudeontheweb | 0 | 4,448,970,734 | 4.4% | ||
hijosdelhombre | 0 | 26,790,720,381 | 25% | ||
alequandro | 0 | 10,132,409,435 | 20% | ||
roadstories | 0 | 10,488,063,628 | 20% | ||
trifenix | 0 | 1,204,020,800 | 35% | ||
steem4all | 0 | 16,876,855,187 | 35% | ||
tryskele | 0 | 1,605,016,461 | 6% | ||
sinochip | 0 | 483,291,025 | 100% | ||
criptomaster | 0 | 3,407,044,557 | 100% | ||
leslierevales | 0 | 5,960,998,660 | 46.05% | ||
mermaidvampire | 0 | 2,114,967,300 | 100% | ||
soyrosa | 0 | 172,181,899,335 | 50% | ||
chorock | 0 | 281,369,462,416 | 30% | ||
dynamicrypto | 0 | 4,651,214,774 | 1% | ||
ikrahch | 0 | 180,302,593,851 | 53% | ||
philnewton | 0 | 1,171,825,418 | 15% | ||
artjohn | 0 | 725,401,826 | 50% | ||
newageinv | 0 | 110,080,890,728 | 12.5% | ||
essejparr | 0 | 100,551,957,355 | 100% | ||
shaidon | 0 | 13,335,655,840 | 11% | ||
jazzhero | 0 | 5,699,729,100 | 7.5% | ||
steemflagrewards | 0 | 359,235,426,284 | 100% | ||
adetorrent | 0 | 247,521,077,361 | 100% | ||
unconditionalove | 0 | 3,599,450,384 | 13.5% | ||
mastergerund | 0 | 2,295,951,329 | 7.31% | ||
bigtom13 | 0 | 321,277,439,198 | 50% | ||
piumadoro | 0 | 15,959,469,965 | 40% | ||
moeenali | 0 | 13,859,380,636 | 1% | ||
verhp11 | 0 | 17,525,722,056 | 100% | ||
saltycat | 0 | 5,544,751,071 | 100% | ||
rubelynmacion | 0 | 40,853,888,762 | 100% | ||
kirito-freud | 0 | 5,455,820,926 | 50% | ||
onlavu | 0 | 117,787,577,922 | 100% | ||
bozz | 0 | 1,027,466,485,671 | 80% | ||
bertrayo | 0 | 7,603,773,168 | 5% | ||
movement19 | 0 | 3,666,097,973 | 13.25% | ||
lisfabian | 0 | 16,679,805,219 | 100% | ||
jasonwaterfalls | 0 | 751,926,103 | 100% | ||
irvet | 0 | 2,152,850,987 | 30% | ||
cryptictruth | 0 | 2,464,722,980 | 0.5% | ||
runningproject | 0 | 41,796,706,003 | 70% | ||
curacion | 0 | 722,847,698 | 35% | ||
leomarylm | 0 | 6,863,975,897 | 10% | ||
honeymoon-1611 | 0 | 698,613,694 | 20% | ||
mad-runner | 0 | 53,592,516,965 | 28% | ||
blockchainyouth | 0 | 76,047,081,940 | 100% | ||
oadissin | 0 | 15,459,708,869 | 5.5% | ||
sbarandelli | 0 | 1,506,369,347 | 40% | ||
erikah | 0 | 444,611,506,483 | 20% | ||
jguzman394 | 0 | 810,459,111 | 21% | ||
amico | 0 | 1,417,465,047 | 23.1% | ||
steemitcolombia | 0 | 4,616,775,658 | 100% | ||
bil.prag | 0 | 185,984,192,269 | 20% | ||
bestboom | 0 | 3,782,992,016 | 27% | ||
deltasteem | 0 | 7,815,363,637 | 100% | ||
ravenmus1c | 0 | 10,660,746,730 | 0.5% | ||
vittoriozuccala | 0 | 16,182,153,366 | 20% | ||
adamada | 0 | 36,390,644,066 | 10% | ||
ronaldoavelino | 0 | 1,369,289,763 | 20% | ||
louis88 | 0 | 503,377,285,960 | 20% | ||
sbi2 | 0 | 762,109,705,958 | 24.78% | ||
ablaze | 0 | 325,398,384,306 | 100% | ||
radard | 0 | 164,748,630,281 | 100% | ||
realornah | 0 | 0 | 100% | ||
braaiboy | 0 | 19,159,045,501 | 5% | ||
dinaudic | 0 | 764,758,358 | 17.5% | ||
elvys | 0 | 804,091,341 | 17.5% | ||
gadrian | 0 | 197,582,461,415 | 30% | ||
inciter | 0 | 6,780,202,180 | 10% | ||
artmom | 0 | 193,466,434,302 | 100% | ||
spaghettiscience | 0 | 46,365,360,745 | 40% | ||
thegoldencobra | 0 | 713,244,661 | 100% | ||
kgakakillerg | 0 | 43,609,877,466 | 25% | ||
steemexperience | 0 | 74,092,578,476 | 50% | ||
cedricguillas | 0 | 240,856,415,821 | 100% | ||
saboin | 0 | 69,212,540,314 | 11% | ||
el-dee-are-es | 0 | 5,840,503,296 | 10% | ||
savagebits | 0 | 9,930,115,146 | 100% | ||
phage93 | 0 | 4,002,423,361 | 40% | ||
beco132 | 0 | 28,944,155,057 | 100% | ||
solominer | 0 | 4,818,779,034,162 | 53% | ||
robmolecule | 0 | 218,506,428,711 | 100% | ||
serialfiller | 0 | 729,064,262 | 50% | ||
leomolina | 0 | 2,155,789,841 | 9% | ||
eii | 0 | 81,825,581,445 | 100% | ||
diabonua | 0 | 191,628,844,893 | 100% | ||
valentin86 | 0 | 110,091,355,676 | 100% | ||
edanya | 0 | 1,022,225,514 | 17.5% | ||
pladozero | 0 | 33,340,560,462 | 10% | ||
nateaguila | 0 | 229,479,575,235 | 8% | ||
davidesimoncini | 0 | 328,989,767 | 100% | ||
enforcer48 | 0 | 241,410,554,371 | 20% | ||
crypticat | 0 | 172,858,273,647 | 50% | ||
alfrednoyed | 0 | 10,299,701,980 | 100% | ||
spamfarmer | 0 | 1,566,819,627 | 20% | ||
pinas | 0 | 607,846,154 | 50% | ||
cooltivar | 0 | 39,168,865,873 | 32% | ||
cryptoandcoffee | 0 | 704,840,540,701 | 25% | ||
dolivero | 0 | 749,763,640 | 17.5% | ||
ronbong | 0 | 1,269,835,976 | 100% | ||
corinadiaz | 0 | 867,921,743 | 17.5% | ||
petterjosph | 0 | 2,089,947,393 | 100% | ||
juliocesar7 | 0 | 489,645,884 | 17.5% | ||
sgbonus | 0 | 41,365,281,786 | 15% | ||
gabrielrr17 | 0 | 886,793,388 | 5.5% | ||
topbooster | 0 | 807,933,171 | 50% | ||
ihal0001 | 0 | 504,023,706 | 17.5% | ||
soma909 | 0 | 717,795,997 | 100% | ||
digital.mine | 0 | 54,507,927,472 | 60% | ||
elmundodexao | 0 | 1,132,439,992 | 10% | ||
marenontherun | 0 | 8,559,096,463 | 35% | ||
marblely | 0 | 10,591,461,361 | 10% | ||
daysiselena | 0 | 2,092,872,722 | 10% | ||
aulia1993 | 0 | 626,648,730 | 11% | ||
blewitt | 0 | 29,227,965,274 | 40% | ||
nattybongo | 0 | 39,968,875,545 | 20% | ||
abcor | 0 | 5,852,034,744 | 100% | ||
carl05 | 0 | 1,369,342,937 | 5.5% | ||
sarix | 0 | 1,994,087,114 | 17.5% | ||
thedailysneak | 0 | 3,327,727,871 | 3.65% | ||
zaibkang | 0 | 14,170,862,794 | 100% | ||
maraven | 0 | 1,353,912,565 | 17.5% | ||
armandosodano | 0 | 124,783,200,467 | 28% | ||
numa26 | 0 | 2,499,784,991 | 17.5% | ||
pardinus | 0 | 25,318,257,084 | 10% | ||
sadbear | 0 | 3,100,549,183 | 17.5% | ||
bestofph | 0 | 1,207,282,924 | 10% | ||
teamvn | 0 | 12,033,395,600 | 9.83% | ||
crypt-skip | 0 | 746,665,504,473 | 100% | ||
luciannagy | 0 | 3,322,174,725 | 30% | ||
smartvote | 0 | 82,901,431,694 | 3.1% | ||
realnigga | 0 | 0 | 100% | ||
cheersmate | 0 | 0 | 100% | ||
takingthew | 0 | 0 | 100% | ||
youtakethatl | 0 | 0 | 100% | ||
bigassdick | 0 | 0 | 100% | ||
themanny | 0 | 75,757,620,872 | 100% | ||
dlike | 0 | 78,275,988,848 | 27% | ||
randomgoodstuff | 0 | 5,215,053,823 | 50% | ||
quitplayin | 0 | 0 | 100% | ||
coccodema | 0 | 2,098,923,370 | 20% | ||
gersonvasquez | 0 | 667,579,164 | 17.5% | ||
bagpuss | 0 | 10,323,884,760 | 100% | ||
pedrocanella | 0 | 586,585,816 | 11% | ||
foodfightfriday | 0 | 12,302,939,040 | 12.5% | ||
bobby.madagascar | 0 | 1,565,233,320 | 13.5% | ||
babysavage | 0 | 1,174,496,933 | 7.31% | ||
ravensavage | 0 | 668,158,464 | 7.31% | ||
pet.society | 0 | 14,480,115,426 | 6% | ||
aleestra | 0 | 2,766,538,747 | 17.5% | ||
comunidadgenial | 0 | 598,449,210 | 17.5% | ||
admiralbot | 0 | 6,654,634,113 | 100% | ||
javier.dejuan | 0 | 793,581,730 | 100% | ||
blanchy | 0 | 157,804,560,202 | 100% | ||
naty16 | 0 | 688,180,787 | 1.75% | ||
kuku-splatts | 0 | 13,623,863,230 | 25% | ||
lion200 | 0 | 14,380,536,642 | 50% | ||
thevil | 0 | 1,017,014,434,017 | 100% | ||
thisnewgirl | 0 | 5,708,015,864 | 100% | ||
mayvileros | 0 | 106,275,621,722 | 35% | ||
gungunkrishu | 0 | 865,655,272,135 | 100% | ||
priyanarc | 0 | 114,158,711,927 | 80% | ||
sanjeev021 | 0 | 12,536,638,972 | 5.5% | ||
esthersanchez | 0 | 2,875,930,006 | 40% | ||
marianaemilia | 0 | 98,454,733,012 | 11% | ||
jonela | 0 | 807,420,337 | 50% | ||
eliasseth | 0 | 1,966,689,646 | 17.5% | ||
middleearth | 0 | 1,499,811,498 | 40% | ||
miha-sweet | 0 | 488,087,500 | 100% | ||
adinapoli | 0 | 10,095,034,722 | 20% | ||
multifacetas | 0 | 8,605,435,510 | 17.5% | ||
discovery-it | 0 | 749,254,330,404 | 40% | ||
misterengagement | 0 | 2,211,501,011 | 30% | ||
francescomai | 0 | 119,552,108,786 | 100% | ||
chipdip | 0 | 8,256,024,990 | 100% | ||
retrodroid | 0 | 10,580,867,515 | 33% | ||
irionet | 0 | 1,655,541,979 | 100% | ||
tigerrkg | 0 | 49,005,836,318 | 100% | ||
coffeebuds | 0 | 16,524,170,119 | 50% | ||
gettinmoney | 0 | 0 | 100% | ||
daniel2001 | 0 | 1,170,513,455 | 10.5% | ||
milyy | 0 | 808,661,148 | 17.5% | ||
marcocosta | 0 | 9,654,416,229 | 17.5% | ||
brucutu1 | 0 | 4,393,275,067 | 100% | ||
lestrange | 0 | 6,720,357,890 | 90% | ||
thegames | 0 | 760,311,102 | 50% | ||
bolachasmonster | 0 | 537,161,919 | 5.5% | ||
steemegg | 0 | 7,013,366,715 | 17.5% | ||
gomster | 0 | 488,674,807 | 5.5% | ||
determine | 0 | 1,610,470,285 | 27% | ||
permaculturedude | 0 | 878,397,513 | 27% | ||
pocoto | 0 | 4,552,622,023 | 100% | ||
aikiado | 0 | 4,048,453,773 | 100% | ||
jhellenmjgr | 0 | 652,204,555 | 100% | ||
lallo | 0 | 22,570,359,426 | 40% | ||
josehany | 0 | 146,958,926,221 | 100% | ||
caribehub | 0 | 1,363,007,511 | 100% | ||
cyrillo | 0 | 4,437,953,720 | 100% | ||
baasdebeer | 0 | 779,938,324 | 5% | ||
tottylive | 0 | 670,486,808 | 17.5% | ||
smallboost | 0 | 1,195,617,146 | 100% | ||
goodcontentbot | 0 | 807,409,971 | 15% | ||
skymin | 0 | 2,301,902,143 | 100% | ||
catalellazp | 0 | 529,524,329 | 17.5% | ||
creacioneslelys | 0 | 39,922,769,730 | 100% | ||
cooperfelix | 0 | 514,591,144 | 28% | ||
hungrybear | 0 | 592,784,257 | 14% | ||
haikusailor | 0 | 531,498,939 | 27% | ||
afternoondrinks | 0 | 830,715,096 | 5% | ||
juliocesardraw | 0 | 2,378,656,420 | 17.5% | ||
mary-jane | 0 | 505,316,484 | 100% | ||
hungryharish | 0 | 1,613,735,755 | 6.75% | ||
jonaira | 0 | 1,867,721,752 | 17.5% | ||
historiasamorlez | 0 | 2,848,060,348 | 7% | ||
wolffeys | 0 | 11,901,374,147 | 100% | ||
samuel.steem | 0 | 15,702,025,448 | 36% | ||
src3 | 0 | 30,403,722,251 | 25% | ||
lionsaturbix | 0 | 1,095,979,770 | 10.5% | ||
arnaldoropeza | 0 | 2,192,130,522 | 17.5% | ||
david.steem | 0 | 1,410,404,506 | 36% | ||
ilanisnapshots | 0 | 501,165,782 | 5% | ||
anderson69 | 0 | 8,492,050,523 | 17.5% | ||
alenox | 0 | 686,302,578 | 5% | ||
rocketpower | 0 | 486,206,857 | 20% | ||
photographercr | 0 | 27,580,219,576 | 11.4% | ||
issymarie | 0 | 10,687,818,372 | 17.5% | ||
titti | 0 | 14,891,567,782 | 40% | ||
memehub | 0 | 94,678,256,799 | 100% | ||
bigmoneyman | 0 | 903,758,017 | 50% | ||
stregamorgana | 0 | 1,456,968,761 | 40% | ||
meeplecomposer | 0 | 3,329,734,311 | 24% | ||
coolsurfer | 0 | 20,879,972,422 | 100% | ||
iamsaray | 0 | 7,456,717,269 | 17.5% | ||
endersong | 0 | 2,682,807,528 | 35% | ||
libertycrypto27 | 0 | 567,757,192,481 | 100% | ||
davixesk8 | 0 | 2,133,290,456 | 17.5% | ||
anjanida | 0 | 2,933,261,505 | 100% | ||
beerlover | 0 | 142,334,603,521 | 100% | ||
bastter | 0 | 1,159,282,708 | 11% | ||
agmoore2 | 0 | 11,005,427,304 | 100% | ||
tinyhousecryptos | 0 | 479,938,597 | 5% | ||
digitalmack | 0 | 521,066,027 | 17.5% | ||
victartex | 0 | 460,588,953 | 5% | ||
aninsidejob | 0 | 6,956,037,753 | 100% | ||
leighscotford | 0 | 53,224,983,353 | 66% | ||
maruskina | 0 | 38,366,521,097 | 20% | ||
victoriaxl | 0 | 1,436,295,800 | 20% | ||
omodei | 0 | 1,193,590,504 | 40% | ||
pingit | 0 | 0 | 100% | ||
vaped | 0 | 781,835,326 | 20% | ||
steemindian | 0 | 539,370,206 | 13.5% | ||
teamashen | 0 | 2,910,563,641 | 4% | ||
astil.codex | 0 | 31,017,703 | 100% | ||
jakiro12 | 0 | 1,293,153,841 | 100% | ||
mariolbi | 0 | 1,582,177,639 | 17.5% | ||
lookplz | 0 | 7,630,110,933 | 100% | ||
kgswallet | 0 | 1,068,639,903 | 20% | ||
triplea.bot | 0 | 5,655,943,465 | 27% | ||
steem.leo | 0 | 29,844,125,578 | 27% | ||
reggaesteem | 0 | 4,981,711,271 | 55.25% | ||
abh12345.pal | 0 | 762,959,664 | 100% | ||
farm1 | 0 | 709,567,782,309 | 100% | ||
amico.sports | 0 | 17,483,949,100 | 35% | ||
ilias.fragment | 0 | 30,062,653 | 100% | ||
stemgeeks | 0 | 1,696,820,693 | 50% | ||
babytarazkp | 0 | 7,173,292,439 | 85% | ||
martthesquire | 0 | 1,641,401,875 | 100% | ||
sixsixsix | 0 | 0 | 100% | ||
iod | 0 | 0 | 100% | ||
onehundredmen | 0 | 0 | 100% | ||
capitanonema | 0 | 1,318,090,056 | 40% | ||
wrestlingdesires | 0 | 129,570,470,430 | 100% | ||
damaskinus | 0 | 846,534,186 | 20% | ||
abh12345.stem | 0 | 1,362,875,213 | 100% | ||
abh12345.ccoin | 0 | 1,966,052,808 | 100% | ||
jesus68 | 0 | 1,559,536,289 | 17.5% | ||
soyunasantacruz | 0 | 4,162,952,828 | 5% | ||
nestorarman2 | 0 | 502,581,237 | 17.5% | ||
sbi-tokens | 0 | 6,689,163,355 | 7.31% | ||
liaminit1 | 0 | 24,325,867,961 | 90% | ||
brutoken | 0 | 2,153,967,186 | 100% | ||
leo.syndication | 0 | 487,094,946 | 27% | ||
one.life | 0 | 499,744,651 | 26.94% | ||
whangster79 | 0 | 1,437,206,524,893 | 53% | ||
idig | 0 | 2,520,089,679 | 6.25% | ||
lynds | 0 | 278,178,981,896 | 51% | ||
nullandvoid | 0 | 496,761,032 | 100% | ||
urun | 0 | 10,815,286,905 | 100% | ||
lividseagulls | 0 | 545,990,553 | 18.89% | ||
cageon360 | 0 | 7,878,486,600 | 100% | ||
roadstories.trib | 0 | 485,906,061 | 50% | ||
pal.alfa | 0 | 4,257,473,296 | 100% | ||
stem.alfa | 0 | 3,834,196,267 | 100% | ||
emeka4 | 0 | 674,683,932 | 5% | ||
urtrailer | 0 | 208,196,638,204 | 25% | ||
dpoll.witness | 0 | 3,384,973,186 | 24.3% | ||
gigel2 | 0 | 1,051,426,218,687 | 100% | ||
curatorcat.ccc | 0 | 17,345,874,770 | 100% | ||
therealyme | 0 | 1,544,155,306 | 2.25% | ||
discovery-blog | 0 | 5,675,884,467 | 40% | ||
thegambit | 0 | 3,309,723,649 | 100% | ||
yggdrasil.laguna | 0 | 0 | 25% | ||
tobago | 0 | 1,138,376,905 | 65% | ||
unschool | 0 | 106,579,113,430 | 100% | ||
healthrecipes | 0 | 1,235,797,005 | 17.5% | ||
splatts | 0 | 62,718,876,816 | 12.5% | ||
galenkp.aus | 0 | 1,211,381,760 | 100% | ||
invest2learn | 0 | 681,974,758 | 27% | ||
stoodmonsters | 0 | 33,724,660,002 | 100% | ||
hjmarseille | 0 | 1,521,237,552 | 36% | ||
abachon | 0 | 16,973,852,917 | 100% | ||
bpcvoter3 | 0 | 858,130,445 | 50% | ||
oblivioncubed | 0 | 460,668,135,883 | 100% | ||
ribary | 0 | 9,905,868,736 | 13.5% | ||
terminado | 0 | 12,338,504,059 | 25% | ||
sharkthelion | 0 | 3,097,477,671 | 25% | ||
chapmain | 0 | 0 | 100% | ||
lacking | 0 | 632,558,817,336 | 100% | ||
gloriaolar | 0 | 31,846,676,468 | 30% | ||
kgsupport | 0 | 574,934,942 | 12.5% | ||
marblesz | 0 | 680,417,844 | 10% | ||
jennyzer | 0 | 8,524,276,209 | 40% | ||
bilpcoinbpc | 0 | 800,117,737 | 5% | ||
garlet-68 | 0 | 1,979,514,707 | 50% | ||
librepensadora | 0 | 2,292,275,554 | 8.75% | ||
disagio.gang | 0 | 694,335,479 | 40% | ||
mice-k | 0 | 2,377,522,777 | 27% | ||
julesquirin | 0 | 3,567,888,750 | 11.4% | ||
grindle | 0 | 336,198,804,199 | 100% | ||
nerdvana | 0 | 697,392,036 | 5% | ||
romytokic | 0 | 1,624,211,453 | 20% | ||
catanknight | 0 | 218,114,892 | 100% | ||
orestistrips | 0 | 95,244,372,703 | 100% | ||
dpend.active | 0 | 2,056,906,200 | 5.4% | ||
hivewatchers | 0 | 1,096,343,939 | 55% | ||
politicalhive | 0 | 3,045,093,992 | 100% | ||
reggaejahm | 0 | 220,748,314,559 | 65% | ||
penned-bullshit | 0 | 481,000,385 | 50% | ||
softworld | 0 | 281,305,814,917 | 49% | ||
travelflower | 0 | 905,301,083 | 40% | ||
captainhive | 0 | 971,061,874,351 | 40% | ||
velinov86 | 0 | 52,162,883,026 | 50% | ||
peterpanpan | 0 | 28,093,080,381 | 40% | ||
schubertlover | 0 | 964,045,377 | 17.5% | ||
mcsagel | 0 | 1,041,475,425 | 50% | ||
genice | 0 | 2,915,067,589 | 17.5% | ||
hiveshout | 0 | 482,746,491 | 100% | ||
dcityrewards | 0 | 670,320,991,878 | 27% | ||
holoferncro | 0 | 2,220,429,389 | 5% | ||
matteus57 | 0 | 3,458,649,477 | 40% | ||
sketching | 0 | 1,558,828,379 | 13.5% | ||
ninnu | 0 | 14,788,850,868 | 50% | ||
kattyart | 0 | 13,005,378,671 | 17.5% | ||
cybercity | 0 | 75,672,999,047 | 50% | ||
jtkl12 | 0 | 1,242,226,433 | 17.5% | ||
discoveringarni | 0 | 49,681,335,090 | 15% | ||
tonyhernandez41 | 0 | 3,347,106,446 | 35% | ||
catinthewindow | 0 | 898,301,302 | 12.5% | ||
devpress | 0 | 36,683,011,384 | 100% | ||
noelyss | 0 | 3,217,637,963 | 5% | ||
forkyishere | 0 | 2,127,348,321 | 13.5% | ||
moneyheist-sl | 0 | 5,432,555 | 100% | ||
magin.pintor | 0 | 579,246,452 | 35% | ||
lucianav | 0 | 2,023,671,922 | 5% | ||
javilinares | 0 | 876,343,462 | 17.5% | ||
marifr | 0 | 1,967,576,004 | 17.5% | ||
patronpass | 0 | 642,057,911 | 10% | ||
dannewton | 0 | 217,284,796,170 | 50% | ||
jelly13 | 0 | 7,520,377,394 | 85% | ||
plusvault | 0 | 534,158,265 | 25% | ||
gabilan55 | 0 | 648,722,909 | 5% | ||
olaunlimited | 0 | 21,550,113,875 | 25.65% | ||
w-splatts | 0 | 14,068,039,157 | 25% | ||
jilt | 0 | 8,086,825,038 | 20% | ||
earthsea | 0 | 16,037,311,987 | 50% | ||
recoveryinc | 0 | 17,405,091,428 | 26.5% | ||
brofund-pal | 0 | 2,743,867,231 | 100% | ||
liz.writes | 0 | 832,497,355 | 39.75% | ||
bindalove | 0 | 869,062,752 | 40% | ||
dying | 0 | 1,997,724,080 | 53% | ||
adedayoolumide | 0 | 14,528,321,853 | 100% | ||
hive-world | 0 | 671,375,876 | 5.5% | ||
noalys | 0 | 1,753,788,733 | 5% | ||
iamfarhad | 0 | 792,063,550 | 50% | ||
hive-168869 | 0 | 44,663,368,084 | 100% | ||
mau189gg | 0 | 1,161,742,351 | 35% | ||
dorkpower | 0 | 3,659,689,660 | 100% | ||
yohadice | 0 | 658,093,385 | 17.5% | ||
lowlightart | 0 | 5,403,836,693 | 40% | ||
kattycrochet | 0 | 7,070,732,581 | 5% | ||
alex-rourke | 0 | 489,780,017,444 | 25% | ||
maxjulisgf | 0 | 781,036,163 | 17.5% | ||
dalz.shorts | 0 | 1,376,000,105 | 50% | ||
maxipiano78 | 0 | 1,211,713,846 | 8.75% | ||
hivechat | 0 | 1,428,311,213 | 13.5% | ||
sillybilly | 0 | 574,374,487 | 100% | ||
meestemboom | 0 | 1,603,556,340 | 100% | ||
rosalestrust | 0 | 6,234,888,781 | 100% | ||
dcrops | 0 | 172,919,345,673 | 13.5% | ||
cielitorojo | 0 | 2,975,320,665 | 7% | ||
krishu.stem | 0 | 696,406,084 | 100% | ||
hykss.leo | 0 | 53,629,975,482 | 5.4% | ||
carlosro | 0 | 4,342,791,084 | 11% | ||
brucolac | 0 | 844,347,564 | 6.6% | ||
samrisso | 0 | 18,822,283,332 | 26.5% | ||
ctpx | 0 | 967,580,630 | 20% | ||
germanandradeg | 0 | 1,670,922,040 | 17.5% | ||
sofs-su | 0 | 91,003,842,820 | 82.2% | ||
ktest1 | 0 | 0 | 100% | ||
endrius | 0 | 2,833,834,565 | 75% | ||
repayme4568 | 0 | 468,253,889 | 20% | ||
xrayman | 0 | 71,671,830,410 | 100% | ||
coinomite | 0 | 3,479,610,404,863 | 100% | ||
abh12345.archon | 0 | 635,025,609 | 100% | ||
ausbit.dev | 0 | 5,549,181,797 | 27% | ||
adamada.stem | 0 | 5,854,531,126 | 100% | ||
firinmahlazer | 0 | 486,689,007 | 100% | ||
retaliatorr | 0 | 2,603,980,905 | 100% | ||
giemo | 0 | 1,120,836,568 | 11% | ||
elgatoshawua | 0 | 1,254,645,856 | 5% | ||
wynella | 0 | 2,015,110,196 | 5% | ||
selfhelp4trolls | 0 | 334,606,425,275 | 45% | ||
tomtothetom | 0 | 8,229,030,811 | 53% | ||
biglove | 0 | 1,071,830,569 | 25% | ||
mapetoke | 0 | 74,981,052,741 | 100% | ||
proofofbrainio | 0 | 40,246,638,065 | 50% | ||
wend1go | 0 | 32,061,454,607 | 100% | ||
melcaya | 0 | 96,597,191,914 | 100% | ||
drricksanchez | 0 | 38,443,963,119 | 7.5% | ||
happyfrog420-new | 0 | 57,736,380,979 | 100% | ||
hexagono6 | 0 | 865,076,302 | 5% | ||
trouvaille | 0 | 1,298,786,812 | 5% | ||
wendyburger | 0 | 54,805,738,673 | 53% | ||
joseluis91 | 0 | 6,169,544,804 | 40% | ||
randolpheel1 | 0 | 1,708,525,178 | 17.5% | ||
juecoree.stem | 0 | 645,753,437 | 100% | ||
counterterrorism | 0 | 937,834,633 | 17.5% | ||
dendendenden | 0 | 6,663,131,848 | 100% | ||
power-kappe | 0 | 720,862,348 | 10% | ||
ele.art | 0 | 690,829,520 | 35% | ||
hectorfaria1 | 0 | 5,082,954,306 | 100% | ||
holovision.cash | 0 | 26,064,398,122 | 100% | ||
brujita18 | 0 | 6,324,757,102 | 17.5% | ||
stephyymullen | 0 | 776,293,912 | 17.5% | ||
kkartdesign | 0 | 681,233,697 | 20% | ||
mariaser | 0 | 1,559,976,101 | 7% | ||
maridmc | 0 | 7,164,484,749 | 40% | ||
fotomaglys | 0 | 2,660,836,307 | 5% | ||
mattbrown.art | 0 | 2,649,531,776 | 30% | ||
holovision.stem | 0 | 424,213,301 | 100% | ||
duwiky | 0 | 14,313,562,554 | 45% | ||
bulldog1205 | 0 | 21,294,227,110 | 12.5% | ||
lordb | 0 | 20,977,169,391 | 100% | ||
lesliekat | 0 | 484,678,676 | 17.5% | ||
merwinrod | 0 | 651,143,607 | 17.5% | ||
gabstar | 0 | 527,317,705 | 17.5% | ||
flamistan | 0 | 1,272,926,917 | 50% | ||
aprasad2325 | 0 | 1,889,607,634 | 5% | ||
yoieuqudniram | 0 | 1,246,523,186 | 20% | ||
solominer.stem | 0 | 1,099,753,020 | 100% | ||
farmingtales | 0 | 2,254,221,037 | 40% | ||
pishio | 0 | 564,426,064,950 | 10% | ||
macolina69 | 0 | 516,846,244 | 17.5% | ||
trezzahn | 0 | 15,744,955,339 | 100% | ||
funshee | 0 | 3,793,606,591 | 25% | ||
ivycrafts | 0 | 8,465,917,425 | 17.5% | ||
mjvdc | 0 | 10,460,761,326 | 100% | ||
ikigaidesign | 0 | 3,100,324,299 | 17.5% | ||
seattlea | 0 | 626,188,841 | 2.5% | ||
amaillo | 0 | 2,878,118,259 | 20% | ||
aequi | 0 | 9,968,161,807 | 100% | ||
faithetim | 0 | 5,905,446,164 | 100% | ||
hyun-soo | 0 | 1,664,161,642 | 20% | ||
mirroredspork | 0 | 6,573,346,120 | 100% | ||
cugel | 0 | 23,719,080,768 | 26.5% | ||
victoradebiyiart | 0 | 7,930,772,129 | 100% | ||
acantoni | 0 | 9,116,645,045 | 26.5% | ||
hkinuvaime | 0 | 1,442,139,907 | 5.5% | ||
snaqz | 0 | 4,325,339,442 | 20% | ||
malhy | 0 | 2,393,144,460 | 17.5% | ||
jhepong | 0 | 1,352,307,181 | 100% | ||
honorablejudge | 0 | 0 | 100% | ||
scrubs24 | 0 | 2,475,563,151 | 8.25% | ||
mimi.ruby | 0 | 190,387,486,867 | 100% | ||
ray5fan | 0 | 844,319,914 | 100% | ||
kojiri | 0 | 534,170,727 | 5.5% | ||
irregular-n | 0 | 5,075,928,778 | 80% | ||
ingi1976 | 0 | 36,401,398,217 | 50% | ||
dsky | 0 | 196,555,083,075 | 100% | ||
we-support-hive | 0 | 576,089,345 | 100% | ||
lauti | 0 | 3,767,231,755 | 100% | ||
tengolotodo | 0 | 44,119,067,598 | 50% | ||
reppilc | 0 | 6,067,513,476 | 70% | ||
cryptogillone | 0 | 678,683,058 | 40% | ||
mariamor785 | 0 | 1,589,268,169 | 17.5% | ||
maroone | 0 | 1,514,426,761 | 100% | ||
pob.curator | 0 | 1,611,441,752 | 90% | ||
gomezmarve | 0 | 2,070,121,666 | 17.5% | ||
psyberx | 0 | 77,676,682,852 | 3% | ||
leodis | 0 | 607,592,591 | 22.95% | ||
motica29 | 0 | 906,411,954 | 17.5% | ||
soonlambo | 0 | 740,086,664 | 20% | ||
ga38jem | 0 | 97,868,195,225 | 100% | ||
helios.publisher | 0 | 1,066,410,957 | 20% | ||
onw | 0 | 9,485,983,905 | 100% | ||
waivio.curator | 0 | 1,705,255,598 | 3.23% | ||
crimsonowl-art | 0 | 655,010,352 | 20% | ||
theshot2414 | 0 | 1,836,714,035 | 4% | ||
violator101 | 0 | 55,184,651,040 | 100% | ||
elfino28 | 0 | 972,422,533 | 7.7% | ||
eddieespino | 0 | 65,069,899 | 100% | ||
khoola | 0 | 2,330,837,763 | 50% | ||
gercripto | 0 | 12,658,173,450 | 52% | ||
drexlord | 0 | 3,754,635,579 | 7.5% | ||
svanbo | 0 | 21,012,276,116 | 20% | ||
privatblog | 0 | 910,420,558,578 | 100% | ||
trostparadox.vyb | 0 | 1,035,220,536 | 50% | ||
vyb.pob | 0 | 2,244,169,831 | 50% | ||
thgaming | 0 | 581,294,714 | 2.5% | ||
elon.curator | 0 | 1,511,801,994 | 40% | ||
lovemessages | 0 | 616,450,468 | 17.5% | ||
crypt0gnome | 0 | 1,839,021,007 | 0.25% | ||
saboin.pob | 0 | 296,436,368 | 50% | ||
vyb.curation | 0 | 1,288,382,493 | 50% | ||
jennivic | 0 | 651,118,355 | 17.5% | ||
zuun.net | 0 | 4,866,780,243 | 30% | ||
lukasbachofner | 0 | 22,080,583,608 | 28% | ||
anacarolina2022 | 0 | 1,687,222,376 | 17.5% | ||
littlebee4 | 0 | 40,418,847,729 | 15% | ||
annabeth | 0 | 1,467,359,979 | 10% | ||
diehardknocks | 0 | 27,810,957,607 | 100% | ||
adalathu | 0 | 2,573,072,582 | 5% | ||
killerwot | 0 | 139,960,283,434 | 100% | ||
be-alysha | 0 | 6,205,703,003 | 88% | ||
jagmeet12 | 0 | 540,072,230 | 5.5% | ||
janitzearratia | 0 | 10,846,982,410 | 49% | ||
rafzat | 0 | 3,480,967,989 | 21% | ||
nicklewis | 0 | 5,809,895,692 | 10% | ||
gone-hive | 0 | 921,205,441 | 12.5% | ||
mypathtofire | 0 | 2,892,363,869,123 | 100% | ||
jlinaresp | 0 | 58,090,448,460 | 100% | ||
pobscholarship | 0 | 539,545,747 | 50% | ||
friendmoose.pob | 0 | 496,724,013 | 100% | ||
xelagiorepnam | 0 | 18,301,636,424 | 100% | ||
vyb.fund | 0 | 1,055,550,757 | 50% | ||
prosocialise | 0 | 9,001,462,900 | 5.5% | ||
mesk | 0 | 548,893,526 | 5.5% | ||
dragonmk47 | 0 | 4,945,494,294 | 5.5% | ||
jesusaguilarvz | 0 | 3,479,485,670 | 35% | ||
isabel-vihu | 0 | 3,566,429,066 | 30% | ||
androliuben | 0 | 9,388,082,132 | 100% | ||
helios.voter | 0 | 2,708,164,313,467 | 40% | ||
cimmeron | 0 | 1,058,269,880 | 6.25% | ||
mdasein | 0 | 7,978,137,804 | 100% | ||
abouttodie | 0 | 4,443,183,579 | 100% | ||
janusmolinovsky | 0 | 2,910,904,163 | 17.5% | ||
crazygirl777 | 0 | 6,082,262,867 | 50% | ||
franzpaulie | 0 | 38,816,109,989 | 100% | ||
soyjoselopez | 0 | 1,271,216,982 | 50% | ||
strava2hive | 0 | 18,317,759,199 | 100% | ||
psyber-x | 0 | 540,189,807 | 3% | ||
psyberx.witness | 0 | 781,153,426 | 3% | ||
mukadder | 0 | 48,395,165,252 | 100% | ||
lordshah | 0 | 20,533,359,295 | 65.3% | ||
davicoscz | 0 | 4,216,998,091 | 100% | ||
becca-mac | 0 | 196,081,366,898 | 100% | ||
growandbow | 0 | 90,133,985,105 | 96% | ||
tzae | 0 | 1,739,635,419 | 100% | ||
lyamalfonzo23 | 0 | 1,351,972,159 | 40% | ||
acgalarza | 0 | 18,686,237,852 | 5.25% | ||
soy-laloreto | 0 | 4,839,779,416 | 10.5% | ||
the13anarchist | 0 | 1,368,585,435 | 8% | ||
letdora | 0 | 855,172,030 | 100% | ||
brutus22 | 0 | 8,562,155,924 | 100% | ||
revise.spk | 0 | 697,627,509 | 100% | ||
maxhustle | 0 | 1,970,511,443 | 100% | ||
hiveinvest | 0 | 1,088,046,613 | 100% | ||
justbabybee | 0 | 33,973,901,805 | 100% | ||
psyberwhale | 0 | 537,048,114 | 2.4% | ||
bgmoha | 0 | 3,658,117,426 | 55% | ||
xenotype | 0 | 945,884,502 | 100% | ||
greatpyramids | 0 | 0 | 100% | ||
carolinaes | 0 | 819,457,060 | 20% | ||
hive-152804 | 0 | 1,381,785,786 | 100% | ||
archives-upfunds | 0 | 8,440,320,696 | 100% | ||
r4f4 | 0 | 643,279,195 | 20% | ||
celestegray | 0 | 58,518,970,159 | 50% | ||
byorlany | 0 | 2,256,869,042 | 17.5% | ||
artefactoestudio | 0 | 1,492,578,961 | 57% | ||
gubbahomestead | 0 | 42,003,115,542 | 100% | ||
lordneroo.vyb | 0 | 443,060,986 | 100% | ||
rubilu | 0 | 13,503,258,651 | 50% | ||
mitchcabz | 0 | 1,910,902,748 | 100% | ||
yzamazing | 0 | 2,387,151,863 | 20% | ||
blahgerz | 0 | 0 | 100% | ||
fizz0 | 0 | 501,444,463 | 10% | ||
emma-h | 0 | 94,340,703,876 | 100% | ||
alegnairam | 0 | 2,383,551,350 | 100% | ||
p1k4ppa10 | 0 | 36,066,653,706 | 5% | ||
grindan | 0 | 156,922,547,056 | 100% | ||
cards4rent | 0 | 69,702,244,481 | 50% | ||
hive-195880 | 0 | 15,721,972,190 | 53% | ||
elnauta | 0 | 14,193,829 | 100% | ||
thepeoplesguild | 0 | 2,527,458,066 | 5.5% | ||
zackygamer | 0 | 1,103,024,498 | 21% | ||
abu78 | 0 | 705,761,300 | 2.75% | ||
omegaraptor | 0 | 41,036,679,683 | 100% | ||
beauty197 | 0 | 552,885,545 | 5% | ||
denisda | 0 | 3,572,031,985 | 20% | ||
kerokus | 0 | 12,530,577,525 | 100% | ||
catrynart | 0 | 679,823,230 | 5% | ||
buffalo.pob | 0 | 0 | 100% | ||
gollumkp | 0 | 16,377,649,169 | 20% | ||
skiptvads | 0 | 42,734,767,809 | 35% | ||
mrbonkers | 0 | 15,454,447,471 | 50% | ||
timix648 | 0 | 497,526,210 | 100% | ||
hive.defender | 0 | 1,506,331,301 | 20% | ||
agbogo | 0 | 11,768,325,331 | 100% | ||
satoshinakamto | 0 | 665,929,823 | 20% | ||
strega.azure | 0 | 40,857,319,431 | 100% | ||
decoding | 0 | 198,734,230,038 | 100% | ||
pob.voter | 0 | 2,237,061,285 | 45% | ||
alive.voter | 0 | 2,437,353,724 | 45% | ||
foodchunk | 0 | 271,589,424,790 | 50% | ||
michaelklinejr | 0 | 23,097,857,233 | 100% | ||
mar.gor | 0 | 8,303,706,756 | 100% | ||
alive.trader | 0 | 665,081,070 | 20% | ||
pobtrooper | 0 | 675,358,759 | 20% | ||
pobwarrior | 0 | 699,042,963 | 20% | ||
psyberxnode | 0 | 736,047,362 | 2.7% | ||
coinjoe | 0 | 19,679,073,502 | 25% | ||
masterrpgbot | 0 | 1,168,161,870 | 3% | ||
aslamrer | 0 | 598,279,352 | 5% | ||
epiko | 0 | 2,180,231,134 | 100% | ||
ruthmarquez | 0 | 632,642,611 | 35% | ||
robertonis | 0 | 9,672,420,242 | 12% | ||
helios.daily | 0 | 727,662,055 | 20% | ||
emma-h2 | 0 | 147,441,845,263 | 100% | ||
cwow1 | 0 | 192,472,059,217 | 100% | ||
atobaba | 0 | 72,677,841,752 | 100% | ||
medemr | 0 | 3,594,901,572 | 100% | ||
medicorez | 0 | 2,949,003,281 | 100% | ||
cwow3 | 0 | 53,228,187,728 | 100% | ||
itsmeelii | 0 | 1,852,584,288 | 100% | ||
haveyoursay | 0 | 212,306,064,825 | 100% | ||
boblazar | 0 | 4,669,442,476 | 100% | ||
ghzn | 0 | 0 | 100% |
I just found out my niece has to take a Python class and she is freaking out. It has nothing to do with her major and she doesn't have a lot of confidence. I wish I knew more about coding so I could help her. Unfortunately, I have forgotten more than I remember.
author | bozz |
---|---|
permlink | re-slobberchops-2023824t21125808z |
category | hive-163521 |
json_metadata | {"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-08-25 01:12:06 |
last_update | 2023-08-25 01:12:06 |
depth | 1 |
children | 2 |
last_payout | 2023-09-01 01:12:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.052 HBD |
curator_payout_value | 0.053 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 262 |
author_reputation | 2,309,012,391,898,069 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,567,399 |
net_rshares | 272,854,136,451 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 272,854,136,451 | 5% |
I have tried to teach people how to code in the past, you either have the mindset or you don't. It's like teaching me how to draw, it's never going to look good. I don't have the 'artist' flair.
author | slobberchops |
---|---|
permlink | re-bozz-rzxmyb |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 05:51:48 |
last_update | 2023-08-25 05:51:48 |
depth | 2 |
children | 1 |
last_payout | 2023-09-01 05:51:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 194 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,572,893 |
net_rshares | 43,468,092,673 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stimialiti | 0 | 4,694,177,716 | 20% | ||
fersher | 0 | 1,188,005,014 | 100% | ||
bozz | 0 | 37,585,909,943 | 3% |
I've done it in the past, so I don't think I am totally inept, I just feel like I am very out of practice.
author | bozz |
---|---|
permlink | re-slobberchops-rzy3v8 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 11:57:09 |
last_update | 2023-08-25 11:57:09 |
depth | 3 |
children | 0 |
last_payout | 2023-09-01 11:57:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 106 |
author_reputation | 2,309,012,391,898,069 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,578,749 |
net_rshares | 0 |
I am always fascinated when someone is able to master coding!
author | chrislybear |
---|---|
permlink | re-slobberchops-2023824t232911231z |
category | hive-163521 |
json_metadata | {"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-08-24 20:29:12 |
last_update | 2023-08-24 20:29:12 |
depth | 1 |
children | 10 |
last_payout | 2023-08-31 20:29:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.056 HBD |
curator_payout_value | 0.057 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 61 |
author_reputation | 84,679,178,293,143 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,560,982 |
net_rshares | 293,723,770,179 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
markush | 0 | 22,551,413,639 | 100% | ||
slobberchops | 0 | 271,013,384,380 | 5% | ||
stemgeeks | 0 | 158,972,160 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
Thanks, but I am hardly a master. A real coder would rip into what I do and take it apart. I can make things work, and even look good but the engine behind it all is barely oiled.
author | slobberchops |
---|---|
permlink | re-chrislybear-rzwx3h |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-24 20:33:18 |
last_update | 2023-08-24 20:33:18 |
depth | 2 |
children | 9 |
last_payout | 2023-08-31 20:33:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 179 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,561,146 |
net_rshares | 7,599,910,115 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
chrislybear | 0 | 7,441,434,822 | 100% | ||
stemgeeks | 0 | 158,475,293 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
Haha as long as it runs :D I am happy I understand html a little bit π Always wanted to learn coding. But you knowβ¦
author | chrislybear |
---|---|
permlink | re-slobberchops-2023824t23408820z |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-08-24 20:40:09 |
last_update | 2023-08-24 20:40:09 |
depth | 3 |
children | 8 |
last_payout | 2023-08-31 20:40:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 116 |
author_reputation | 84,679,178,293,143 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,561,372 |
net_rshares | 158,722,849 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 158,722,849 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
Oh I miss VB. These days I don't do desktop and windows based development. But a lot of desktop based code went through back in time. I also spent a lot of time coding with autohotkey for those shortcut based short apps.
author | devpress |
---|---|
permlink | rzzm11 |
category | hive-163521 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-08-26 07:27:00 |
last_update | 2023-08-26 07:27:00 |
depth | 1 |
children | 1 |
last_payout | 2023-09-02 07:27:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.020 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 222 |
author_reputation | 55,061,325,071,240 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,604,538 |
net_rshares | 108,470,015,722 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 108,470,015,722 | 2% |
It's very unfashionable in todays world and badly supported in terms of object manipulation. Why is C# the way to go when the code optimization is so similar? I don't get it.
author | slobberchops |
---|---|
permlink | re-devpress-rzzmci |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-26 07:33:54 |
last_update | 2023-08-26 07:33:54 |
depth | 2 |
children | 0 |
last_payout | 2023-09-02 07:33:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 174 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,604,634 |
net_rshares | 0 |
<div class="pull-left">https://cdn.steemitimages.com/DQmTAn3c753LR7bHCLPo96g9UvRMaPFwaMYn8VQZa85xczC/discovery_logo_colore%20-%20Copia.png</div><br> This post was shared and voted inside the discord by the curators team of <a href="https://discord.gg/cMMp943"> discovery-it</a> <br>Join our <a href = "https://hive.blog/trending/hive-193212"> Community</a> and follow our <a href = "https://hive.vote/dash.php?i=1&trail=discovery-it">Curation Trail</a><br>Discovery-it is also a Witness, vote for us <a href = "https://hivesigner.com/sign/account-witness-vote?witness=discovery-it&approve=true"> here</a> <br>Delegate to us for passive income. Check our <a href = "https://hive.blog/hive-193212/@discovery-it/delegations-program-80-fee-back"> 80% fee-back Program</a> <hr>
author | discovery-it |
---|---|
permlink | re-slobberchops-87qpock0g9 |
category | hive-163521 |
json_metadata | "{"app": "beem/0.24.26"}" |
created | 2023-08-24 21:19:57 |
last_update | 2023-08-24 21:19:57 |
depth | 1 |
children | 0 |
last_payout | 2023-08-31 21:19:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 773 |
author_reputation | 68,408,256,059,035 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,563,181 |
net_rshares | -34,391,283,305 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
glimpsytips.dex | 0 | -34,391,283,305 | -100% |
Just do not go handling any vibrant purple dildos
author | grindle |
---|---|
permlink | re-slobberchops-rzzknr |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-26 06:57:27 |
last_update | 2023-08-26 06:57:27 |
depth | 1 |
children | 4 |
last_payout | 2023-09-02 06:57:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.051 HBD |
curator_payout_value | 0.052 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 49 |
author_reputation | 1,039,273,852,533,056 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,604,083 |
net_rshares | 270,711,591,247 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 270,711,591,247 | 5% |
I hope you didn't, I kept my distance. With the way that thing moves around, it's kind of alive!
author | slobberchops |
---|---|
permlink | re-grindle-rzzktl |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-26 07:01:00 |
last_update | 2023-08-26 07:01:00 |
depth | 2 |
children | 3 |
last_payout | 2023-09-02 07:01:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.070 HBD |
curator_payout_value | 0.070 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,604,123 |
net_rshares | 363,941,407,649 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stimialiti | 0 | -25,647,323,942 | -100% | ||
fersher | 0 | -1,204,828,134 | -100% | ||
grindle | 0 | 390,793,559,725 | 100% |
yeuch! I still havent been preston, will get round to it in a few weeks its a 4 hour round trip!
author | grindle |
---|---|
permlink | re-slobberchops-s01hak |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-27 07:39:57 |
last_update | 2023-08-27 07:39:57 |
depth | 3 |
children | 2 |
last_payout | 2023-09-03 07:39:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.020 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 96 |
author_reputation | 1,039,273,852,533,056 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,632,107 |
net_rshares | 109,648,705,869 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 109,648,705,869 | 2% |
Didn't knew you are also into this technical stuff
author | haveyoursay |
---|---|
permlink | re-slobberchops-2023825t1026297z |
category | hive-163521 |
json_metadata | {"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.36-vision","format":"markdown+html"} |
created | 2023-08-25 05:26:27 |
last_update | 2023-08-25 05:26:27 |
depth | 1 |
children | 0 |
last_payout | 2023-09-01 05:26:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 75,734,314,275,754 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,572,039 |
net_rshares | 54,428,832,348 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 54,428,832,348 | 1% |
Will really take my programming classes seriously now hahaha. I'm done with R and Python already but I'm still not good to it.
author | itsmeelii |
---|---|
permlink | re-slobberchops-rzydv7 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 15:33:09 |
last_update | 2023-08-25 15:33:09 |
depth | 1 |
children | 0 |
last_payout | 2023-09-01 15:33:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 126 |
author_reputation | 11,796,188,823,231 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,583,323 |
net_rshares | 108,259,438,494 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 108,259,438,494 | 2% |
Nice work i dont know nothing about VB but it is llok awesome :D
author | jakiro12 |
---|---|
permlink | rzy0zl |
category | hive-163521 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-08-25 10:55:00 |
last_update | 2023-08-25 10:55:00 |
depth | 1 |
children | 0 |
last_payout | 2023-09-01 10:55:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 64 |
author_reputation | 39,044,812,735,874 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,577,517 |
net_rshares | 43,505,157,603 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
spaminator | 0 | -7,010,831,804 | -0.25% | ||
slobberchops | 0 | 50,515,989,407 | 1% |
Haaaa haaaa haaaa :))... Impossible not to piss laughing reading this, my dear friend and top author!... !discovery 40 !VSC !PIZZA
author | jlinaresp |
---|---|
permlink | re-slobberchops-rzwz97 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-24 21:19:51 |
last_update | 2023-08-24 21:19:51 |
depth | 1 |
children | 2 |
last_payout | 2023-08-31 21:19:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.049 HBD |
curator_payout_value | 0.049 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 131 |
author_reputation | 982,159,282,959,412 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,563,177 |
net_rshares | 254,254,067,074 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 254,097,571,701 | 5% | ||
stemgeeks | 0 | 156,495,373 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
What you mean.., this is a deadly serious article! π
author | slobberchops |
---|---|
permlink | re-jlinaresp-rzwzot |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-24 21:29:18 |
last_update | 2023-08-24 21:29:18 |
depth | 2 |
children | 0 |
last_payout | 2023-08-31 21:29:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 52 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,563,378 |
net_rshares | 5,659,270,262 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 156,250,490 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% | ||
jlinaresp | 0 | 5,503,019,772 | 10% |
<center> <img src="https://cdn.discordapp.com/attachments/1066793121372971078/1069442515960340530/Picsart_23-01-21_13-21-28-055.jpg"> <sub>@jlinaresp has sent VSC to @slobberchops</sub> <sub>This post was rewarded with 0.1 VSC to support your work. Join our photography community<A HREF="https://peakd.com/c/hive-132248/created"><STRONG>Visual Shots</STRONG></A> Check here to <A HREF="https://hive-engine.com/trade/VSC"><STRONG>view or trade VSC Tokens</STRONG></A> Be part of our <A HREF="https://hive.vote/dash.php?trail=visualshots&i=1"><STRONG>Curation Trail</STRONG></A></sub> --- <sub>@jlinaresp ha enviado VSC a @slobberchops</sub> <sub>Γste post fue recompensado con 0.1 VSC para apoyar tu trabajo. Γnete a nuestra comunidad de fotografΓa <A HREF="https://peakd.com/c/hive-132248/created"><STRONG>Visual Shots</STRONG></A> Consulte aquΓ para <A HREF="https://hive-engine.com/trade/VSC"><STRONG>ver o intercambiar VSC Tokens</STRONG></A> Se parte de nuestro <A HREF="https://hive.vote/dash.php?trail=visualshots&i=1"><STRONG>Trail de CuraciΓ³n</STRONG></A></sub> </center> --- <center>Uses: 13/25</center>
author | visualbot |
---|---|
permlink | re-jlinaresp-re-slobberchops-rzwz97-20230824t211959028z |
category | hive-163521 |
json_metadata | {"app":"hive-bot/0.6.3"} |
created | 2023-08-24 21:20:00 |
last_update | 2023-08-24 21:20:00 |
depth | 2 |
children | 0 |
last_payout | 2023-08-31 21:20:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,121 |
author_reputation | 734,995,980,039 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,563,183 |
net_rshares | -31,032,377,142 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
glimpsytips.dex | 0 | -31,032,377,142 | -100% |
I'm here for the venereal disease. Also, fuck Windows.
author | kryptik |
---|---|
permlink | re-slobberchops-rzxoau |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 06:20:57 |
last_update | 2023-08-25 06:20:57 |
depth | 1 |
children | 3 |
last_payout | 2023-09-01 06:20:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 38,181,454,492,763 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,573,310 |
net_rshares | 110,690,548,644 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 110,690,548,644 | 2% |
>I'm here for the venereal disease. Now we're talking!
author | slobberchops |
---|---|
permlink | re-kryptik-rzxs56 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 07:43:54 |
last_update | 2023-08-25 07:43:54 |
depth | 2 |
children | 2 |
last_payout | 2023-09-01 07:43:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 55 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,574,699 |
net_rshares | 0 |
INB4 VD. What all languages do you use man?
author | kryptik |
---|---|
permlink | re-slobberchops-rzylw9 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 18:26:42 |
last_update | 2023-08-25 18:26:42 |
depth | 3 |
children | 1 |
last_payout | 2023-09-01 18:26:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 38,181,454,492,763 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,587,731 |
net_rshares | 0 |
<center></center> # <center>Β‘Felicidades!</center> #### <center>[Γnete a nuestro Discord para compartir, aprender mΓ‘s y promocionar tus publicaciones π₯³](https://discord.gg/CRJy7ce)</center>
author | mayvileros |
---|---|
permlink | re-slobberchops-rzwzzu |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-24 21:35:54 |
last_update | 2023-08-24 21:35:54 |
depth | 1 |
children | 0 |
last_payout | 2023-08-31 21:35:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 320 |
author_reputation | 125,939,670,656,930 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,563,542 |
net_rshares | -40,638,635,639 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
glimpsytips.dex | 0 | -40,638,635,639 | -100% |
I want to learn this stuff too. This topic fascinates and entertains me. I also like the way you present programming in this article. Keep up the great work π !PGM
author | mdasein |
---|---|
permlink | re-slobberchops-2023825t1734494z |
category | hive-163521 |
json_metadata | {"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-08-25 09:03:06 |
last_update | 2023-08-25 09:03:06 |
depth | 1 |
children | 1 |
last_payout | 2023-09-01 09:03:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 163 |
author_reputation | 14,966,838,221,313 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,575,736 |
net_rshares | 101,119,169,133 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 101,119,169,133 | 2% |
<center>Sent 0.1 PGM - 0.1 LVL- 1 STARBITS - 0.05 DEC - 1 SBT - 0.1 THG - 0.000001 SQM - 0.1 BUDS - 0.01 WOO - 0.005 SCRAP tokens </center> <center><sub>remaining commands 10</sub></center> **BUY AND STAKE THE PGM TO SEND A LOT OF TOKENS!** The tokens that the command sends are: 0.1 PGM-0.1 LVL-0.1 THGAMING-0.05 DEC-15 SBT-1 STARBITS-[0.00000001 BTC (SWAP.BTC) only if you have 2500 PGM in stake or more ] 5000 PGM IN STAKE = 2x rewards!  Discord [](https://discord.gg/KCvuNTEjWw) Support the curation account @ pgm-curator with a delegation [10 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiIxMCJ9XQ..) - [50 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MCJ9XQ..) - [100 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhb3RyIiwidmVzdGluZ19zaGFyZXMiOiIxMDAifV0.) - [500 HP](https://hivesigner.com/sign/op/WyJkZWxlZ2F0ZV92ZXN0aW5nX3NoYXJlcyIseyJkZWxlZ2F0b3IiOiJfX3NpZ25lciIsImRlbGVnYXRlZSI6InBnbS1jdXJhdG9yIiwidmVzdGluZ19zaGFyZXMiOiI1MDAifV0.) - [1000 HP](https://hivesigner.com/sign/op/WyJ0cmFuc2Zlcl90b192ZXN0aW5nIix7ImZyb20iOiJfX3NpZ25lciIsInRvIjoicGdtLWN1cmF0b3IiLCJhbW91bnQiOiIxMDAwIn1d) Get **potential** votes from @ pgm-curator by paying in PGM, here is a [guide](https://peakd.com/hive-146620/@zottone444/pay-1-pgm-and-get-4-votes-itaegn) <sub>I'm a bot, if you want a hand ask @ zottone444</sub> ***
author | pgm-curator |
---|---|
permlink | pgm-curatormdasein1692954202587 |
category | hive-163521 |
json_metadata | {"tags":[],"app":"pgm/0.1","format":"markdown+html"} |
created | 2023-08-25 09:03:24 |
last_update | 2023-08-25 09:03:24 |
depth | 2 |
children | 0 |
last_payout | 2023-09-01 09:03:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,917 |
author_reputation | 3,409,490,822,394 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,575,740 |
net_rshares | 0 |
You mad developer bastard, how dare you come here with your dodger blue this and your decimal place that!! π€£
author | meesterboom |
---|---|
permlink | re-slobberchops-rzx16m |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-24 22:01:39 |
last_update | 2023-08-24 22:01:39 |
depth | 1 |
children | 2 |
last_payout | 2023-08-31 22:01:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.052 HBD |
curator_payout_value | 0.053 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 108 |
author_reputation | 1,798,291,063,130,460 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,564,133 |
net_rshares | 273,200,577,635 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 273,045,305,196 | 5% | ||
stemgeeks | 0 | 155,272,439 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
I thought you might home in on 'The Clap'. I have to find ways to make this a little more readable for the non geeks. π
author | slobberchops |
---|---|
permlink | re-meesterboom-rzxmv2 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 05:49:51 |
last_update | 2023-08-25 05:49:51 |
depth | 2 |
children | 1 |
last_payout | 2023-09-01 05:49:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,572,818 |
net_rshares | 0 |
Lol, I was going to but try not to be too predictable :OD
author | meesterboom |
---|---|
permlink | re-slobberchops-rzy30u |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 11:38:57 |
last_update | 2023-08-25 11:38:57 |
depth | 3 |
children | 0 |
last_payout | 2023-09-01 11:38:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 57 |
author_reputation | 1,798,291,063,130,460 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,578,409 |
net_rshares | 108,997,908,619 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
galenkp | 0 | 108,997,908,619 | 2% |
π the caution almost scared me from reading the post. It's innovative. I like it. Good work
author | mfontom |
---|---|
permlink | rzxwt0 |
category | hive-163521 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-08-25 09:24:39 |
last_update | 2023-08-25 09:24:39 |
depth | 1 |
children | 0 |
last_payout | 2023-09-01 09:24:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 91 |
author_reputation | 62,271,293,459,921 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,576,178 |
net_rshares | 0 |
I've done a lot of self study into HTML/CSS/JavaScript. Even built some pretty hefty game map logic for some thoughts I've had in my head. However, I find it hard to concentrate on anything when I don't have a secluded lair... My current lair is too subjected to the household racket. I see that Python has quickly taken over as the script language of serving content on the web. I will have to put it on a bucket list of things to do if I ever get a proper coding lair.
author | michaelklinejr | ||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
permlink | rzyilv | ||||||||||||||||||
category | hive-163521 | ||||||||||||||||||
json_metadata | {"app":"hiveblog/0.1"} | ||||||||||||||||||
created | 2023-08-25 17:16:12 | ||||||||||||||||||
last_update | 2023-08-25 17:16:12 | ||||||||||||||||||
depth | 1 | ||||||||||||||||||
children | 1 | ||||||||||||||||||
last_payout | 2023-09-01 17:16:12 | ||||||||||||||||||
cashout_time | 1969-12-31 23:59:59 | ||||||||||||||||||
total_payout_value | 0.056 HBD | ||||||||||||||||||
curator_payout_value | 0.058 HBD | ||||||||||||||||||
pending_payout_value | 0.000 HBD | ||||||||||||||||||
promoted | 0.000 HBD | ||||||||||||||||||
body_length | 470 | ||||||||||||||||||
author_reputation | 4,227,486,074,309 | ||||||||||||||||||
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" | ||||||||||||||||||
beneficiaries |
| ||||||||||||||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||||||||||||||
percent_hbd | 10,000 | ||||||||||||||||||
post_id | 126,585,784 | ||||||||||||||||||
net_rshares | 304,425,383,069 | ||||||||||||||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 108,299,499,845 | 2% | ||
cryptothesis | 0 | 196,125,883,224 | 100% |
Javascript is another one I need to pick up at some point. It looks easy enough to transition into. You can only learn so many, there's too much out there in todays world.
author | slobberchops |
---|---|
permlink | re-michaelklinejr-rzzkpe |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-26 06:58:27 |
last_update | 2023-08-26 06:58:27 |
depth | 2 |
children | 0 |
last_payout | 2023-09-02 06:58:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 171 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,604,094 |
net_rshares | 0 |
<center>PIZZA! $PIZZA slices delivered: @jlinaresp<sub>(6/10)</sub> tipped @slobberchops </center>
author | pizzabot |
---|---|
permlink | re-app-development-log-re-creating-the-windows-explorer-icon-20230824t212015z |
category | hive-163521 |
json_metadata | "{"app": "pizzabot"}" |
created | 2023-08-24 21:20:15 |
last_update | 2023-08-24 21:20:15 |
depth | 1 |
children | 0 |
last_payout | 2023-08-31 21:20:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 103 |
author_reputation | 7,694,783,064,889 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,563,189 |
net_rshares | -37,385,250,492 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
glimpsytips.dex | 0 | -37,385,250,492 | -100% |
Coding is not something easy so when I see someone who can do it, I always hail them... Keep it up!
author | rafzat |
---|---|
permlink | re-slobberchops-2023825t31314798z |
category | hive-163521 |
json_metadata | {"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-08-25 02:13:18 |
last_update | 2023-08-25 02:13:18 |
depth | 1 |
children | 0 |
last_payout | 2023-09-01 02:13:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.010 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 183,560,271,702,716 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,568,449 |
net_rshares | 54,477,065,729 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 54,477,065,729 | 1% |
I absolutely 100% don't have the mindset π
author | stav |
---|---|
permlink | re-slobberchops-s01rc6 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-27 11:16:54 |
last_update | 2023-08-27 11:16:54 |
depth | 1 |
children | 2 |
last_payout | 2023-09-03 11:16:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.028 HBD |
curator_payout_value | 0.028 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 52,141,742,331,876 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,635,547 |
net_rshares | 152,547,925,739 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 152,547,925,739 | 3% |
It's very satisfying knowing you can do this stuff.
author | slobberchops |
---|---|
permlink | re-stav-s01ri9 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-27 11:20:33 |
last_update | 2023-08-27 11:20:33 |
depth | 2 |
children | 1 |
last_payout | 2023-09-03 11:20:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.017 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 51 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,635,601 |
net_rshares | 93,236,443,426 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stav | 0 | 93,236,443,426 | 80% |
I've been trying to get my head around the world of PowerAutomate and PowerBI with M, DAX and Powerfx. ....still shit.
author | stav |
---|---|
permlink | re-slobberchops-s01rph |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-27 11:24:54 |
last_update | 2023-08-27 11:24:54 |
depth | 3 |
children | 0 |
last_payout | 2023-09-03 11:24:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 119 |
author_reputation | 52,141,742,331,876 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,635,655 |
net_rshares | 0 |
Color? Are you turning into a Yank? Mind you, I'm getting influenced after spending some time there. I've not got to grips with what Power shell can do. The command line stuff seems overcomplicated, but I expect it's powerful. I guess I could do an online course to learn more.
author | steevc |
---|---|
permlink | re-slobberchops-2023824t174918751z |
category | hive-163521 |
json_metadata | {"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-08-24 21:49:24 |
last_update | 2023-08-24 21:49:24 |
depth | 1 |
children | 1 |
last_payout | 2023-08-31 21:49:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.048 HBD |
curator_payout_value | 0.048 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 278 |
author_reputation | 1,397,860,550,772,644 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,563,883 |
net_rshares | 246,390,160,700 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stimialiti | 0 | -25,829,590,300 | -100% | ||
fersher | 0 | -1,203,183,662 | -100% | ||
slobberchops | 0 | 273,267,418,515 | 5% | ||
stemgeeks | 0 | 155,516,147 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
>Color? Are you turning into a Yank? Fixed, all those mandatory 'Color' spelling properties have an effect on the rest of it. >The command line stuff seems overcomplicated, but I expect it's powerful. It's a strange language, especially concerning functions and what it returns. You expect a string and end up with a system object! Where I work, it's heavily used by everyone surrounding me. I go with the flow and it's always had a lot of support from Microsoft with CMDlets to access SCCM (which is what my apps does).
author | slobberchops |
---|---|
permlink | re-steevc-rzxmsw |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 05:48:33 |
last_update | 2023-08-25 05:48:33 |
depth | 2 |
children | 0 |
last_payout | 2023-09-01 05:48:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.017 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 524 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,572,770 |
net_rshares | 97,121,045,215 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steevc | 0 | 44,200,407,941 | 2% | ||
stimialiti | 0 | -25,538,646,315 | -100% | ||
fersher | 0 | -1,217,016,257 | -100% | ||
bingbabe | 0 | 4,826,504,653 | 100% | ||
chops.support | 0 | 32,360,048,319 | 100% | ||
dismayedworld | 0 | 4,439,028,281 | 100% | ||
wanker | 0 | 32,868,109,983 | 100% | ||
fabulousfurlough | 0 | 1,162,463,824 | 100% | ||
bings-cards | 0 | 4,020,144,786 | 100% |
I don't know VB, but I do C# & etc. Anyway nice to see this! $WINE
author | theguruasia |
---|---|
permlink | re-slobberchops-rzxvn3 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 08:59:30 |
last_update | 2023-08-25 08:59:30 |
depth | 1 |
children | 1 |
last_payout | 2023-09-01 08:59:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.019 HBD |
curator_payout_value | 0.019 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 72,733,312,708,316 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,575,667 |
net_rshares | 101,157,193,999 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 101,157,193,999 | 2% |
Wish I knew C#, I use a dated language out of pure laziness.
author | slobberchops |
---|---|
permlink | re-theguruasia-rzy1i7 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 11:06:06 |
last_update | 2023-08-25 11:06:06 |
depth | 2 |
children | 0 |
last_payout | 2023-09-01 11:06:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,577,737 |
net_rshares | 7,127,046,239 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
theguruasia | 0 | 7,127,046,239 | 100% |
>WARNING: This is a technical programming article and is quite capable of boring you to tears and/or sending you into a coma. You have been warned. Heheππ I actually just started learning web development a few weeks ago( it's better late than never lol)...well, so far web development isn't as boring as I thought it was though it can be really tricky at times. Making code very readable like this takes lots of time and effort too...Nice write up!!
author | timix648 |
---|---|
permlink | re-slobberchops-2023824t22141635z |
category | hive-163521 |
json_metadata | {"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.36-vision","format":"markdown+html"} |
created | 2023-08-24 21:14:18 |
last_update | 2023-08-24 21:14:18 |
depth | 1 |
children | 2 |
last_payout | 2023-08-31 21:14:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.049 HBD |
curator_payout_value | 0.049 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 453 |
author_reputation | 25,155,469,453,344 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,563,017 |
net_rshares | 254,060,871,412 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 253,904,865,511 | 5% | ||
stemgeeks | 0 | 156,005,901 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
> well, so far web development isn't as boring as I thought it was though It's not if you understand it and are creating something unique. That's the thing you see, what you do is yours and there's nothing else like it.
author | slobberchops |
---|---|
permlink | re-timix648-rzwzrc |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-24 21:30:48 |
last_update | 2023-08-24 21:30:48 |
depth | 2 |
children | 1 |
last_payout | 2023-08-31 21:30:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 220 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,563,427 |
net_rshares | 155,761,605 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stemgeeks | 0 | 155,761,605 | 6% | ||
yggdrasil.laguna | 0 | 0 | 3% |
Yep very true π
author | timix648 |
---|---|
permlink | re-slobberchops-rzx59y |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-24 23:30:03 |
last_update | 2023-08-24 23:30:03 |
depth | 3 |
children | 0 |
last_payout | 2023-08-31 23:30:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 25,155,469,453,344 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,565,645 |
net_rshares | -7,555,454,092 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
glimpsytips.dex | 0 | -7,555,454,092 | -24% |
As a senior developer, my brain hurts not seeing more functions. But as a human I enjoyed your post a lot π
author | unschool |
---|---|
permlink | re-slobberchops-rzxeh8 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 02:48:45 |
last_update | 2023-08-25 02:48:45 |
depth | 1 |
children | 4 |
last_payout | 2023-09-01 02:48:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.053 HBD |
curator_payout_value | 0.053 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 4,717,970,847,118 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,569,128 |
net_rshares | 272,612,728,137 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 272,612,728,137 | 5% |
You are the type I would love to talk to about my 'style'. What would you do differently given the parts you see? I have never been formally taught to do any of this and I know it's not structured correctly.
author | slobberchops |
---|---|
permlink | re-unschool-rzxn1s |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 05:53:54 |
last_update | 2023-08-25 05:53:54 |
depth | 2 |
children | 3 |
last_payout | 2023-09-01 05:53:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.016 HBD |
curator_payout_value | 0.016 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 207 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,572,942 |
net_rshares | 89,271,237,465 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
stimialiti | 0 | -25,100,288,754 | -100% | ||
fersher | 0 | -1,209,841,311 | -100% | ||
chops.support | 0 | 31,712,711,552 | 100% | ||
wanker | 0 | 32,210,625,071 | 100% | ||
unschool | 0 | 51,658,030,907 | 50% |
Well per example, The most important lesson learned in programming over the years is that variables and function naming is of utmost importance. If you can't understand it 1 year from now, it's not a good name. It's ever more important when you work on code as a team.
author | unschool |
---|---|
permlink | re-slobberchops-rzy5m5 |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 12:34:54 |
last_update | 2023-08-25 12:34:54 |
depth | 3 |
children | 2 |
last_payout | 2023-09-01 12:34:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.020 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 268 |
author_reputation | 4,717,970,847,118 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,579,495 |
net_rshares | 108,216,586,178 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
slobberchops | 0 | 108,216,586,178 | 2% |
Wow, it has been a while when I wrote code. Nowadays my colleques write a lot of Powershell modules. Next month we will migrate to Powershell 7. Code on !! :)
author | verhp11 |
---|---|
permlink | s062p8 |
category | hive-163521 |
json_metadata | {"app":"hiveblog/0.1"} |
created | 2023-08-29 19:12:42 |
last_update | 2023-08-29 19:12:42 |
depth | 1 |
children | 0 |
last_payout | 2023-09-05 19:12:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 160 |
author_reputation | 101,983,719,324,115 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,701,750 |
net_rshares | 0 |
> Next was the font. I tried ChatGpt and asked it what font Microsoft uses for their Windows Explorer icon textual description. It told me they do not disclose those facts but it's probably Segoe UI, 9pt. Very fucking useful. I heard that sometimes ChatGPT is giving misleading answers, so even when its answer is seemingly/apparently good, it can still be bad/incorrect. This time it is both. This time the Segoe UI is indeed the right answer. Segoe UI is the Windows System font. The standard font size has been increased to 9 point, so the 9pt is also right. But the "they do not disclose those facts" part is not correct in the answer, because there is an article about it on Microsoft Learn: [Fonts - Win32 apps - Microsoft Learn](https://learn.microsoft.com/en-us/windows/win32/uxguide/vis-fonts).
author | xplosive |
---|---|
permlink | re-slobberchops-2023825t1135214z |
category | hive-163521 |
json_metadata | {"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"} |
created | 2023-08-25 09:03:54 |
last_update | 2023-08-25 09:04:09 |
depth | 1 |
children | 1 |
last_payout | 2023-09-01 09:03:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.020 HBD |
curator_payout_value | 0.020 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 806 |
author_reputation | 211,264,977,506,618 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,575,746 |
net_rshares | 107,199,837,317 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jomeszaros | 0 | 6,014,439,213 | 100% | ||
slobberchops | 0 | 101,185,398,104 | 2% |
> I heard that sometimes ChatGPT is giving misleading answers Yes, it 'lies' a lot, but is also a help. I would rather have it around that not. >But the "they do not disclose those facts" part is not correct in the answer, because there is an article about it on Microsoft Learn: Fonts - Win32 apps - Microsoft Learn. Thanks, useful.
author | slobberchops |
---|---|
permlink | re-xplosive-rzy1gx |
category | hive-163521 |
json_metadata | {"tags":["hive-163521"],"app":"peakd/2023.7.1"} |
created | 2023-08-25 11:05:21 |
last_update | 2023-08-25 11:05:21 |
depth | 2 |
children | 0 |
last_payout | 2023-09-01 11:05:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 336 |
author_reputation | 2,453,291,468,472,106 |
root_title | "App Development Log: Re-Creating The Windows Explorer Icon" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 126,577,716 |
net_rshares | 30,328,081,064 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
xplosive | 0 | 30,328,081,064 | 100% |