create account

App Development Log: Re-Creating The Windows Explorer Icon by slobberchops

View this thread on: hive.blogpeakd.comecency.com
· @slobberchops · (edited)
$85.89
App Development Log: Re-Creating The Windows Explorer Icon
<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>
![IMG_9891.JPG](https://files.peakd.com/file/peakd-hive/slobberchops/Eo8RNrXd4aYFP7JY1YRSpVT9pYssoLCL2KbChq5FMTh78MV2sFuu72wBFHth7ZYzCFZ.JPG)
...***'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.

![NetworkDriveLogo.PNG](https://files.peakd.com/file/peakd-hive/slobberchops/23xLKdsRmDf1Zq3GZc3LpGGFU8CE696fTevdgJRDGudnPjWA2dGAoG1WPPsFGjgnSPfvm.PNG)

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.

![FindtheIcon.PNG](https://files.peakd.com/file/peakd-hive/slobberchops/48JeaeXkBbT112SFuV67NZci11FpctusYPppY3LUyzBj4m1R7H3oCS1qrqwAgh3qcN.PNG)

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>
![DriveSpaceImages.png](https://files.peakd.com/file/peakd-hive/slobberchops/23wCZS44GuhWfudyAcmdUKJxpQtVJzN4Kec2FmGRotRRmN9b5dLbK7C3ixrGWzfK8Xc5q.png)
...***'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.

![DriveSpacetext.PNG](https://files.peakd.com/file/peakd-hive/slobberchops/23t88s8bAmzEoirUmgDcjp1MeHHoHnKVbv3HCTVk4MMauX5FotXe6JK8QMr2oryzKGdeg.PNG)

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.

![ProgressBar.PNG](https://files.peakd.com/file/peakd-hive/slobberchops/23t88nhbtWB3MGh7pmgmckcY91dZKsw3ouMu9pUttJMBN6q42D2qtwH1vRwqtppvo3NkZ.PNG)

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.

![RedLine.png](https://files.peakd.com/file/peakd-hive/slobberchops/BqIuXs6C-RedLine.png)

<center>
![CurieCurator.jpg](https://files.peakd.com/file/peakd-hive/slobberchops/f5zec6UG-CurieCurator.jpg)
</center>
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 767 others
πŸ‘Ž  , ,
properties (23)
authorslobberchops
permlinkapp-development-log-re-creating-the-windows-explorer-icon
categoryhive-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"]}
created2023-08-24 20:13:24
last_update2023-08-25 05:44:15
depth0
children61
last_payout2023-08-31 20:13:24
cashout_time1969-12-31 23:59:59
total_payout_value43.002 HBD
curator_payout_value42.886 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9,748
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,560,215
net_rshares219,338,788,727,785
author_curate_reward""
vote details (834)
@bozz ·
$0.11
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.
πŸ‘  
properties (23)
authorbozz
permlinkre-slobberchops-2023824t21125808z
categoryhive-163521
json_metadata{"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"}
created2023-08-25 01:12:06
last_update2023-08-25 01:12:06
depth1
children2
last_payout2023-09-01 01:12:06
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.053 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length262
author_reputation2,309,012,391,898,069
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,567,399
net_rshares272,854,136,451
author_curate_reward""
vote details (1)
@slobberchops ·
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.
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-bozz-rzxmyb
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 05:51:48
last_update2023-08-25 05:51:48
depth2
children1
last_payout2023-09-01 05:51:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length194
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,572,893
net_rshares43,468,092,673
author_curate_reward""
vote details (3)
@bozz ·
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.
properties (22)
authorbozz
permlinkre-slobberchops-rzy3v8
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 11:57:09
last_update2023-08-25 11:57:09
depth3
children0
last_payout2023-09-01 11:57:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length106
author_reputation2,309,012,391,898,069
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,578,749
net_rshares0
@chrislybear ·
$0.11
I am always fascinated when someone is able to master coding!
πŸ‘  , , ,
properties (23)
authorchrislybear
permlinkre-slobberchops-2023824t232911231z
categoryhive-163521
json_metadata{"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"}
created2023-08-24 20:29:12
last_update2023-08-24 20:29:12
depth1
children10
last_payout2023-08-31 20:29:12
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.057 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation84,679,178,293,143
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,560,982
net_rshares293,723,770,179
author_curate_reward""
vote details (4)
@slobberchops ·
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.
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-chrislybear-rzwx3h
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-24 20:33:18
last_update2023-08-24 20:33:18
depth2
children9
last_payout2023-08-31 20:33:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length179
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,561,146
net_rshares7,599,910,115
author_curate_reward""
vote details (3)
@chrislybear ·
Haha as long as it runs :D I am happy I understand html a little bit πŸ˜‚ Always wanted to learn coding. But you know… 
πŸ‘  ,
properties (23)
authorchrislybear
permlinkre-slobberchops-2023824t23408820z
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"ecency/3.0.42-mobile","format":"markdown+html"}
created2023-08-24 20:40:09
last_update2023-08-24 20:40:09
depth3
children8
last_payout2023-08-31 20:40:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length116
author_reputation84,679,178,293,143
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,561,372
net_rshares158,722,849
author_curate_reward""
vote details (2)
@devpress ·
$0.04
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.
πŸ‘  
properties (23)
authordevpress
permlinkrzzm11
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2023-08-26 07:27:00
last_update2023-08-26 07:27:00
depth1
children1
last_payout2023-09-02 07:27:00
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length222
author_reputation55,061,325,071,240
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,604,538
net_rshares108,470,015,722
author_curate_reward""
vote details (1)
@slobberchops ·
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.
properties (22)
authorslobberchops
permlinkre-devpress-rzzmci
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-26 07:33:54
last_update2023-08-26 07:33:54
depth2
children0
last_payout2023-09-02 07:33:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length174
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,604,634
net_rshares0
@discovery-it ·
<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>
πŸ‘Ž  
properties (23)
authordiscovery-it
permlinkre-slobberchops-87qpock0g9
categoryhive-163521
json_metadata"{"app": "beem/0.24.26"}"
created2023-08-24 21:19:57
last_update2023-08-24 21:19:57
depth1
children0
last_payout2023-08-31 21:19:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length773
author_reputation68,408,256,059,035
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,563,181
net_rshares-34,391,283,305
author_curate_reward""
vote details (1)
@grindle ·
$0.10
Just do not go handling any vibrant purple dildos
πŸ‘  
properties (23)
authorgrindle
permlinkre-slobberchops-rzzknr
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-26 06:57:27
last_update2023-08-26 06:57:27
depth1
children4
last_payout2023-09-02 06:57:27
cashout_time1969-12-31 23:59:59
total_payout_value0.051 HBD
curator_payout_value0.052 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation1,039,273,852,533,056
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,604,083
net_rshares270,711,591,247
author_curate_reward""
vote details (1)
@slobberchops ·
$0.14
I hope you didn't, I kept my distance. With the way that thing moves around, it's kind of alive!
πŸ‘  
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-grindle-rzzktl
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-26 07:01:00
last_update2023-08-26 07:01:00
depth2
children3
last_payout2023-09-02 07:01:00
cashout_time1969-12-31 23:59:59
total_payout_value0.070 HBD
curator_payout_value0.070 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,604,123
net_rshares363,941,407,649
author_curate_reward""
vote details (3)
@grindle ·
$0.04
yeuch!
I still havent been preston, will get round to it in a few weeks its a 4 hour round trip!
πŸ‘  
properties (23)
authorgrindle
permlinkre-slobberchops-s01hak
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-27 07:39:57
last_update2023-08-27 07:39:57
depth3
children2
last_payout2023-09-03 07:39:57
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length96
author_reputation1,039,273,852,533,056
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,632,107
net_rshares109,648,705,869
author_curate_reward""
vote details (1)
@haveyoursay ·
$0.02
Didn't knew you are also into this technical stuff 
πŸ‘  
properties (23)
authorhaveyoursay
permlinkre-slobberchops-2023825t1026297z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.36-vision","format":"markdown+html"}
created2023-08-25 05:26:27
last_update2023-08-25 05:26:27
depth1
children0
last_payout2023-09-01 05:26:27
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation75,734,314,275,754
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,572,039
net_rshares54,428,832,348
author_curate_reward""
vote details (1)
@itsmeelii ·
$0.04
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.
πŸ‘  
properties (23)
authoritsmeelii
permlinkre-slobberchops-rzydv7
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 15:33:09
last_update2023-08-25 15:33:09
depth1
children0
last_payout2023-09-01 15:33:09
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length126
author_reputation11,796,188,823,231
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,583,323
net_rshares108,259,438,494
author_curate_reward""
vote details (1)
@jakiro12 ·
Nice work i dont know nothing about VB but it is llok awesome :D
πŸ‘  
πŸ‘Ž  
properties (23)
authorjakiro12
permlinkrzy0zl
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2023-08-25 10:55:00
last_update2023-08-25 10:55:00
depth1
children0
last_payout2023-09-01 10:55:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation39,044,812,735,874
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,577,517
net_rshares43,505,157,603
author_curate_reward""
vote details (2)
@jlinaresp ·
$0.10
Haaaa haaaa haaaa :))... Impossible not to piss laughing reading this, my dear friend and top author!...

!discovery 40
!VSC
!PIZZA
πŸ‘  , ,
properties (23)
authorjlinaresp
permlinkre-slobberchops-rzwz97
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-24 21:19:51
last_update2023-08-24 21:19:51
depth1
children2
last_payout2023-08-31 21:19:51
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.049 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length131
author_reputation982,159,282,959,412
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,563,177
net_rshares254,254,067,074
author_curate_reward""
vote details (3)
@slobberchops ·
What you mean.., this is a deadly serious article! πŸ˜ƒ
πŸ‘  , ,
properties (23)
authorslobberchops
permlinkre-jlinaresp-rzwzot
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-24 21:29:18
last_update2023-08-24 21:29:18
depth2
children0
last_payout2023-08-31 21:29:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,563,378
net_rshares5,659,270,262
author_curate_reward""
vote details (3)
@visualbot ·
<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>
πŸ‘Ž  
properties (23)
authorvisualbot
permlinkre-jlinaresp-re-slobberchops-rzwz97-20230824t211959028z
categoryhive-163521
json_metadata{"app":"hive-bot/0.6.3"}
created2023-08-24 21:20:00
last_update2023-08-24 21:20:00
depth2
children0
last_payout2023-08-31 21:20:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,121
author_reputation734,995,980,039
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,563,183
net_rshares-31,032,377,142
author_curate_reward""
vote details (1)
@kryptik ·
$0.04
I'm here for the venereal disease.

Also, fuck Windows.
πŸ‘  
properties (23)
authorkryptik
permlinkre-slobberchops-rzxoau
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 06:20:57
last_update2023-08-25 06:20:57
depth1
children3
last_payout2023-09-01 06:20:57
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation38,181,454,492,763
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,573,310
net_rshares110,690,548,644
author_curate_reward""
vote details (1)
@slobberchops ·
>I'm here for the venereal disease.

Now we're talking!
properties (22)
authorslobberchops
permlinkre-kryptik-rzxs56
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 07:43:54
last_update2023-08-25 07:43:54
depth2
children2
last_payout2023-09-01 07:43:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,574,699
net_rshares0
@kryptik ·
INB4 VD. What all languages do you use man?
properties (22)
authorkryptik
permlinkre-slobberchops-rzylw9
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 18:26:42
last_update2023-08-25 18:26:42
depth3
children1
last_payout2023-09-01 18:26:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation38,181,454,492,763
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,587,731
net_rshares0
@mayvileros ·
<center>![img_0.6350576544071017.jpg](https://images.ecency.com/DQmNcsrXFnkeuXpmX3T3WUzToZTtzyFoZZk4VieEEQqKSyg/img_0.6350576544071017.jpg)</center>
# <center>Β‘Felicidades!</center>
#### <center>[Únete a nuestro Discord para compartir, aprender mΓ‘s y promocionar tus publicaciones πŸ₯³](https://discord.gg/CRJy7ce)</center>
πŸ‘Ž  
properties (23)
authormayvileros
permlinkre-slobberchops-rzwzzu
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-24 21:35:54
last_update2023-08-24 21:35:54
depth1
children0
last_payout2023-08-31 21:35:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length320
author_reputation125,939,670,656,930
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,563,542
net_rshares-40,638,635,639
author_curate_reward""
vote details (1)
@mdasein ·
$0.04
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
πŸ‘  
properties (23)
authormdasein
permlinkre-slobberchops-2023825t1734494z
categoryhive-163521
json_metadata{"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"}
created2023-08-25 09:03:06
last_update2023-08-25 09:03:06
depth1
children1
last_payout2023-09-01 09:03:06
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length163
author_reputation14,966,838,221,313
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,575,736
net_rshares101,119,169,133
author_curate_reward""
vote details (1)
@pgm-curator ·
<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! 

![image.png](https://files.peakd.com/file/peakd-hive/zottone444/23t7AyKqAfdxKEJPQrpePMW15BCPhbyrf5VoHWxhBFcEcPLjDUVVQAh9ZAopbmoJDekS6.png)
Discord [![image.png](https://files.peakd.com/file/peakd-hive/hive-135941/23wfr3mtLS9ddSpifBvh7mwLx1rN3eoaSvbwUxTngsNR1GQ8EiZTrC9P9RwZxHCCfK8e5.png)](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>

***
properties (22)
authorpgm-curator
permlinkpgm-curatormdasein1692954202587
categoryhive-163521
json_metadata{"tags":[],"app":"pgm/0.1","format":"markdown+html"}
created2023-08-25 09:03:24
last_update2023-08-25 09:03:24
depth2
children0
last_payout2023-09-01 09:03:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,917
author_reputation3,409,490,822,394
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,575,740
net_rshares0
@meesterboom ·
$0.11
You mad developer bastard, how dare you come here with your dodger blue this and your decimal place that!! 🀣
πŸ‘  , ,
properties (23)
authormeesterboom
permlinkre-slobberchops-rzx16m
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-24 22:01:39
last_update2023-08-24 22:01:39
depth1
children2
last_payout2023-08-31 22:01:39
cashout_time1969-12-31 23:59:59
total_payout_value0.052 HBD
curator_payout_value0.053 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation1,798,291,063,130,460
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,564,133
net_rshares273,200,577,635
author_curate_reward""
vote details (3)
@slobberchops ·
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. πŸ˜€
properties (22)
authorslobberchops
permlinkre-meesterboom-rzxmv2
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 05:49:51
last_update2023-08-25 05:49:51
depth2
children1
last_payout2023-09-01 05:49:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,572,818
net_rshares0
@meesterboom ·
$0.04
Lol, I was going to but try not to be too predictable :OD
πŸ‘  
properties (23)
authormeesterboom
permlinkre-slobberchops-rzy30u
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 11:38:57
last_update2023-08-25 11:38:57
depth3
children0
last_payout2023-09-01 11:38:57
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation1,798,291,063,130,460
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,578,409
net_rshares108,997,908,619
author_curate_reward""
vote details (1)
@mfontom ·
πŸ˜ƒ the caution almost scared me from reading the post.
It's innovative. I like it. Good work
properties (22)
authormfontom
permlinkrzxwt0
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2023-08-25 09:24:39
last_update2023-08-25 09:24:39
depth1
children0
last_payout2023-09-01 09:24:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length91
author_reputation62,271,293,459,921
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,576,178
net_rshares0
@michaelklinejr ·
$0.11
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.
πŸ‘  ,
properties (23)
authormichaelklinejr
permlinkrzyilv
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2023-08-25 17:16:12
last_update2023-08-25 17:16:12
depth1
children1
last_payout2023-09-01 17:16:12
cashout_time1969-12-31 23:59:59
total_payout_value0.056 HBD
curator_payout_value0.058 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length470
author_reputation4,227,486,074,309
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries
0.
accountclicktrackprofit
weight300
1.
accounthiveonboard
weight100
2.
accountocdb
weight100
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,585,784
net_rshares304,425,383,069
author_curate_reward""
vote details (2)
@slobberchops ·
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.
properties (22)
authorslobberchops
permlinkre-michaelklinejr-rzzkpe
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-26 06:58:27
last_update2023-08-26 06:58:27
depth2
children0
last_payout2023-09-02 06:58:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,604,094
net_rshares0
@pizzabot ·
<center>PIZZA!


$PIZZA slices delivered:
@jlinaresp<sub>(6/10)</sub> tipped @slobberchops 


</center>
πŸ‘Ž  
properties (23)
authorpizzabot
permlinkre-app-development-log-re-creating-the-windows-explorer-icon-20230824t212015z
categoryhive-163521
json_metadata"{"app": "pizzabot"}"
created2023-08-24 21:20:15
last_update2023-08-24 21:20:15
depth1
children0
last_payout2023-08-31 21:20:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation7,694,783,064,889
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,563,189
net_rshares-37,385,250,492
author_curate_reward""
vote details (1)
@rafzat ·
$0.02
Coding is not something easy so when I see someone who can do it, I always hail them...
Keep it up!
πŸ‘  
properties (23)
authorrafzat
permlinkre-slobberchops-2023825t31314798z
categoryhive-163521
json_metadata{"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"}
created2023-08-25 02:13:18
last_update2023-08-25 02:13:18
depth1
children0
last_payout2023-09-01 02:13:18
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.010 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length99
author_reputation183,560,271,702,716
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,568,449
net_rshares54,477,065,729
author_curate_reward""
vote details (1)
@stav ·
$0.06
I absolutely 100% don't have the mindset πŸ˜‚
πŸ‘  
properties (23)
authorstav
permlinkre-slobberchops-s01rc6
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-27 11:16:54
last_update2023-08-27 11:16:54
depth1
children2
last_payout2023-09-03 11:16:54
cashout_time1969-12-31 23:59:59
total_payout_value0.028 HBD
curator_payout_value0.028 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation52,141,742,331,876
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,635,547
net_rshares152,547,925,739
author_curate_reward""
vote details (1)
@slobberchops ·
$0.03
It's very satisfying knowing you can do this stuff.
πŸ‘  
properties (23)
authorslobberchops
permlinkre-stav-s01ri9
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-27 11:20:33
last_update2023-08-27 11:20:33
depth2
children1
last_payout2023-09-03 11:20:33
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,635,601
net_rshares93,236,443,426
author_curate_reward""
vote details (1)
@stav ·
I've been trying to get my head around the world of PowerAutomate and PowerBI with M, DAX and Powerfx.

....still shit.
properties (22)
authorstav
permlinkre-slobberchops-s01rph
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-27 11:24:54
last_update2023-08-27 11:24:54
depth3
children0
last_payout2023-09-03 11:24:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length119
author_reputation52,141,742,331,876
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,635,655
net_rshares0
@steevc ·
$0.10
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.
πŸ‘  , ,
πŸ‘Ž  ,
properties (23)
authorsteevc
permlinkre-slobberchops-2023824t174918751z
categoryhive-163521
json_metadata{"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"}
created2023-08-24 21:49:24
last_update2023-08-24 21:49:24
depth1
children1
last_payout2023-08-31 21:49:24
cashout_time1969-12-31 23:59:59
total_payout_value0.048 HBD
curator_payout_value0.048 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length278
author_reputation1,397,860,550,772,644
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,563,883
net_rshares246,390,160,700
author_curate_reward""
vote details (5)
@slobberchops ·
$0.04
>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).
πŸ‘  , , , , , ,
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-steevc-rzxmsw
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 05:48:33
last_update2023-08-25 05:48:33
depth2
children0
last_payout2023-09-01 05:48:33
cashout_time1969-12-31 23:59:59
total_payout_value0.018 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length524
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,572,770
net_rshares97,121,045,215
author_curate_reward""
vote details (9)
@theguruasia ·
$0.04
I don't know VB, but I do C# & etc. Anyway nice to see this!

$WINE
πŸ‘  
properties (23)
authortheguruasia
permlinkre-slobberchops-rzxvn3
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 08:59:30
last_update2023-08-25 08:59:30
depth1
children1
last_payout2023-09-01 08:59:30
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.019 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation72,733,312,708,316
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,575,667
net_rshares101,157,193,999
author_curate_reward""
vote details (1)
@slobberchops ·
Wish I knew C#, I use a dated language out of pure laziness.
πŸ‘  
properties (23)
authorslobberchops
permlinkre-theguruasia-rzy1i7
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 11:06:06
last_update2023-08-25 11:06:06
depth2
children0
last_payout2023-09-01 11:06:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length60
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,577,737
net_rshares7,127,046,239
author_curate_reward""
vote details (1)
@timix648 ·
$0.10
>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!!
πŸ‘  , ,
properties (23)
authortimix648
permlinkre-slobberchops-2023824t22141635z
categoryhive-163521
json_metadata{"tags":["python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.36-vision","format":"markdown+html"}
created2023-08-24 21:14:18
last_update2023-08-24 21:14:18
depth1
children2
last_payout2023-08-31 21:14:18
cashout_time1969-12-31 23:59:59
total_payout_value0.049 HBD
curator_payout_value0.049 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length453
author_reputation25,155,469,453,344
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,563,017
net_rshares254,060,871,412
author_curate_reward""
vote details (3)
@slobberchops ·
> 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.
πŸ‘  ,
properties (23)
authorslobberchops
permlinkre-timix648-rzwzrc
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-24 21:30:48
last_update2023-08-24 21:30:48
depth2
children1
last_payout2023-08-31 21:30:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length220
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,563,427
net_rshares155,761,605
author_curate_reward""
vote details (2)
@timix648 ·
Yep very true πŸ‘
πŸ‘Ž  
properties (23)
authortimix648
permlinkre-slobberchops-rzx59y
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-24 23:30:03
last_update2023-08-24 23:30:03
depth3
children0
last_payout2023-08-31 23:30:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation25,155,469,453,344
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,565,645
net_rshares-7,555,454,092
author_curate_reward""
vote details (1)
@unschool ·
$0.11
As a senior developer, my brain hurts not seeing more functions. But as a human I enjoyed your post a lot 😁
πŸ‘  
properties (23)
authorunschool
permlinkre-slobberchops-rzxeh8
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 02:48:45
last_update2023-08-25 02:48:45
depth1
children4
last_payout2023-09-01 02:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.053 HBD
curator_payout_value0.053 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation4,717,970,847,118
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,569,128
net_rshares272,612,728,137
author_curate_reward""
vote details (1)
@slobberchops ·
$0.03
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.
πŸ‘  , ,
πŸ‘Ž  ,
properties (23)
authorslobberchops
permlinkre-unschool-rzxn1s
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 05:53:54
last_update2023-08-25 05:53:54
depth2
children3
last_payout2023-09-01 05:53:54
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length207
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,572,942
net_rshares89,271,237,465
author_curate_reward""
vote details (5)
@unschool ·
$0.04
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.
πŸ‘  
properties (23)
authorunschool
permlinkre-slobberchops-rzy5m5
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 12:34:54
last_update2023-08-25 12:34:54
depth3
children2
last_payout2023-09-01 12:34:54
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length268
author_reputation4,717,970,847,118
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,579,495
net_rshares108,216,586,178
author_curate_reward""
vote details (1)
@verhp11 ·
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 !!  :)
properties (22)
authorverhp11
permlinks062p8
categoryhive-163521
json_metadata{"app":"hiveblog/0.1"}
created2023-08-29 19:12:42
last_update2023-08-29 19:12:42
depth1
children0
last_payout2023-09-05 19:12:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length160
author_reputation101,983,719,324,115
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,701,750
net_rshares0
@xplosive · (edited)
$0.04
> 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).
πŸ‘  ,
properties (23)
authorxplosive
permlinkre-slobberchops-2023825t1135214z
categoryhive-163521
json_metadata{"tags":["hive-163521","python","stemgeeks","leofinance","proofofbrain","palnet","creativecoin","neoxian","vyb","ctp"],"app":"ecency/3.0.42-mobile","format":"markdown+html"}
created2023-08-25 09:03:54
last_update2023-08-25 09:04:09
depth1
children1
last_payout2023-09-01 09:03:54
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length806
author_reputation211,264,977,506,618
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,575,746
net_rshares107,199,837,317
author_curate_reward""
vote details (2)
@slobberchops ·
> 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.
πŸ‘  
properties (23)
authorslobberchops
permlinkre-xplosive-rzy1gx
categoryhive-163521
json_metadata{"tags":["hive-163521"],"app":"peakd/2023.7.1"}
created2023-08-25 11:05:21
last_update2023-08-25 11:05:21
depth2
children0
last_payout2023-09-01 11:05:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length336
author_reputation2,453,291,468,472,106
root_title"App Development Log: Re-Creating The Windows Explorer Icon"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id126,577,716
net_rshares30,328,081,064
author_curate_reward""
vote details (1)