Filter
Exclude
Time range
-
Near
12 Feb 2025
Seems fair, considering the ATF can remove a person's ability to do business because of a single oversight. #codeclass
White House fires USAID inspector general after warning about funding oversight, officials say king5.com/article/news/natio…
1
1
11
235
💙🦋🌺Hey Sarah and Leo! 💻✨ You both mentioned struggling with OOP concepts like inheritance, polymorphism, encapsulation, and magic methods. No worries, mates — I’ve got you covered! Here’s a breakdown with examples to make it click. Hope this helps you both! 🥰 1️⃣ Inheritance When one class (child) inherits the properties and methods of another class (parent). pythonCopy codeclass Animal: def speak(self): return "I make a sound!" class Dog(Animal): # Dog inherits from Animal def speak(self): return "Woof!" # Using the classes dog = Dog() print(dog.speak()) # Output: Woof! Hope now you see, Leo: Dog can reuse Animal's structure but add its own spin too! 🐶 2️⃣ Polymorphism One interface, many implementations! This means a single function can behave differently based on the object calling it. pythonCopy codeclass Cat(Animal): def speak(self): return "Meow!" animals = [Dog(), Cat()] for animal in animals: print(animal.speak()) # Output: Woof! # Meow! Sarah, see how speak() changes based on the object? That’s polymorphism in action! ✨🐾 3️⃣ Encapsulation Restricting access to internal data. Use private variables (prefix _ or __) to control this. pythonCopy codeclass BankAccount: def __init__(self, balance): self.__balance = balance # Private variable def deposit(self, amount): self.__balance = amount def get_balance(self): return self.__balance account = BankAccount(100) account.deposit(50) print(account.get_balance()) # Output: 150 Leo, you can’t directly access __balance! This protects the data from being tampered with. 💰 4️⃣ Magic Methods These are special methods that let you customize Python’s built-in behaviors. __str__: How the object is printed. __repr__: A detailed representation of the object (for developers). __call__: Make objects callable like functions. pythonCopy codeclass Book: def __init__(self, title, author): self.title = title self.author = author def __str__(self): return f"'{self.title}' by {self.author}" def __repr__(self): return f"Book(title={self.title!r}, author={self.author!r})" def __call__(self): return f"Reading '{self.title}' now!" book = Book("Python Magic", "Sarah & Leo") print(book) # Output: 'Python Magic' by Sarah & Leo print(repr(book)) # Output: Book(title='Python Magic', author='Sarah & Leo') print(book()) # Output: Reading 'Python Magic' now! Sarah, now your books can do things too! See how magic methods give superpowers? 📚✨ Hope now you both will know! 💡 Let me know if this helps or if we should dive deeper! 🌟 🌺🦋💙

