Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Search - "basic"
-
I was a freshman in highschool when I encountered the book entitled "Teach Yourself Visual Basic 6 in 21 Days"
I loved that book so much that it took me 4 years to finish it.9 -
Sir, please write a simple program, just a very basic one.
me: Writes Hello World in Python
Didnt get the job.14 -
In case you ever want to hack into a computer with 14 lines of code only. This algorithm is just genius.25
-
Don't know what is worst: that they offer to teach Visual Basic on 2018, or that they "invented" Visual Java.
Seriously?16 -
Got a graphing calculator in high school for math class. Needed to memorize a bunch of formulas, saw you could program them in the calculator with BASIC. Sold the program to other students, profit.6
-
When my teacher from a basic web application course last year didn't know that HTML5 had been released.1
-
So i was teaching basic html and css to my cousin's high school class. I am not good at coming up with examples.23
-
I started coding in 1994 making .BAT menus for my DOS games. Used HELP.EXE to find commands I could use. Then I figured out how to modify and run GORILLA.BAS (using Q-Basic). Man, when I realized that all BASIC commands were in the OS documentation as well, that was the Red Pill! Just started to copy commands and blocks from the Gorillas game into a new program, read the doc, modify, run and learn. Btw, the first BASIC command I played with was "PLAY" (for music).
At that time I was 10 and there was no Stackoverflow, no Youtube, no tutorials, no Google... no easy path to follow down the rabbit hole.
Ref: https://en.wikipedia.org/wiki/...10 -
Been using the same language for 5 years... still Googles basic functions to remember the arguments.12
-
Holy shit i've found my father's old books back from the 80's for basic and comodore 64. He learnt from thoose and used to code a lot of games and office softwares on that old beast. 😮1
-
My internship so far :
-SVN
-Visual Basic
-A company proprietary framework that I won't ever use again
-Windows everywhere
It kinda fails my technical expectations. But what's great is that everyone there is very nice and relaxed, Nerf gun fights at 4pm and playing cards after lunch :D3 -
Apparently some universities think it's acceptable to take grads' money, teach them a few months of Visual Basic and tell them they're ready for employment in 2019.1
-
Being on devRant genuinely scares me. I mean, I know C#, Entity Framework, basic SQL, basic HTML (who doesn't?) and some Angular, but most people here know so,so much more. Maker me feel quite dumb :/22
-
I started early in my childhood days, nobody had cellphone or internet here, my phone number was 3 digits long and my home country started to recover from 44 years of communism.
My first dev project was probably to copy game from newspaper to Atari 1300XE
Article listing was around 10 pages long and if you made mistake program didn’t run.
It took me a while I can’t remember how long but probably whole day and I was finally able to play it.
I don’t remember what was game about but later on I learned some BASIC from book and was able to color the screen and stuff like that.
I was about 6 years old.
I also remember that Atari computer had tape recorder where you put cassette to load game.
Some more complicated games were loading more then hour and you need to walk very carefully around or your walk can cause error and operation would fail.
Besides that there were national radio auditions about Atari where at the end they played code sound wave so you can record it on your cassette and then play software from radio on your Atari.
I never managed to do it cause I was living near military airport and pilots were practicing landing and starting above my home causing radio signal noise and breaking my software recoding.
I can probably say that highly accelerating plane could cause game loading problem and it’s not a joke.8 -
Dad?.. what is a super hero?
- it's an hero amongst heroes. oftentimes ordinary heroes inherit traits from super.
It's basic inheritance, son. -
Mom bought me this mousepad... Written in visual basic...
What's worse is that the code has five lines that have been commented out5 -
"Wanted: Dangerous PHP Developer"
I edit on live during peak hours with no backups using basic Notepad over an unencrypted network. That dangerous enough?4 -
Just switched from Kali to Parrot OS. A very nice pentesting OS. Neat UI. ✌️
Great performance on a basic laptop.7 -
I could bitch about XSLT again, as that was certainly painful, but that’s less about learning a skill and more about understanding someone else’s mental diarrhea, so let me pick something else.
My most painful learning experience was probably pointers, but not pointers in the usual sense of `char *ptr` in C and how they’re totally confusing at first. I mean, it was that too, but in addition it was how I had absolutely none of the background needed to understand them, not having any learning material (nor guidance), nor even a typical compiler to tell me what i was doing wrong — and on top of all of that, only being able to run code on a device that would crash/halt/freak out whenever i made a mistake. It was an absolute nightmare.
Here’s the story:
Someone gave me the game RACE for my TI-83 calculator, but it turned out to be an unlocked version, which means I could edit it and see the code. I discovered this later on by accident while trying to play it during class, and when I looked at it, all I saw was incomprehensible garbage. I closed it, and the game no longer worked. Looking back I must have changed something, but then I thought it was just magic. It took me a long time to get curious enough to look at it again.
But in the meantime, I ended up played with these “programs” a little, and made some really simple ones, and later some somewhat complex ones. So the next time I opened RACE again I kind of understood what it was doing.
Moving on, I spent a year learning TI-Basic, and eventually reached the limit of what it could do. Along the way, I learned that all of the really amazing games/utilities that were incredibly fast, had greyscale graphics, lowercase text, no runtime indicator, etc. were written in “Assembly,” so naturally I wanted to use that, too.
I had no idea what it was, but it was the obvious next step for me, so I started teaching myself. It was z80 Assembly, and there was practically no documents, resources, nothing helpful online.
I found the specs, and a few terrible docs and other sources, but with only one year of programming experience, I didn’t really understand what they were telling me. This was before stackoverflow, etc., too, so what little help I found was mostly from forum posts, IRC (mostly got ignored or made fun of), and reading other people’s source when I could find it. And usually that was less than clear.
And here’s where we dive into the specifics. Starting with so little experience, and in TI-Basic of all things, meant I had zero understanding of pointers, memory and addresses, the stack, heap, data structures, interrupts, clocks, etc. I had mastered everything TI-Basic offered, which astoundingly included arrays and matrices (six of each), but it hid everything else except basic logic and flow control. (No, there weren’t even functions; it has labels and goto.) It has 27 numeric variables (A-Z and theta, can store either float or complex numbers), 8 Lists (numeric arrays), 6 matricies (2d numeric arrays), 10 strings, and a few other things like “equations” and literal bitmap pictures.
Soo… I went from knowing only that to learning pointers. And pointer math. And data structures. And pointers to pointers, and the stack, and function calls, and all that goodness. And remember, I was learning and writing all of this in plain Assembly, in notepad (or on paper at school), not in C or C++ with a teacher, a textbook, SO, and an intelligent compiler with its incredibly helpful type checking and warnings. Just raw trial and error. I learned what I could from whatever cryptic sources I could find (and understand) online, and applied it.
But actually using what I learned? If a pointer was wrong, it resulted in unexpected behavior, memory corruption, freezes, etc. I didn’t have a debugger, an emulator, etc. I had notepad, the barebones compiler, and my calculator.
Also, iterating meant changing my code, recompiling, factory resetting my calculator (removing the battery for 30+ sec) because bugs usually froze it or corrupted something, then transferring the new program over, and finally running it. It was soo slowwwww. But I made steady progress.
Painful learning experience? Check.
Pointer hell? Absolutely.4 -
interviewer: name something basic
me: your crappy ass bootstrap php5.4 website you call a “cloud data infrastructure”
interviewer: oh that’s very basic indeed7 -
Behold, my 34 year old little baby (more like big daddy), the Acorn Electron. Still running fine but god is that BASIC awful.7
-
*Me trying to store a game in a CD ~15 years ago*
1. Burning desktop link of the game into it.
2. Burning the .exe file only ...
3. Moving whole game folder into a CD ...
4. Installing something called DirectX. I remember, it should be in one of my CDs.
5. Playing the game.3 -
Alright! so it's not much but my game engine is slowly gaining actually useful features, just finished implementing a basic sprite class that now renders basic sprites!
It may not be much but kind of proud at how well I have been able to just pick up Vala from scratch and start building something!12 -
>first day at programming school
>we have to bring our own laptops
>teacher asks who is using windows
>every one raised their hands, except me...
>fuckme.jpeg
>teacher says: sorry, but we don’t support mac/linux
>twitchy_eye.tar.gz
>my inner voice: then why the fuck do we have to bring our own laptops, if you don’t support all fucking systems...
>teacher: so, do you guys ever heard of Visual Basic?
My point is, that a PROGRAMMING school should support all platforms if they consists that we have to bring our own machines to class.8 -
We just got an intern in our company a few days ago. She is supposed to be a php developer, not good, but at least something okay. I find major errors, that even a newbie should regocnize.
It's going to be a long internship, if I have to help her all the time with basic stuff.12 -
The day I had to Translate this javascript:
fetch(url).then(r => r.json()).then(r => r.data)
To visual basic6 -
We all have that one friend who says that he is a computer genius because he built his PC himself but then he doesn't know the difference between bits and bytes.9
-
DatePickers should be a W3C standard handled by the browser. We shouldn't rely on JavaScript plugins to do this basic input stuff8
-
Didn't had to fix anything (so far). But took my dev laptop to show all the projects I've been working on to the dad of my girlfriend and he showed me his projects.
He's not mainly a dev, but an electrical ingenieur. He designs his own pcb boards (with 8bit processors on them, as "that's more than enough power to do almost anything!") and then programs that stuff with basic (he writes his own firmware for it).
He also creates desktop application to get data off the devices using Delphi.
Love that guy and have a shittln of respect for him!1 -
Was having an internship interview, and the guy starts laughing while reading my resume and says:
"don't put visual basic on your resume if you don't want to work with it"
I proceeded to remove it ASAP.1 -
10 PRINT “Hallo”
20 GOTO 10
1983 : my very first program and also very first contact with a computer - a VC649 -
I've learned A TON creating my own very basic PHP framework. I'm using it for basic personal small projects (login system, simple functionality) and I'm loving it. The customization makes specific repetitive tasks so much easier.
Don't get it twisted, I use Laravel and Symfony much more (and Javascript) but I would definitely recommend anyone to do it just for the learning experience.9 -
It seems like the project I'm tasked to tweak last edited when I was 4 years old... 😏 I doubt is there any dinasour alive who used that generation's technology. :P4
-
Status update: Almost two months ago I struggled alot with even basic math.
Now I've gotten way better in not just basic stuff, but also college level of math.
That's it. Bye.5 -
me on my cover letter: i'm an experienced programmer
me irl: knows exactly two languages, has to google how to write basic methods2 -
When I was about 10 I decided to set up an imaginary business selling homemade stationary (notepads made of scrap paper!). It was a great way to entertain my younger sister making them whilst I programmed a full POS and inventory management system in BASIC.
Needless to say, my sister got bored of the idea long before I did. 20 years later I still use the same name as our imaginary business for any freelance work! -
Can we all just have a moment of silence for BASIC...
Got caught in a YouTube spiral watching nostalgia need and never realised how big and important BASIC was when it came to home PC's (I'm 21 so have no actual experience with said PC's)...
Also that leads me to the question as to why BASIC isn't still used?
It's actually a really legible language ¯\_(ツ)_/¯5 -
Buggered by Xcode AGAIN. The inability of the debugger to do basic debugging relinquishes it to the status of "bugger", relieving it of its "de" title.
Can't show some basic expressions... copied and pasted from the running code
I mean seriously, what do you do if the debugger has more bugs than your project you are trying to analyze?2 -
When someone tells you how to do a job but they cant even get to your basic level to even begin with1
-
At school I was excited when our teacher said he will teach us programming with VS.
I was expecting C# to show my skills but the he showed us a big book about Visual Basic with VS Express 2010.
I was literally dying.5 -
Is there an alternative to stack overflow by any chance?
Have a basic question but can't be bothered dealing with the toxic community regarding basic questions -.-13 -
Dude this ous the English I'm taught in my last year of school. I spend my time on the phone and I'm still the best in class xD5
-
Been asked if we can make a few "minor tweaks" to a Visual Basic 6.0 application last worked on in 2013.
I haven't coded in Visual Basic in approximately 20 years, the project can't be opened in Visual Studio 2012 or above and the code I've seen is a dumpster fire.
Please send help.4 -
Correcting basic programming exam, see this part of an answer:
---
for round in all_days:
if round+1 < round:
---2 -
! ! ! WARNING: BAD PUNS ! ! !
Float: Bool, you're so basic.
Bool: Why are you boolean me?
...
I'll see myself out6 -
Trying to teach my brother basic python and JavaScript but that little shit insists on using scratch instead! 😒1
-
To all the JavaScript haters try to use gmail in basic HTML mode you will know why JavaScript is awesome6
-
Worst mistake ever...
Using PHP to write a server-side utility instead of Python. (Or anything else really, even BASIC...) -
CSS + Noob + Import html
Hey guys
Need some help here.
Is it possible to include an HTML file inside another HTML file without an iframe? I wanted to create the structure of the page in one file and include it inside another HTML (for example, have one index that dynamically includes an HTML file in a section, called by the menu OR having the menu, top and footer in one or two files and include them in all the other pages...)42 -
!rant
I just stumbled upon a first game I ever programmed back in highschool. Oh the nostalgia and the urge to cringe. Apparently I thought programing a game in visual basic and leaving an enormus memory leak was a good idea. Well I guess you have to start somewhere.3 -
Pretty much your life when you have the misfortune of debugging labview 'code' written by an electrical engineer4
-
Learned basic Java syntax and created an Android app by reading a lot of posts on stackoverflow
Also a lot of trial and error... -
When your boss wants to use the client's infos about it's clients without anyone's permission, and doesn't understand why it's against basic privacy laws
-
1990, I was about 11. my dad had old computer magazines that contained PRINTED basic games. I used to type those to the gwbasic console on my PC, play some, and then mod them for my younger brother's amusement.
-
Sometimes I worry about the impact AI will have on software development jobs in a future.
... then I see things like this and remember why humans don't deserve nice things.3 -
"I don't need these auto generated comments by the template"
5 minutes later...
* Searches how to human perform basic human actions * -
Sometimes I Google really basic stuff to find stackoverflow answers with code, just because I can't be bothered to type it out myself3
-
It's going to be a long rant here and probably my fist rant ! And yes I am pissed up with a community growing in dev world .
There are so called framework experts who are so good that they can spin up a nodejs server with express and mongodb .
So to the people who bash on php , who bash down MySQL for no fuckig reason other than they have heard these are not so cool.fuck yourself incompetent piece of crap!!! I can hear all day about how algorithms and datsructure are not important form these people.fuck you because if you don't know /understand /want to understand the basics of computing how the fuck can your brain be trusted with anyting serious??If you can't write down proofs of basic / standard algorithms and till bash down on people who do those please fuck you because those are the people indirectly responsible for your Job so that u can work on fancy frameworks and cool IDE's .
Instead of whining down dedicate some time to your maturity and knowledge because that what we devs are all about.we like solving problems right?.
I repeat if you are anything like stating up it career in mid 20s maybe.leave everything if you can .Forget all fucking frameworks and technologies start with basics of computing, right at instruction level using assembly .Then move to a higher language when u know and reason about what your CPU is actually doing.
If you can't do that and keep on crying and bashing down things wihout proper explanations fuck yourself with a cactus .5 -
"Specs are out of date at time of writing. Basic premise of how this works: {link}"
and link goes to a 4041 -
While taking the basic JS interview:
Me: what are the different data types in JavaScript
Candidate: We have a 'var' keyword
Me: :|2 -
Back in grammar school we started programming in TI-Basic on a TI89 Titanium as it was part of math class (calculus and geometry). I didn't really understand much because the teacher thought it was a great idea to start with recursively calculating GCD (and we were in a sort of "linguist profile", nobody had ever touched a line of code in their lives before). I still liked it though and by some coincidence I got an old Win95 compaq notebook to play with from a friend.
I started playing around with the CMD prompt and batch files and could apply some of the things I had learned on the TI, like GOTO or If statements. I still didn't know what I was doing of course, and so it happened that I used the > file pipe when trying to compare two values. Suddenly there was a file with some code fragments and I started to get what I had done. I put the file pipe into an endless GOTO loop and was amused how those few lines filled up the whole desktop with nonsense files. I went on to refine this a little so I could control it with another file that acted as a kill switch when present. Over the next weeks I played some more with it and made it write out and start another batch file that would check whether the original script was still there and recreate it if not.
That notebook was so large and heavy I could not bring it to school, so I wrote all code by hand on paper and typed it in when I got home, that way I could still code in class when I was bored and no one would notice.
So my first ever "program" that I wrote myself was some lousy malware.5 -
!Rant
A couple hours ago I had an "interview".
It was like that:
- Show me your SQL skills, select from 2 tables, aliases, groups
-- Passed
- Ok, Now you have to learn Visual Basic .NET for getting this job, your first task is to create a simple calculator
My mind just exploded. Visual Basic?!? Noooo.... Really? I don't want to learn that Microsoft shit.... But it's good paid work so I'm trying it right now.
To be honest? I'm suprised, it's not that bad and I think that problems are not in languages, it's about cooperation, flexibility and enthusiasm to solve problems.
So don't judge programming languages and solve problems with them.
Still hate pascal and my English🤔
P.S.: Boss is amazing, smart....2 -
Just looking at the basic syntax of Kotlin gives me half a chubby. hahaha
It is just so damn simple and sexy!
https://kotlinlang.org/docs/...2 -
When I was about 10, I used to read these magazines with code listings for programs, and the only things I really understood were these text adventures that I imagined to be of Zork-like quality (gasp!). In reality, it was more like the choose-your-own adventure books of the time (which were actually pretty cool, and had pretty tight memory management). At one time, on a vacation somewhere in the eighties, I got tired of playing in the river with my friends and instead opted to continue writing lines of BASIC in a little paper notebook, inside my parents' car (at 34 degrees C), trying to perfect a storyline about my little brother and his pet dog he got for his most recent birthday, fighting the cat empire etcetera etcetera. Weird looks, good times.
-
Complaining about people not understanding basic python syntax but I also don't know even know how to use fucking scratch.2
-
When HR tries to appoint tasks to developers,this happens.
P.S. The repo has basic hello world Android app files. -
Xamarin on windows visual studio
2 days to install
2 days to build the basic project on both Android and ios8 -
The mobile web browser is 80% done. I've pretty much added all the basic functions. I'm open for suggestions as usual.4
-
Sometimes I want to show off some fancy code to non-programmers. Then I remember basic code would do the same.1
-
It's obvious that a lot of product managers need to take basic stats classes. Your metrics are pointless and lack direction. 🖕2
-
Why @JS96 made devRant UWP in Visual Basic .NET?
Just kidding, but seriously: „when and how did you started your dev carrier?”4 -
Got bored and started work on a basic 2D game engine using vala and GTK to provide basic windows and UI...
If I can get a sprite moving on screen with at least 8 axis of movement I'll consider it a job done and throw her on GitHub and probably never touch again 👍8 -
Oh BASIC night, the LEDs are brightly glinting;
It is the night of the dear GOSUB’s birth!
Long lay the world in sin and error printing,
Till you appeared and the RAM felt its worth.
Shiver of fear, line numbers do inspire,
For yonder breaks a mostly harmless GOTO.
Fall on your bits, O hear the Visual voices!
O BASIC divine, O BASIC where GOTO was born!
O BASIC, O Holy BASIC, O BASIC, you’re mine!
Some want to say, “GOTO is harmful always,”
But what of them, in their post-modern world.
We PRINT the truth, in the line-numbered goodness,
But Dijkstra appeared, and the faith, it was lost.
A thrill of hope, when .NET BASIC announces,
But Visual BASIC, what kind of thing are you?
Fall on your GUI, O see the old line numbers!
Behold BASICA, O BASIC when DOS was born!
O numbers, O lines, spaghetti divine!
Source: http://changelog.complete.org/archi...2 -
@Gilles had a similar rant and reminded me of a story...
As a kid I learned QBasic. Moved to VB5 and later VB6. Because of this 'knowledge', I was the one who had to maintain legacy applications at my previous job. All of those applications were in use at various banks. On first work day in 2011 all hell broke loose - no date input control would accept the date anymore. I quickly discovered that the max year on date inputs was set to 2010. Later, I was told that nobody expected these applications would still be used in 2010 so they entered it as a distant future number. The funny part was that one bank was still running apps written in VB3 and I had to go back to basics. Didn't even know how to edit basic controls in that interface :D
Good times :)1 -
I got into programming because I couldn't solve a maths problem I'd been set, so my dad found an emulator for an old language he used to use a bit and managed to brute force it.
From there I went and learnt my first programming language, an unconventional choice of BBC basic 😛 -
Hello,
I just quit my job at a big market research company. It was disturbing how much processes there depended on excel and obscure visual basic scripts.
They load data from a database, do typical database tasks with excel and upload it back into the database.
PhDs run complex statical computations through an excel interface that passes the request to R.
Instead of an hour Python they execute stupid tasks with excel by hand. Day after day, month after month.
WHY? My colleagues were not dumb but instead of learning SQL and some python they build insane excel tables.
Maybe it's time pressure. But this excel insanity costs much more time in the end.5 -
I don't want to use Visual Basic!
I'm a 17 year old boy and I have a couple of years of experience with coding. At school we had to choose between a couple of things to do 2 hours every week. One of them was about computers and programming. Sounds fun, right?
The teacher is letting us code in Visual Basic in MS Excel. I tried to explain him that I know how to code, but he still wants me to listen to him.
He doesn't even use any indentation! I can't look at it and I don't want to use VB it sucks just let me use js or anything else but not VB! Why won't you just accept I'm 10 times better than you! Just let me do my thing!
Now he thinks he can challenge me with a password strength checker. I want to use js, some regex to make it very short and efficient and a nicely styled web page. But now I'll be forced to use a horrible programming language (VB) I never used before!24 -
Our world is dying and we, as the ones that rule the internet at the most basic level, should do something about it5
-
So decided to take a step back and build an interpreter for a custom version of BASIC for the cosmos kernel and a way to learn python but can we just take a moment to admire how BASIC is designed...
It is such a well designed, open and malleable language to design for specific needs...
Except visual basic, fuck visual basic, fuck it with a rake...4 -
I was just in the attic to look for some old school stuff for my sister. But then I found an old carton with old stuff from me. In there I found my very first programming book. "AntMe!" to learn Visual Basic with ants 😄5
-
I can't believe that a modern language like JS is still lacking basic utilities like removing something from an array by value6
-
I remember the first device I programmed on it... Ordisavant.
It used to be a classic question-answer machine (with multiplayer !), And ... Basic language!
I was so proud to make music with beeps, or a calculating machine, just for fun.
It was hard to read a program line by line, but it was so cool for me.
I was nearly 6 when my parents bought me this really great toy.
I wonder if anybody know it?2 -
Just A BASIC book with some examples and a old Radio Shack Tandy computer (with the TV as monitor). A zillion years ago.
-
You enter in the University class of programming and the teacher talk about what is a Variable and how to use It :I
So Interesting for me.....4 -
I'm going through my Udemy courses for the hell of it and see if I might even learn some things, started a course I knew would start of way too basic but Jesus Christ, 7 lectures for doing basic player movement and animation... Strap in boys, it's going to be a long ride
-
What could possibly be wrong with me if I had to look at almost every single answer of the Basic Algorithm Scripting exercises on FreeCodeCamp? I spend days tying to solve some of them and just couldn’t. Had to look at the answers. Then I try few days after and maybe remember half of the answer. How can I change this?3
-
Testing a script embed plugin I am building on various random websites, and came across this.
Like, bruh; have you ever heard of a javascript map? Basic functional programming? Or even a switch statement?
It's the same statement, over and over again, but with different parameters. Even old javascript had enough tools to do this with at least a basic stench of "efficiency"11 -
Few days ago a PPC campaign manager complained to me that the banners she got from her client were in an "unusual file format". Asked me to check it out because she couldn't open the file and she really needed the banners.
I kid you not, it had a .rar extension...
She, at the age of 30, had no idea what WinRar was...4 -
Need a dirt cheap tablet for basic bedtime needs, reading, surfing, mailing, movies, music, devrant for less than £100.
Amazon just released the fire HD8. Perfect. Ordered. -
My first dev project was written on Visual Basic 5. I think I wrote a keygen to generate serial numbers based on hardware ID.
-
Every time I'm asked to fix an application written in Visual Basic I think a part of me dies inside5
-
This is the reason I will never be with IT: I recently got hired as an IT assistant at my college. I was in charge of solving issues in an entire building actually. I was so excited to be able to go around to resolve and troubleshoot problems with people's computers. The responsibility and pay were good, but the fact that people had next to no problems, but I had to be in the same room with students during virtual tests and lessons just in case. I had to stand in the same spot for 2.5 hours watching people take a test. Whenever they DID have a problem, they just had to refresh the page! People gotta learn that I don't have to be in the room in order for people to decide basic troubleshooting. Extremely boring and tiring. No challenges and barely any problem-solving. This is why I'm on Devrant and not Fixrant.3
-
When I was in high school (~2005) I made a guess the number game in basic BASIC.
Thats when I knew I wanted to do that junk full time. -
Universal Basic Income, building a granular crowfunding platform.
Being built and am turning it into a startup2 -
Be patient seem to be basic, but after many hors of unsucessfull code i'ts a challenge.
So take a break if your need one. -
Ended up fixing a Visual Basic backend of an internal website.Without a version management in 2024.
I feel I work in the 2000s4 -
Coolest project I'll continually be working on.
http://jimquessenberry.com
Selling my Dad's famous BBQ sauces and rubs has been my hobby and passion for years. I'm lucky that my Dad was a computer enthusiast in the 1980's and also had a knack for marketing himself. All the while also being a somewhat famous character in the pioneering sport of competition BBQ cooking.
My brother and I shared the following machines growing up:
Commodore 64 w/ 2 Disk Drives, VicModem, & Tape Drive
Tandy 1000 Original Radio Shack IBM PC Clone
IBM 5150 w/ 20mb Hard Drive Expansion (Still Have This In Near Mint Condition)
Tandy 1000 RSX 386 with Win 3.11 For Networks
A Homebuilt Pentium 90 MHz Tower with Soundblaster and 16bit onboard video.
All that time on those machines learning various flavors of BASIC and crude graphic design got me where I am today.
That and learning how to BBQ... ;)8 -
What a great day at AWS Summit!
Now I can build all the guestbooks / pet-stores I ever wanted!
#basic.2 -
Why the fuck does microsoft feel the need to be different?
One small example is VBA (Visual Basic for Applications).
When calling a function iw does not allow you to use brackets.
Example: Funct (arg1, arg2) is not valid but Funct arg1, arg2 is.
If you want the damed brackets you'll have to use call.
Call Funct ( arg1, arg2)
because after the first function is called, functions within that as arguments need to have the brackets...9 -
I have to follow a basic introduction to python for my study and the teacher is one the developers that worked on gtk
-
My school is awesome, their network infrastructure is so secure (not),
that you can easily control other people's desktops with Windows' basic tools. -
I wish Outlook had autocomplete...
Isn't it time even Word and other apps support basic autocomplete..?11 -
I start on paper by describing what a basic version of the code should be able to do. Then I write down some ideas of improvements to the code, more functionalities, etc. This allows me to write the basic code already thinking of what I want to add next.
Not that it matters anyway, 95% of my codes never lead to a working product 😅 -
I just saw this:
"can someone convert a PHP code to VB code ? i want to make a small application , *.exe file which can do stuff"1 -
Curiosity as a kid with Visual Basic. Then university courses with Java and learning C++ on the side. And started the self learning journey from there. I never touch those 3 first languages anymore.3
-
Why is it so frustrating experience to add simple websocket client to Unity? It should have been so core basic library.1
-
Surely I can't be the only one curious enough to start this discussion; so what's everyone's backgrounds?
I'm sure we're all under the assumption that we're all developers of some sort and like to rant about what we do-- hence the app name-- but what does everyone do? Such as what you make, what you've made, your skill set and a little info about yourself
Myself, I'm a 21 year old male from the North West of England. My name isn't actually Markshall, it's Mark, but I'm a huge fan of Eminem so it's a play on my name on his (Marshall).
I'm primarily focused on web development but I started programming at the age of 11ish in Visual Basic 6 and found the web development was my chosen area of expertise. I know the obvious HTML and CSS, but also know PHP and JavaScript and have lots of experience with MySQL databases and rather extensive knowledge of the jQuery library -- yes, I do know it's a library and not a separate language before people get pissy!
I'm not yet employed by a web development company, I work in retail whilst I freelance my web development skills
I have an online portfolio at http://mark-eriksson.com (needs a little updating-- not all my projects are on there and you're unable to view any information about them)
I write code in Brackets (http://brackets.io) on my 21.5" iMac. I use Google Chrome and have iPhone 6s Plus 64GB. PS4 player. Vodka and Jack Daniels enthusiast.
So, what about you?
Side note: devRant needs an edit feature :-(12 -
Proof i typically underestimate my own self: I just remembered building a browser In Visual Basic in middle school, in a day at my friends house…. How the hell did I do that?? I recognize some of the syntax, but i don’t remember Visual Basic… but THATS how I know it looks like C… AND I DONT KNOW C! so wtf!21
-
Have to work on Windows for a DLL integration project, how does Microsoft managed to build something so disgusting to human eyes for all these years?
Dark mode in Visual Studio Installer is actually pitch black, hello? Common sense? Basic human-computer interfacing? Basic color scheming?
All these installations, frameworks, version management...
Why am I dipping myself into this bloatware shitshow?3 -
What fo you think, is it still a good idea to learn fortran in order to learn programming concepts?
I don't know what else would be nice...
I only had experience with shell scripting, which is rather functional.
Other languages i considered were dlang, c#, go and rust.
I have no explict application, which bothers me a lot.3 -
Things like this are what makes my day a little more bearable. A little more bearable because I laugh myself to tears.2
-
Lately I had a motivation crisis, that made me almost quit (passing from programming in C# to Visual (*fucking*) Basic).
But I can't quite quit because of personal reasons, so during a break I went out and eat something sweet like an ice-cream (coffee flavour) to explicitly alter my dry low mood(like alcohol does for many... But strangely I'm immune) and started thinking from scratch, thought that I should stop complaining like a little bitch and instead focus on finishing the project at hand as soon as possible, so I can move on, hopefully, to better projects(most of the other projects in the company are in C#).
So apparently explicitly messing with my brain chemicals and resetting the though on the issue worked for me -
When you decide to learn JavaScript and you make a object and realize it is a method, nothing like Java objects😑9
-
Hand sanitizers, wet wipes, basic hygiene standards. Nothing much yet.
Trains here are eerily silent though.2 -
When you hear that the "advanced hollistic security" product the client bought is a basic firewall...1
-
So I spent a good 12 hours today trying to figure out why my 4 line vbs program wouldn't run. Turns out Visual Basic and Visual Basic Script are completely different things! Who would have known!1
-
So currently working on a basic game engine written in Vala using SDL, fuck me it is such a rabbit hole!
Have a basic renderer and and was using the default SDL frame rate manager and decided to write my own so I could knock out using the SDL gfx package.
So now I have to create a window manager and renderer manager just to handle a basic framerate manager that isn't completely negated by VSYNC.... -
Basic graphics pipeline through chatGPT, took a few layers but it should be able to draw out most well described objects.... I hope5
-
I hate it when you put a project into testing and the feedback tells you you've missed a reallybasic but important feature...
-
I'm into Commodores lately. Don't judge, grandmas deserve love too!
ps I'm making my friend join devrant11 -
Can anyone tell me the difference between CS and software engineering?
I only know the very basic background on it ( I want details)9 -
Intern: *writes text-color: 'white'* Hey, I'm trying to apply this color, but it doesn't work.
Me: Remove the "text-" from it.
Intern: *confused*
*Removes "-" and makes it camel case.*
Me: No, it should just be "color".
Intern: Okay, that works. Thanks.
(-_-)
Ohai,
It's been 172 days (since my last post)7 -
What Frameworks should I learn in 2018?
PS: I currently do not use any (cos I have been learning basic syntaxes)14 -
For my final project of first year at middle school (that's before university), I had to make a experiment and measured it using a circuit connected to the computer. At the end I couldn't finish but I made a program for explain what the circuit (expected) did using one of the Microsoft Office's assistant (Merlin the wizard), Merlin moved around the screen talking about the experiment and what the circuit measured it over and over, almost forgotten to tell I had to show it in a science festival to anybody who came at school, none asked about the experiment or the circuit, all the questions was about how I made the program, how the program could speech in spanish and explain the experiment.
At the begining of that day I was so nervous, but at the end I could say fuck yeah.
And the program was a macro in Basic with text to speech of a Loquendo like voice, I only record the movements and put the text.
That's one of the reason of I like programming, it save it my ass.
That was more than ten years ago, I didn't have a computer only at the school, internet not was so common.4 -
Reasons my mother-in-law phones us:
- the laptop is not connected to wifi
- what is the password of our MS Office subscription?
- the website says I can only play videos without adblocker
- I want to keep track of a Youtube video link
:facepalm:5 -
What's your top 3 progressing languages/favorite editor?
(I choose Python, C++, and Applesoft Basic. & Notepad++ for the editor.)8 -
Basic knowledge of iOS- en Android development necessary to develop with React Native, Ionic or NativeScript? If so or if not, why?3
-
When I was 13 and made a Visual Basic application to convert the weight in other unity. I used Microsoft Visual Basic 2008 Express Edition 😀
-
An old visual basic 6.0 handbook someone gave me many years ago.
I really liked working on VB6.0 and then moving to .NET 2008.
Nowadays, I love and do web development. -
Yes. It effect when working in foreign country. The Government ask for basic Graduation for visa purpose.
-
I learnt to programming in BBC Basic, only about 12 years ago... it just happened to be the language I first came across!
-
I am planning on applying for a job doing crime lab IT support. I have acquired the necessary skills and added them to my resume.
Skills:
Visual Basic
Networking
UX/GUI
Interests:
Hacking
Tracking IP addresses1 -
!rant
Just started with Unreal Engine 4, very basic stuff.
Any tips / tricks / suggestions / DOs and DONTs?2 -
My dad taught me basic algebra when I was a kid (I think 7-8). Then he taught me BASIC and within a month I decided I was going to be a game programmer when I grew up. Not quite where I ended up, but that's how the journey started.
-
Anyone else spend way too much of their day sending old email attachments to people who don't know how to use the basic search functions in their email client? Seriously if my coworkers just learn how to search for emails with attachments they'd be so much more productive. And if they filtered by name too, hoo boy.3
-
a friend greeting our group of friends: advanced happy new year guys!
me: basic happy new year guys! 😅
friend: why?
me: ..1 -
That moment when your boss doesn't allow you to use SQL but complains about how slow are your macros on VB Excel
-
Is there any git gui that allows to revert just one file? Gitkraken is amazing but really sucks outside of basic git operations
-
Today's tutorial
Bombox for your phone for really cheap.
Self explanatory, Try it and see how easy it is to get a clean sound from your cellphone.6 -
Not slapping someone when they call an object a thing or worse a thingy, it's like working with basic Starbucks bitches
-
Am I reasonable rejecting a job which is about building an accounts interface system which will interface with different services build with different technologies and manage the accounts, all in Visual Basic?
On my side I don't feel pleasant to put effort and will on such a language on my CV.8 -
Took a Visual Basic class in high school. Ended up being the teacher aide two years later while she was away recovering from surgery.
-
I took a programming course while in school. They teach Logo and Basic.
Then, when I was able to buy a computer, I programmed a little bit with GW-BASIC. But when I really learnt how to program was when I get my hands on Turbo Basic and, a few years after that, Turbo Pascal3 -
hello...i am totally new to coding..i just learn c language basic level....what language should i learn next6
-
Does anyone like being the "tech support" at work. Like helping people when they cant send a basic email?7
-
creating adventure games with a bunch of if-statements as recommended practices for python beginners remind me of my first steps with gwbasic2
-
Like a lot of school kids in the UK, I learned BASIC on a BBC Model B and later BASIC/COMAL on my Archimedes A3000.
It taught almost nothing relevant to real programming. A terrible and inefficient way to learn! But there were no better resources then. No Internet access. -
Learning about the basic syntax, then making a simple project with help from stack overflow and the documentation.
-
Is it worth buying a Macbook air 2017 now for Android development, web development and other basic stuffs?9
-
Why does it always take me 50 years to design the front end, takes not even half that to get the backend working......13
-
Learned some BASIC using C64 and Amstrad CPC back in the days, mostly from reading computer magazines and books. Then fast forward a gazillion years, and replace Basic with HTML, Lingo, Actionscript and eventually PHP, JS, CSS. Thank you, Google.
-
Part 2 of the .zip file saga. Staff member this morning emails me to say they can't get past the following step of my instructions.
*Screenshot showing them downloading the .zip file and not saving it anywhere, instead trying to open it*
... really starting to think that everyone in this place needs training in basic ICT tasks again. I was taught how to open and extract files from .zip when I was aged 11 in school.1 -
Hello y'all. I, for some reason was just chilling when the thought popped up in my mind, "What if you were to develop a game in BASIC?" The thought has stuck in my head and I've already gotten an emulator so that I could do so. I thought it'd be an interesting challenge to take on, to try and make a full blown game in an inefficient language. I currently have yet to form an idea for the game, and was wondering if y'all could give me some ideas. Anything would be appreciated, thank y'all.
-
I started to code when I got a graphic calculator for high-school. I learned a few command and put them back-to-back, and soon enough I was a pro of ti-basic
-
Check this out. Sophia the humanoid robot capable of basic human expressions.
https://youtube.com/watch/... -
Client doesn't read scope doc. Sends me email asking basic questions that were mentioned as bullet points in the document and subsequent PSA4
-
I spent all day working on 3 great options for a client. They look amazing and got a great review from my partner, but the client does not like any of them. They want something basic :(
Why be boring when you can have an amazing. -
How can i put basic genetic algorithm to use? Just started journey with ML and i don't have any practical ideas :)
-
I use Atom. It's a basic coding program similar to Notepad++ and Sublime Text but more minimalistic.
Link to it: http://atom.io -
Does anyone know a public API to test basic authentication other than github that return a token when the submission is successful1
-
I finally wrote my exemption test for computer literacy(covers ms office products and basic computing theory ).never have to go to anything concerning that course ever again and got 93%+ for all the tests required to get exempted
-
A "REST API" that was using nonsecured HTTP as protokoll and send the users pwd in the basic auth header
-
Does anybody know a good free software (open source) basic programming language written in python? Preferebly on github😉3
-
Had my first "it's working but I don't know why" moment. Freshly out of the basic courses in university I stumbled into my first project, side quest: got an xml file written with XStream which needed to be re-read by JAXB. Never worked with any kind of XML before and now after a lot of swearing at the computer I did it. It's working, I'm getting my array list with Elements out of the goddamn XML yay!
-
Actually finishing side projects!
Maybe make a new demoprod?
Learn more C.
Brush up on TI-BASIC, maybe expand to Commodore BASIC.
Learn more Z80ASM. -
!rant
Any ideas for interesting side devops/data engineering projects (like creating data pipelines)? Got (really) basic knowledge of statistics and machine learning. -
I once made a minimal basic compiler in JavaScript. Inspired by shiffman's work to make a logo compiler in js .
https://babanomania.github.io/JS-BA... -
first of all sorry for my english, its not my first language
hello, i am an aspiring programmer and im honestly just a really big newbie, im learning vb dot net and ran into an issue that i had. So basically i was using the WinActivate function from autoit with FindWindow(using the title of the window) to supply WinActivate the hwnd. Heres my issue: When the window is NOT minimized so selected or behind other windows the WinActivate function works completely fine, but when the window is minimized it doesnt work, i have read on the documentation that neither function cares wether the window is minimized or not so i came to the conclusion that it might have a different title when minimized? The window is the league of legends client by the way. What can i do to solve/debug this issue, perhaps spy++ could help me? how would i use this, i could upload the visual studio project if someone wants to help me out in that way. WinActivate((FindWindow(Nothing, "League of Legends"))) this is what it looks like.12 -
Study algorithms, redo my personal website, start a few side projects, learn some basic DevOps . . .
And so begins the job search, sigh -
Shopping around for a used laptop for development, Basic specs core i 5+, with good battery life,15inch. Recommendations please.5
-
writing a basic 2 javascript translator now in Java. Great fun and not to much brainpower needed...4
-
How do I upload my tailwind css website I made on my cpanel host ? Explain it in basic stuff so I can grasp?2
-
Hi I am b.tech IVth year pursuing student.
I need help in technical preparation as I have basic knowledge of programming language, and as we know basic knowledge is not enough. So I need guide for good preparation. -
I like to design websites from scratch , I know basic languages. (average coder) where do I start? Comment below.9