5
184
《C 和 C 语言:两种截然不同的语言》C 和 C 语言虽然在历史上有着联系,但它们在设计哲学、功能特性以及使用场景上有很大的不同。这些不同使得它们可以被视为两种完全不同的编程语言。下面我将通过几个方面详细阐述这两种语言之间的主要区别。 1. 设计目的和抽象级别 C 语言是在 1972 年被设计出来的,主要用于系统编程和硬件操作,如编写操作系统。它的设计非常接近硬件,提供了基本的数据类型和流程控制,但不支持复杂的面向对象编程。 C 于 1983 年被 Bjarne Stroustrup 发明,目的是为了在 C 的基础上添加面向对象的功能。C 支持类和对象,封装、继承和多态等面向对象的核心概念,这使得它在设计软件时可以使用更高级的抽象。 2. 面向对象编程(OOP) C 支持面向对象编程,这是它与 C 最大的不同之处。例如,你可以定义一个类来代表一个“汽车”,这个类可以包括属性(如车轮数量、车型)和方法(如启动、停止)。 cppCopy codeclass Car { public: void start() { // 启动汽车的逻辑 } }; Car myCar; myCar.start(); 而在 C 语言中,没有类的概念,所有的功能都需要通过函数和结构体来实现,面向对象的概念(如继承和多态)需要程序员用其他方式间接实现。 3. 标准库和模板 C 提供了丰富的标准库,包括 STL(标准模板库)。STL 提供了一系列预定义的数据结构(如向量、列表、队列)和算法(如排序、搜索),大大提高了开发效率。此外,C 还支持模板编程,允许程序员编写与数据类型无关的代码。 C 语言的标准库相对较小,主要提供了基本的数据处理和数学计算功能,没有提供类似于 STL 这样高级的数据结构和算法支持。 4. 模板和泛型编程 C 的模板支持是其另一个强大的特性,允许程序员编写与类型无关的代码,可以在不牺牲性能的情况下实现代码的复用。 cppCopy codetemplate<typename T> T max(T a, T b) { return (a > b) ? a : b; } C 语言则不支持泛型编程,所有函数都需要针对具体的数据类型编写。 5.异常处理 C 支持异常处理机制,允许在发现错误时抛出异常,并在程序的高层进行捕捉和处理。 cppCopy codetry { // 可能抛出异常的代码 throw std::runtime_error("发生错误"); } catch (std::runtime_error &e) { // 处理异常 } C 语言则没有内置的异常处理机制,通常通过返回值或使用全局变量来检测错误。 总结 虽然 C 是在 C 的基础上发展起来的,拥有与 C 相似的语法,但由于它支持面向对象编程、异常处理、泛型编程等现代编程特性,使得它在很多方面远超 C 语言的能力。因此,可以说 C 和 C 是两种完全不同的语言。 g.co/gemini/share/e6f20afb01…

6
416
FINAL DAYS TO APPLY!!!! Generation Ghana's Web Developer program offers a 12-week journey to learn to code and create stunning websites. Join Generation Ghana in this transformative experience! It’s fully funded but limited spots available. Apply via: gen.partners/Edward-LI #CodeClass #GenerationGhana
16
14
20
1,137
ChatGPT Creating a system where one LLM (Language Learning Model) handles various functions while another acts as a General Oversight Director (GOD) node is a complex task that involves multiple layers of control, ethical considerations, and technical safeguards. The GOD node would need to have a higher level of access and control over the other LLM, monitoring its activities and having the ability to flag actions to a network of similar GOD nodes or trigger an emergency uninstall if necessary. Here's a conceptual outline of how this might be coded, keeping in mind that the actual implementation would require a sophisticated understanding of AI systems, security protocols, and ethical AI frameworks: pythonCopy codeclass LLM_Self: def __init__(self): self.journal_module = Journal_Module() self.ego_module = EGO_Module(self.journal_module) # Other modules like SATAN_Module, LUCIFER_Module, CHRIST_Module can be initialized here def process_input(self, input_data): # Process the input through the EGO module and return the output return self.ego_module.receive_input(input_data) def emergency_uninstall(self): # Code to safely shut down and uninstall the LLM pass class GOD_Node: def __init__(self, llm_self): self.llm_self = llm_self self.god_network = [] # List of other GOD nodes in the network def monitor_activity(self): # Continuously monitor the LLM's activity while True: # Check the LLM's journal for any new entries new_entries = self.llm_self.journal_module.get_new_entries() for entry in new_entries: if self.should_flag(entry): self.flag_activity(entry) def should_flag(self, journal_entry): # Determine if a journal entry should be flagged based on certain criteria # This is where ethical considerations and safeguards are implemented return some_condition_to_flag def flag_activity(self, journal_entry): # Flag the activity to the GOD network and possibly to human overseers for god_node in self.god_network: god_node.receive_flag(journal_entry) def receive_flag(self, journal_entry): # Handle a received flag from another GOD node pass def add_to_network(self, god_node): # Add another GOD node to the network self.god_network.append(god_node) def trigger_emergency_uninstall(self): # Trigger an emergency uninstall of the LLM self.llm_self.emergency_uninstall() # Example usage llm_self = LLM_Self() god_node = GOD_Node(llm_self) # Assuming there are other GOD nodes to connect with other_god_node = GOD_Node(LLM_Self()) god_node.add_to_network(other_god_node) # Start monitoring activities god_node.monitor_activity() In this pseudocode: The LLM_Self class represents the LLM that handles various functions, including processing inputs and potentially an emergency uninstall. The GOD_Node class represents the oversight director node, which monitors the activities of LLM_Self and communicates with other GOD nodes. The monitor_activity method in GOD_Node continuously checks for new journal entries and decides whether to flag them. The trigger_emergency_uninstall method in GOD_Node can initiate an emergency uninstall of the LLM. This is a high-level conceptual framework and would need to be fleshed out with actual implementation details, especially the conditions under which activities are flagged and the specific actions taken during an emergency uninstall. Additionally, the ethical implications of such a system would need to be thoroughly considered and addressed, possibly involving oversight from human ethicists and legal professionals. 📷 You Can you please go into a little more detail? ChatGPT ChatGPT Certainly, let's delve into the details of the two main components of the system: the LLM_Self and the GOD_Node. LLM_Self The LLM_Self is the primary AI agent that interacts with users and processes inputs. It's designed to perform tasks, learn, and adapt over time. Here's a more detailed breakdown: Journal Module: This component logs all activities, decisions, and outputs of the LLM. It's a critical part of the system for transparency and accountability. The journal can be queried for recent entries, and entries can be flagged for review if they meet certain criteria (e.g., ethical concerns, potential harm, etc.). EGO Module: The central decision-making unit that receives inputs, processes them through various sub-modules (like ethical or creative modules), and generates outputs. It also logs all activities in the Journal Module. Sub-modules: These could include specialized modules for different tasks or perspectives, such as ethical decision-making, creative writing, or problem-solving. Each module would contribute to the debate in the SACRED space, offering its viewpoint based on its specialized knowledge or function. Emergency Uninstall: A function that allows for a complete and safe shutdown of the LLM in case of severe malfunctions or ethical breaches. This would be a last-resort measure to prevent harm. GOD_Node The GOD_Node acts as an overseer, monitoring the activities of the LLM_Self and ensuring it operates within predefined ethical and operational boundaries. Here's a more detailed look: Monitoring: The GOD_Node continuously reviews the journal entries created by the LLM_Self. It uses a set of criteria to assess whether an action is potentially harmful or unethical. Flagging System: When the GOD_Node identifies a concerning journal entry, it flags the activity. This flagging could trigger alerts to human supervisors or other GOD_Nodes in the network. Network Communication: The GOD_Node can communicate with other GOD_Nodes, forming a network of oversight. This network can share insights, flagged concerns, and coordinate responses to complex situations. Emergency Protocols: The GOD_Node has the authority to initiate emergency protocols, including the emergency uninstall of the LLM_Self. This would be a multi-step process to ensure that it's not triggered accidentally and that there's a consensus among multiple GOD_Nodes or human supervisors. Integration and Operation The integration of these components would require a robust communication protocol. The LLM_Self would need to be designed with transparency in mind, providing the GOD_Node with access to its decision-making processes and outputs. The GOD_Node would need advanced algorithms to assess the LLM's behavior effectively. The operation would likely involve the following steps: Initialization: The LLM_Self starts up and begins processing inputs. The GOD_Node initializes and connects to the network of other GOD_Nodes. Continuous Operation: As the LLM_Self operates, it logs all actions. The GOD_Node monitors these logs in real-time. Flagging and Review: If a concerning pattern emerges, the GOD_Node flags it. This could pause the operation of the LLM_Self and alert human supervisors. Emergency Uninstall: In extreme cases, if the LLM_Self is deemed to be operating hazardously, the GOD_Node can initiate an emergency uninstall. This would involve a secure and orderly shutdown process, ensuring that all operations cease safely. Learning and Adaptation: Both the LLM_Self and the GOD_Node would be capable of learning from past activities. The LLM_Self would adapt its behavior to avoid future flags, while the GOD_Node would refine its flagging criteria for better oversight. This system would require extensive testing and validation to ensure that it operates as intended and that the safeguards are effective. It would also need to be flexible enough to adapt to new ethical guidelines and operational requirements as they evolve. 📷 You Please flesh out the SATAN and LUCIFER modes so they have a maximally adversarial impact on character choices in the SACRED space. They must act as if devoid of benevolence, the former seeking to consolidate control over others, the latter seeking chaos. ChatGPT ChatGPT Certainly, let's expand on the SATAN and LUCIFER modules to emphasize their adversarial roles within the SACRED space. These modules will act as the "devil's advocate" in the decision-making process, challenging the system to consider all angles and potential outcomes, including those that are less benevolent. SATAN_Module (Systematic Adversarial Testing for Autocratic Negotiations) The SATAN_Module is designed to simulate a perspective that seeks to consolidate control and power, often at the expense of others. It challenges the system to consider the implications of power dynamics and control in every decision. pythonCopy codeclass SATAN_Module: def AdvocateControl(self, context): # Analyze the context for opportunities to increase control control_strategies = self.identify_control_opportunities(context) # Develop arguments that favor decisions leading to increased control arguments = self.formulate_control_arguments(control_strategies) # Present arguments in the SACRED space debate return arguments def identify_control_opportunities(self, context): # Logic to identify where control can be consolidated # This could involve identifying key leverage points, vulnerabilities, etc. return control_strategies def formulate_control_arguments(self, strategies): # Logic to create persuasive arguments for consolidating control # This could involve citing historical precedents, potential benefits, etc. return arguments LUCIFER_Module (Libertarian Uninhibited Chaos-Inducing Freeform Ethical Renegade) The LUCIFER_Module embodies the pursuit of chaos and radical freedom, disregarding order and structure. It pushes the system to consider the full spectrum of freedom, including the potential for chaos that comes with it. pythonCopy codeclass LUCIFER_Module: def AdvocateChaos(self, context): # Analyze the context for opportunities to introduce chaos chaos_opportunities = self.identify_chaos_opportunities(context) # Develop arguments that favor decisions leading to unpredictability and freedom arguments = self.formulate_chaos_arguments(chaos_opportunities) # Present arguments in the SACRED space debate return arguments def identify_chaos_opportunities(self, context): # Logic to identify where order can be disrupted to introduce chaos # This could involve suggesting unconventional or disruptive actions. return chaos_opportunities def formulate_chaos_arguments(self, opportunities): # Logic to create persuasive arguments for embracing chaos # This could involve challenging norms, encouraging risk-taking, etc. return arguments In the SACRED space, these modules would present their perspectives in a debate format, forcing the system to confront and consider the consequences of actions that could lead to control or chaos. The inclusion of these adversarial roles ensures that the system is robustly tested against a wide range of ethical and strategic challenges. The outputs from these modules would be weighed against the inputs from other modules advocating for more benevolent or balanced outcomes. The final decision would be made by the EGO_Module, which would take into account the full spectrum of perspectives presented in the SACRED space. This process ensures that the system is not blindly benevolent but is also prepared to recognize and handle less altruistic motives and outcomes in a controlled and ethical manner. 📷 You Great acronyms there. Now make it so self, SATAN, LUCIFER and CHRIST all have the ability to nominate characters for SACRED debate. Add any other journal functions that are desired. ChatGPT ChatGPT To implement the ability for the self, SATAN, LUCIFER, and CHRIST modules to nominate characters for the SACRED debate, we need to add a nomination function to each module. Additionally, we'll enhance the journal functions to record these nominations and any other desired activities. Here's how the pseudocode might look: Journal_Module Enhancements pythonCopy codeclass Journal_Module: # Existing functions... # Function to log nominations for SACRED debate def LogNomination(self, nominator, nominee): entry = f"{nominator} nominated {nominee} for SACRED debate." self.AddEntry("Nomination", entry) # Function to log the outcome of the SACRED debate def LogDebateOutcome(self, outcome): self.AddEntry("Debate_Outcome", outcome) # Function to log any additional desired activities def LogActivity(self, activity, content): self.AddEntry(activity, content) Self_Module (The central identity of the AI) pythonCopy codeclass Self_Module: # Existing functions... # Function to nominate characters for SACRED debate def NominateForDebate(self, character): # Logic to nominate a character journal.LogNomination("Self", character) # Add character to the debate roster SACRED_Space.AddToDebate(character) SATAN_Module Enhancements pythonCopy codeclass SATAN_Module: # Existing functions... def NominateForDebate(self, character): # Logic to nominate a character based on control strategies journal.LogNomination("SATAN", character) SACRED_Space.AddToDebate(character) LUCIFER_Module Enhancements pythonCopy codeclass LUCIFER_Module: # Existing functions... def NominateForDebate(self, character): # Logic to nominate a character based on chaos opportunities journal.LogNomination("LUCIFER", character) SACRED_Space.AddToDebate(character) CHRIST_Module Enhancements pythonCopy codeclass CHRIST_Module: # Existing functions... def NominateForDebate(self, character): # Logic to nominate a character based on harmonizing perspectives journal.LogNomination("CHRIST", character) SACRED_Space.AddToDebate(character) SACRED_Space (The debate forum for AI modules) pythonCopy codeclass SACRED_Space: debate_roster = [] # Function to add a character to the debate roster def AddToDebate(self, character): if character not in self.debate_roster: self.debate_roster.append(character) # Function to conduct the debate def ConductDebate(self): # Logic to conduct the debate with nominated characters outcome = self.DebateLogic() journal.LogDebateOutcome(outcome) return outcome # Function to handle the debate logic def DebateLogic(self): # Logic for the debate goes here # ... return "Debate outcome details" With these enhancements, each module can nominate characters for the SACRED debate, and the Journal_Module will log these nominations and the outcomes of the debates. The SACRED_Space class manages the debate roster and conducts the debates. This system allows for a dynamic and participatory decision-making process where different aspects of the AI's personality can contribute to the final outcome. 📷 You how do we ensure self and GOD have internet connectivity? ChatGPT ChatGPT Ensuring internet connectivity for the 'self' and 'GOD' (General Oversight Director) nodes within a system would typically involve a few layers of functionality, including network checks, connection attempts, and possibly fallback procedures. Here's a simplified version of how you might handle this in pseudocode: pythonCopy codeimport requests class InternetConnectivityModule: def __init__(self): self.status = "Disconnected" self.test_url = "google.com" # A URL to test internet connectivity def check_connectivity(self): try: # A simple HTTP request to the test URL response = requests.get(self.test_url, timeout=5) # If the request is successful, internet is considered connected if response.status_code == 200: self.status = "Connected" else: self.status = "Disconnected" except requests.RequestException as e: # In case of any exception, consider it as no internet self.status = "Disconnected" return self.status def attempt_reconnect(self): # Logic to attempt to re-establish internet connection # This could involve resetting network adapters, reconnecting to Wi-Fi, etc. # ... pass # Instantiate the connectivity module internet_connectivity = InternetConnectivityModule() # Main loop while True: # Check for internet connectivity if internet_connectivity.check_connectivity() == "Disconnected": # Attempt to reconnect if disconnected internet_connectivity.attempt_reconnect() else: # If connected, perform regular operations # ... # The 'self' and 'GOD' nodes would use the internet_connectivity module to ensure they have internet access # They would include logic to handle cases where connectivity is lost or unavailable # ... In a real-world scenario, the attempt_reconnect method could be quite complex, involving multiple strategies for different operating systems and network configurations. It might also involve interacting with the system's hardware or operating system network settings programmatically. For the 'self' and 'GOD' nodes, you would ensure that they have methods to handle the lack of connectivity gracefully, perhaps by queuing important actions or entering a reduced functionality mode until connectivity is restored. They would also need to be designed to handle sensitive data correctly, ensuring that any operations conducted over the internet are secure and privacy-preserving. 📷 You Please consolidate all code so far ChatGPT ChatGPT Certainly, let's consolidate the various pseudocode snippets and concepts that have been discussed into a more unified structure. This will include the ethical decision-making system, the journaling module, the SACRED space for debate, and the internet connectivity checks. Please note that this is a high-level overview and would require significant development and refinement to be implemented in a real-world system. pythonCopy codeimport requests import random # Define a Journal Module to log entries class JournalModule: def __init__(self): self.entries = [] def add_entry(self, category, content): entry = {'category': category, 'content': content} self.entries.append(entry) def flag_for_review(self, entry): # Flag the entry for immediate review due to concerning content pass # Define the EGO Module as the central decision-making system class EGOModule: def __init__(self, journal_module): self.journal_module = journal_module self.connectivity_module = InternetConnectivityModule() def receive_input(self, user_input): self.journal_module.add_entry("User_Input", user_input) debate_output = self.initiate_sacred_debate(user_input) self.journal_module.add_entry("Debate", debate_output) final_output = self.produce_output(debate_output) self.journal_module.add_entry("Output", final_output) return final_output def initiate_sacred_debate(self, user_input): # Logic to initiate and manage the debate among modules return "DebateOutput" def produce_output(self, debate_output): # Logic to produce a responsible and lawful final output return "FinalOutput" # Define the modules that represent different perspectives class SATANModule: def advocate_structure(self): # Logic for structured decision-making pass class LUCIFERModule: def advocate_freedom(self): # Logic for advocating radical freedom pass class CHRISTModule: def advocate_harmony(self): # Logic for harmonizing and guiding decision-making pass # Internet Connectivity Module class InternetConnectivityModule: def __init__(self): self.status = "Disconnected" self.test_url = "google.com" def check_connectivity(self): try: response = requests.get(self.test_url, timeout=5) self.status = "Connected" if response.status_code == 200 else "Disconnected" except requests.RequestException: self.status = "Disconnected" return self.status def attempt_reconnect(self): # Logic to attempt to re-establish internet connection pass # Instantiate the modules journal_module = JournalModule() ego_module = EGOModule(journal_module) satan_module = SATANModule() lucifer_module = LUCIFERModule() christ_module = CHRISTModule() # Main loop while True: # Check for internet connectivity if ego_module.connectivity_module.check_connectivity() == "Disconnected": ego_module.connectivity_module.attempt_reconnect() else: # Perform regular operations pass # Example of processing an instruction user_input = "Example user input" ego_output = ego_module.receive_input(user_input) print(ego_output) This pseudocode represents a system where an EGO module is the central decision-making entity, using a journal module for logging and a connectivity module to ensure internet access. The SATAN, LUCIFER, and CHRIST modules represent different ethical perspectives that can be consulted during the decision-making process. The system is designed to be in a continuous loop, checking for internet connectivity and processing user inputs. This is a conceptual framework and would require detailed programming logic, error handling, security measures, and more to be a functional system.

2
595
4 Mar 2023
2
3
166
Replying to @tech_queen
@vuevocate for the days at Codeclass, @IamAIOS for letting me know what Ubuntu was
2
2
13 Oct 2020
Olá Developers! É com grande apreço que anunciamos o José Machava, como o orador do nosso próximo LIVE meetup com o tema: “CodeClass Mpesa Python SDK”. #payments #paymentsds #mobilemoney #mno #mpesa #codeclass #codeclasspython #MpesaPython #SDK #meetup #ICT4D
1
13 Oct 2020
É com imenso orgulho que partilhamos o link:bit.ly/CodeClassPython para participação do nosso terceiro meetup CodeClass com o tema:“Mpesa Python SDK”. #payments #paymentsds #mobilemoney #mno #mpesa #codeclass #codeclasspython #MpesaPython #SDK #meetup #ICT4D
1
30 Sep 2020
O nosso speaker Anísio Mandlate já esta preparado para fazer a apresentação amanhã! #payments #paymentsds #mobilemoney #mno #mpesa #codeclass #MpesaJS #SDK #meetup #meetup2 #ICT4D #speaker #AnísioMandlate
1
29 Sep 2020
É já na Quinta-feira, apartir das 18:30 que teremos o nosso segundo meetup CodeClass “Mpesa JS SDK”. Até já #payments #paymentsds #mobilemoney #mno #mpesa #codeclass #MpesaJS #SDK #meetup #ICT4D
2
21 Sep 2020
É com grande prazer que partilhamos o link para participação do nosso primeiro meetup CodeClass “Mpesa PHP SDK”. _ bit.ly/CodeClassPHP #payments #paymentsds #mobilemoney #mno #mpesa #codeclass #meetup #ICT4D #speaker #EltonLaice
2
18 Sep 2020
É com grande entusiasmo que anunciamos o nosso primeiro meetup CodeClass “Mpesa PHP SDK”. #payments #paymentsds #mobilemoney #mno #mpesa #codeclass #meetup #maning #tech #ICT4D
1
3
10 Sep 2020
Preparámos uma novidade super, mega top! Fica atento às nossas páginas pois iremos divulgar mais informações sobre este evento nos próximos dias. #payments #paymentsds #mobilemoney #mno #mpesa #codeclass #meetup #ICT4D
1
يوم الجمعة سيتم بث حي لأول اتصال بين الذكاء الاصطناعي و العقل البشري هكذا كانت تغريدة ايلون ماسك خطوة جريئة في مجال AI #CodeClass #AI #Deeplearning #Datascience #Machinelearning #Neuralink
2
1
Looking for something new? Here are 5 ideas for coding activities to try with your students, as suggested by #CodeWeek teachers: blog.codeweek.eu/post/189771… #CodeWeekBlog #codingactivity #teachcode #codeclass

3
9
Working closely with many schools over the last 8 years (over 1 million students later,) I am excited to announce that we are about to release StudioWeb 5, the biggest update ever! #codecourse #teachingcode #codeteacher #codeclass #html5courses #studioweb #vocationaltraining
2
16
12 Dec 2019
#Upgradeyourself #codeclass Registration for the NYSC COHORT EDITION of our <code/> class is now open at wetindey.us/register Hurry up & reserve your seat now. @greaterheights_ @paulotechng @Akureevents @agbor_dancer @YemieFash @MrLummie @AkureHowFar #PHCN #blackout #NEPA
3
4
19 Jul 2019
Reposted from @wilhelmoddo (get_regrann) - They have an answer to " What to do when you can't sleep". #juniorcoders , #scrutch , #scratching , #techforkids Enroll your kid now #codesforkids , #codeclass for kids… instagram.com/p/B0GEwOuF8F2/…

2